TM Forum · Schema

OrganizationParentRelationship_MVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-organizationparentrelationship-mvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationParentRelationship_MVO",
  "title": "OrganizationParentRelationship_MVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Parent references of an organization in a structure of organizations.",
      "properties": {
        "relationshipType": {
          "type": "string",
          "description": "Type of the relationship. Could be juridical, hierarchical, geographical, functional for example."
        },
        "organization": {
          "$ref": "#/components/schemas/OrganizationRef_MVO"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "OrganizationParentRelationship": "#/components/schemas/OrganizationParentRelationship_MVO"
    }
  }
}