mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
27 lines
509 B
JSON
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"
|
||
|
]
|
||
|
}
|