2022-10-22 18:05:01 +02:00
|
|
|
{
|
|
|
|
"description": "",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1
|
|
|
|
},
|
|
|
|
"factionSymbol": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
"description": "The symbol of the faction that this contract is for."
|
|
|
|
},
|
|
|
|
"type": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"PROCUREMENT",
|
|
|
|
"TRANSPORT",
|
|
|
|
"SHUTTLE"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"terms": {
|
|
|
|
"$ref": "./ContractTerms.json"
|
|
|
|
},
|
|
|
|
"accepted": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
|
|
|
"description": "Whether the contract has been accepted by the agent"
|
|
|
|
},
|
|
|
|
"fulfilled": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
|
|
|
"description": "Whether the contract has been fulfilled"
|
|
|
|
},
|
|
|
|
"expiration": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time",
|
2023-05-20 01:41:50 +02:00
|
|
|
"description": "Deprecated in favor of deadlineToAccept",
|
|
|
|
"deprecated": true
|
|
|
|
},
|
|
|
|
"deadlineToAccept": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time",
|
|
|
|
"description": "The time at which the contract is no longer available to be accepted"
|
2022-10-22 18:05:01 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"id",
|
|
|
|
"factionSymbol",
|
|
|
|
"type",
|
|
|
|
"terms",
|
|
|
|
"accepted",
|
|
|
|
"fulfilled",
|
|
|
|
"expiration"
|
|
|
|
]
|
|
|
|
}
|