Properties
| Name | Type | Description |
|---|---|---|
| id | string | Supplier unique identifier |
| descriptor | string | Supplier display name |
| name | string | |
| supplierNumber | string | |
| status | string | |
| taxId | string | |
| paymentTerms | string | |
| href | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Supplier",
"title": "Supplier",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Supplier unique identifier"
},
"descriptor": {
"type": "string",
"description": "Supplier display name"
},
"name": {
"type": "string"
},
"supplierNumber": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive"
]
},
"taxId": {
"type": "string"
},
"paymentTerms": {
"type": "string"
},
"href": {
"type": "string",
"format": "uri"
}
}
}