{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-schema/mvnx-api-topup-balance-schema.json", "title": "TopupBalance", "description": "TopupBalance schema from AT&T API", "type": "object", "properties": { "id": { "type": "string", "description": "Unique top-up transaction identifier", "example": "topup-500123" }, "href": { "type": "string", "format": "uri", "example": "https://devex-web.att.com/topupBalance/topup-500123" }, "status": { "type": "string", "description": "Transaction status", "enum": [ "completed", "failed", "inProgress" ], "example": "completed" } } }