{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Budget", "title": "Budget", "type": "object", "properties": { "amount": { "type": "string", "description": "Budget amount", "example": "1000" }, "currencyCode": { "type": "string", "description": "Currency code", "example": "USD" } } }