JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BundledProductOfferingOption",
"title": "BundledProductOfferingOption",
"allOf": [
{
"$ref": "#/components/schemas/Extensible"
},
{
"type": "object",
"description": "A set of numbers that specifies the lower and upper limits for a ProductOffering that can be procured as part of the related BundledProductOffering. Values can range from 0 to unbounded",
"properties": {
"numberRelOfferDefault": {
"type": "integer",
"description": "Default number of produc offereings that should be procured as part of the related BundledProductOffering"
},
"numberRelOfferLowerLimit": {
"type": "integer",
"description": "lower limit for a product offering that can be procured as part of the related BundledProductOffering"
},
"numberRelOfferUpperLimit": {
"type": "integer",
"description": "upper limit for a product offering that can be procured as part of the related BundledProductOffering"
}
}
}
],
"discriminator": {
"propertyName": "@type",
"mapping": {
"BundledProductOfferingOption": "#/components/schemas/BundledProductOfferingOption"
}
}
}