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

23 lines
407 B
JSON

{
"type": "object",
"properties": {
"deadline": {
"type": "string",
"format": "date-time",
"description": "The deadline for the contract."
},
"payment": {
"$ref": "./ContractPayment.json"
},
"deliver": {
"type": "array",
"items": {
"$ref": "./ContractDeliverGood.json"
}
}
},
"required": [
"deadline",
"payment"
]
}