TM Forum · JSON Structure

Tmf621 Trouble Ticket Related Entity Structure

RelatedEntity schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

RelatedEntity is a JSON Structure definition published by TM Forum. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-structure/tmf621-trouble-ticket-related-entity-structure.json",
  "name": "RelatedEntity",
  "description": "RelatedEntity schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "A reference to an entity, where the type of the entity is not known in advance.",
      "properties": {
        "role": {
          "type": "string"
        },
        "entity": {
          "$ref": "#/components/schemas/EntityRef"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "RelatedEntity": "#/components/schemas/RelatedEntity"
    }
  }
}