mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 14:50:52 +01:00
26 lines
608 B
JSON
26 lines
608 B
JSON
{
|
|
"type": "object",
|
|
"description": "Terms of the contract needed to fulfill it.",
|
|
"properties": {
|
|
"deadline": {
|
|
"type": "string",
|
|
"format": "date-time",
|
|
"description": "The deadline for the contract."
|
|
},
|
|
"payment": {
|
|
"$ref": "./ContractPayment.json",
|
|
"description": "Payments for the contract."
|
|
},
|
|
"deliver": {
|
|
"type": "array",
|
|
"description": "The cargo that needs to be delivered to fulfill the contract.",
|
|
"items": {
|
|
"$ref": "./ContractDeliverGood.json"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"deadline",
|
|
"payment"
|
|
]
|
|
} |