{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-structure/mvnx-api-product-structure.json", "description": "Product schema from AT&T API", "type": "object", "properties": { "id": { "type": "string", "description": "Unique product/subscriber identifier", "example": "sub-a1b2c3d4" }, "href": { "type": "uri", "example": "https://devex-web.att.com/product/sub-a1b2c3d4" }, "status": { "type": "string", "description": "Product status", "enum": [ "active", "suspended", "terminated" ], "example": "active" }, "productOffering": { "type": "object", "properties": { "id": { "type": "string", "example": "offer-unlimited-basic" }, "name": { "type": "string", "example": "Unlimited Basic Plan" } } } }, "name": "Product" }