Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| supplierName | string | |
| supplierCategory | object | |
| status | string | |
| paymentTerms | object | |
| currency | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Supplier",
"title": "Supplier",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"supplierName": {
"type": "string"
},
"supplierCategory": {
"$ref": "#/components/schemas/ResourceReference"
},
"status": {
"type": "string"
},
"paymentTerms": {
"$ref": "#/components/schemas/ResourceReference"
},
"currency": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}