{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/CustomFees.json", "title": "CustomFees", "type": "object", "properties": { "created_timestamp": { "$ref": "#/components/schemas/Timestamp" }, "fixed_fees": { "type": "array", "items": { "$ref": "#/components/schemas/FixedFee" } }, "fractional_fees": { "type": "array", "items": { "$ref": "#/components/schemas/FractionalFee" } }, "royalty_fees": { "type": "array", "items": { "$ref": "#/components/schemas/RoyaltyFee" } } } }