{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductOfferingTerm",
"title": "ProductOfferingTerm",
"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"
}
}
}