
| Property Name | Type | Description |
|---|---|---|
| PartyId | string |
A String value
where
length <=
25
Description : Buyer GLN/NAMM ID
|
| Name | string |
A String value
where
length <=
35
Description : Buyer company name
|
| Additional Properties | Type | Description |
| Any Property | any | /properties/InvoiceHeader/properties/SoldTo/additionalProperties (invoice.json) |
"SoldTo": {
"type": "object",
"additionalProperties": {
"not": {}
},
"properties": {
"PartyId": {
"type": "string",
"description": "Buyer GLN/NAMM ID",
"maxLength": 25
},
"Name": {
"type": "string",
"description": "Buyer company name",
"maxLength": 35
}
},
"required": [
"PartyId"
]
}