{ "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" ] }