Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the supplier contract |
| contractNumber | string | Contract reference number |
| supplier | object | |
| startDate | string | Contract start date |
| endDate | string | Contract end date |
| totalAmount | number | Total contract value |
| status | string | Current contract status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SupplierContract",
"title": "SupplierContract",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the supplier contract"
},
"contractNumber": {
"type": "string",
"description": "Contract reference number"
},
"supplier": {
"$ref": "#/components/schemas/SupplierShortRef"
},
"startDate": {
"type": "string",
"format": "date",
"description": "Contract start date"
},
"endDate": {
"type": "string",
"format": "date",
"description": "Contract end date"
},
"totalAmount": {
"type": "number",
"format": "double",
"description": "Total contract value"
},
"status": {
"type": "string",
"enum": [
"Draft",
"Active",
"Expired",
"Canceled"
],
"description": "Current contract status"
}
}
}