{ "type": "object", "properties": { "context": { "type": "object", "properties": { "masterContractId": { "type": "['string', 'null']", "example": "500123" }, "renewedContracts": { "type": "array", "description": "", "example": [], "items": { "type": "object", "properties": { "attributes": { "type": "object", "properties": { "type": { "type": "string", "example": "example_value" } }, "required": [ "type" ] }, "Id": { "type": "string", "example": "abc123" } }, "required": [ "attributes", "Id" ] } } }, "required": [ "masterContractId", "renewedContracts" ] } }, "required": [ "context" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ContractRenewerAPIRequest" }