mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 14:50:52 +01:00
25 lines
548 B
JSON
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"
|
|
]
|
|
} |