TM Forum · Schema

OrganizationParentRelationship

OrganizationParentRelationship schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf622-product-ordering-organization-parent-relationship-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf622-product-ordering-organization-parent-relationship-schema.json",
  "title": "OrganizationParentRelationship",
  "description": "OrganizationParentRelationship schema from TM Forum API",
  "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"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "OrganizationParentRelationship": "#/components/schemas/OrganizationParentRelationship"
    }
  }
}