api-docs/models/ContractTerms.json
2023-12-05 14:00:24 -08:00

25 lines
548 B
JSON

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