api-docs/models/ContractTerms.json

26 lines
608 B
JSON
Raw Normal View History

2022-10-22 18:05:01 +02:00
{
"type": "object",
2023-06-09 22:50:36 +02:00
"description": "Terms of the contract needed to fulfill it.",
2022-10-22 18:05:01 +02:00
"properties": {
"deadline": {
"type": "string",
"format": "date-time",
"description": "The deadline for the contract."
},
"payment": {
2023-06-09 22:50:36 +02:00
"$ref": "./ContractPayment.json",
"description": "Payments for the contract."
2022-10-22 18:05:01 +02:00
},
2022-10-28 06:09:27 +02:00
"deliver": {
2022-10-22 18:05:01 +02:00
"type": "array",
2023-06-09 22:50:36 +02:00
"description": "The cargo that needs to be delivered to fulfill the contract.",
2022-10-22 18:05:01 +02:00
"items": {
2022-10-28 06:09:27 +02:00
"$ref": "./ContractDeliverGood.json"
2022-10-22 18:05:01 +02:00
}
}
},
"required": [
"deadline",
"payment"
]
}