{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf620-product-catalog-product-offering-term-schema.json",
"title": "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"
}
}
}