{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductOfferingPriceRef",
"title": "ProductOfferingPriceRef",
"allOf": [
{
"$ref": "#/components/schemas/EntityRef"
},
{
"type": "object",
"description": "ProductPriceOffering reference. An amount, usually of money, that is asked for or allowed when a ProductOffering is bought, rented, or leased",
"properties": {
"version": {
"type": "string",
"description": "Version of the product offering price"
}
}
}
],
"discriminator": {
"propertyName": "@type",
"mapping": {
"ProductOfferingPriceRef": "#/components/schemas/ProductOfferingPriceRef"
}
}
}