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