{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Currency", "title": "Currency", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "example": "abc123" }, "code": { "type": "string", "maxLength": 10, "example": "example_value" }, "displayName": { "type": "string", "maxLength": 100, "example": "example_value" }, "symbol": { "type": "string", "maxLength": 10, "example": "example_value" }, "amountDecimalPlaces": { "type": "string", "example": "example_value" }, "amountRoundingPrecision": { "type": "number", "format": "decimal", "example": 42.5 }, "lastModifiedDateTime": { "type": "string", "format": "date-time", "readOnly": true, "example": "2026-01-15T10:30:00Z" } } }