{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntentRefOrValue_FVO", "title": "IntentRefOrValue_FVO", "type": "object", "description": "Intent Ref (if Intent already exists) or Value (if Intent be created or its details be presented)", "oneOf": [ { "$ref": "#/components/schemas/IntentRef_FVO" }, { "$ref": "#/components/schemas/Intent_FVO" } ], "discriminator": { "propertyName": "@type", "mapping": { "IntentRef": "#/components/schemas/IntentRef_FVO", "Intent": "#/components/schemas/Intent_FVO" } } }