JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QuoteItemRef_FVO",
"title": "QuoteItemRef_FVO",
"allOf": [
{
"$ref": "#/components/schemas/Extensible_FVO"
},
{
"type": "object",
"description": "A reference to Quote item that has been executed previously.",
"properties": {
"quoteHref": {
"type": "string",
"description": "Reference of the related quote."
},
"@referredType": {
"type": "string",
"description": "The actual type of the target instance when needed for disambiguation."
},
"quoteId": {
"type": "string",
"description": "Unique identifier of a refered quote."
},
"quoteItemId": {
"type": "string",
"description": "Identifier of a quote item. "
}
},
"required": [
"quoteId",
"quoteItemId"
]
}
],
"discriminator": {
"propertyName": "@type",
"mapping": {
"QuoteItemRef": "#/components/schemas/QuoteItemRef_FVO"
}
}
}