
| Property Name | Type | Description |
|---|---|---|
| PartyId | string | A String value where length <= 50 |
| PartyIdType | string | PartyIdType (common.json) |
| Name | string | A String value where length <= 35 |
| Address | object | Address (common.json) |
| Additional Properties | Type | Description |
| Any Property | any | /definitions/Party/additionalProperties (common.json) |
"Party": {
"type": "object",
"additionalProperties": {
"not": {}
},
"properties": {
"PartyId": {
"type": "string",
"maxLength": 50
},
"PartyIdType": {
"type": "string",
"enum": [
"GLN",
"NAMM"
]
},
"Name": {
"type": "string",
"maxLength": 35
},
"Address": {
"$ref": "#/definitions/Address"
}
},
"required": [
"PartyId",
"PartyIdType",
"Address"
]
}