{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DefenseReasonsResponse",
"title": "DefenseReasonsResponse",
"properties": {
"defenseReasons": {
"description": "The defense reasons that can be used to defend the dispute.",
"items": {
"$ref": "#/components/schemas/DefenseReason"
},
"type": "array"
},
"disputeServiceResult": {
"description": "The result of the dispute service.",
"$ref": "#/components/schemas/DisputeServiceResult"
}
},
"required": [
"disputeServiceResult"
],
"type": "object"
}