{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Product_FVO",
"title": "Product_FVO",
"allOf": [
{
"$ref": "#/components/schemas/Entity_FVO"
},
{
"type": "object",
"description": "A product offering procured by a customer or other interested party playing a party role. A product is realized as one or more service(s) and / or resource(s).",
"properties": {
"agreementItem": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AgreementItemRef_FVO"
}
},
"billingAccount": {
"$ref": "#/components/schemas/BillingAccountRef_FVO"
},
"creationDate": {
"type": "string",
"format": "date-time",
"description": "Date and time when the product was created"
},
"description": {
"type": "string",
"description": "Is the description of the product. It could be copied from the description of the Product Offering."
},
"isBundle": {
"type": "boolean",
"description": "If true, the product is a ProductBundle which is an instantiation of a BundledProductOffering. If false, the product is a ProductComponent which is an instantiation of a SimpleProductOffering."
},
"isCustomerVisible": {
"type": "boolean",
"description": "If true, the product is visible by the customer."
},
"name": {
"type": "string",
"description": "Name of the product. It could be the same as the name of the product offering"
},
"orderDate": {
"type": "string",
"format": "date-time",
"description": "Is the date when the product was ordered"
},
"productCharacteristic": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Characteristic_FVO"
}
},
"productOffering": {
"$ref": "#/components/schemas/ProductOfferingRef_FVO"
},
"productOrderItem": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedOrderItem_FVO"
}
},
"product": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProductRefOrValue_FVO"
}
},
"productPrice": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProductPrice_FVO"
}
},
"productRelationship": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProductRelationship_FVO"
}
},
"productSerialNumber": {
"type": "string",
"description": "Is the serial number for the product. This is typically applicable to tangible products e.g. Broadband Router."
},
"productSpecification": {
"$ref": "#/components/schemas/ProductSpecificationRef_FVO"
},
"productTerm": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProductTerm_FVO"
}
},
"realizingResource": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceRef_FVO"
}
},
"realizingService": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ServiceRef_FVO"
}
},
"relatedParty": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedPartyOrPartyRole_FVO"
}
},
"place": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RelatedPlaceRefOrValue_FVO"
}
},
"startDate": {
"type": "string",
"format": "date-time",
"description": "Is the date from which the product starts"
},
"status": {
"$ref": "#/components/schemas/ProductStatusType"
},
"terminationDate": {
"type": "string",
"format": "date-time",
"description": "Is the date when the product was terminated"
},
"intent": {
"$ref": "#/components/schemas/IntentRefOrValue_FVO"
}
}
}
],
"discriminator": {
"propertyName": "@type",
"mapping": {
"Product": "#/components/schemas/Product_FVO"
}
}
}