{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BalancePlatform", "title": "BalancePlatform", "properties": { "description": { "description": "Your description of the balance platform, maximum 300 characters.", "maxLength": 300, "type": "string" }, "id": { "description": "The unique identifier of the balance platform.", "type": "string" }, "status": { "description": "The status of the balance platform.\n\nPossible values: **Active**, **Inactive**, **Closed**, **Suspended**.", "type": "string" } }, "required": [ "id" ], "type": "object" }