{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SimpleAmount",
"title": "SimpleAmount",
"type": "object",
"properties": {
"currency": {
"type": "string",
"description": "A three-letter ISO 4217 code (such as USD for US site) that indicates the currency of the amount in the value field. Both the value and currency fields are always returned with the amount container. For implementation help, refer to eBay API documentation"
},
"value": {
"type": "string",
"description": "The monetary amount of the payment dispute. Both the value and currency fields are always returned with the amount container."
}
},
"description": "This type defines the monetary value of the payment dispute, and the currency used."
}