{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CurrencyResult", "title": "CurrencyResult", "required": [ "Currencies" ], "type": "object", "properties": { "Currencies": { "type": "array", "items": { "$ref": "#/components/schemas/Currency" }, "description": "The supported currencies." } }, "additionalProperties": false, "x-schema-id": "CurrencyResult" }