TM Forum · Schema

Event_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-event-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Event_MVO",
  "title": "Event_MVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "event with common attributes.",
      "properties": {
        "href": {
          "type": "string",
          "description": "Hyperlink reference"
        },
        "id": {
          "type": "string",
          "description": "unique identifier"
        },
        "correlationId": {
          "type": "string",
          "description": "The correlation id for this event."
        },
        "domain": {
          "type": "string",
          "description": "The domain of the event."
        },
        "title": {
          "type": "string",
          "description": "The title of the event."
        },
        "description": {
          "type": "string",
          "description": "An explnatory of the event."
        },
        "priority": {
          "type": "string",
          "description": "A priority."
        },
        "timeOccurred": {
          "type": "string",
          "format": "date-time",
          "description": "The time the event occurred."
        },
        "source": {
          "$ref": "#/components/schemas/EntityRef"
        },
        "reportingSystem": {
          "$ref": "#/components/schemas/EntityRef"
        },
        "relatedParty": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/RelatedPartyRefOrPartyRoleRef_MVO"
          }
        },
        "analyticCharacteristic": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/Characteristic_MVO"
          }
        },
        "eventId": {
          "type": "string",
          "description": "The identifier of the notification."
        },
        "eventTime": {
          "type": "string",
          "format": "date-time",
          "description": "Time of the event occurrence."
        },
        "eventType": {
          "type": "string",
          "description": "The type of the notification."
        },
        "event": {
          "description": "The event linked to the involved resource object",
          "type": "object"
        }
      },
      "required": [
        "eventId",
        "eventTime",
        "eventType",
        "event"
      ]
    }
  ]
}