api-docs/models/ContractTerms.json
2022-12-07 22:41:33 -08:00

27 lines
509 B
JSON

{
"type": "object",
"properties": {
"deadline": {
"type": "string",
"format": "date-time",
"description": "The deadline for the contract."
},
"payment": {
"type": "object",
"$ref": "./ContractPayment.json"
},
"procurement": {
"type": "array",
"uniqueItems": true,
"minItems": 1,
"items": {
"type": "object",
"$ref": "./ContractProcurement.json"
}
}
},
"required": [
"deadline",
"payment"
]
}