TM Forum · Schema

IntentRefOrValue_MVO

Intent Ref (if Intent already exists) or Value (if Intent be created or its details be presented)

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-intentreforvalue-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntentRefOrValue_MVO",
  "title": "IntentRefOrValue_MVO",
  "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_MVO"
    },
    {
      "$ref": "#/components/schemas/Intent_MVO"
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "IntentRef": "#/components/schemas/IntentRef_MVO",
      "Intent": "#/components/schemas/Intent_MVO"
    }
  }
}