{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf620-product-catalog-product-offering-term-structure.json", "name": "ProductOfferingTerm", "description": "ProductOfferingTerm schema from TM Forum API", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "type": "object", "description": "A condition under which a ProductOffering is made available to Customers. For instance, a productOffering can be offered with multiple commitment periods.", "properties": { "description": { "type": "string", "description": "Description of the productOfferingTerm" }, "duration": { "$ref": "#/components/schemas/Duration" }, "name": { "type": "string", "description": "Name of the productOfferingTerm" }, "validFor": { "$ref": "#/components/schemas/TimePeriod" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "ProductOfferingTerm": "#/components/schemas/ProductOfferingTerm" } } }