@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
24 lines • 562 B
JSON
{
"type": "object",
"properties": {
"active": {
"type": "boolean",
"description": "Boolean flag whether currency is active"
},
"isocode": {
"type": "string",
"description": "Code of the currency in iso format"
},
"name": {
"type": "string",
"description": "Name of the currency"
},
"symbol": {
"type": "string",
"description": "Symbol of the currency"
}
},
"title": "Currency",
"description": "Representation of a Currency",
"$schema": "http://json-schema.org/schema#"
}