TM Forum · Schema

TroubleTicketRelationship

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-troubleticketrelationship-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TroubleTicketRelationship",
  "title": "TroubleTicketRelationship",
  "allOf": [
    {
      "$ref": "#/components/schemas/EntityRef"
    },
    {
      "type": "object",
      "description": "Represents a relationship between trouble tickets",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique identifier of the related trouble ticket"
        },
        "name": {
          "type": "string",
          "description": "Name of the trouble ticket"
        },
        "relationshipType": {
          "type": "string",
          "description": "Type of relationship"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "TroubleTicketRelationship": "#/components/schemas/TroubleTicketRelationship"
    }
  }
}