TM Forum · Schema

OtherNameOrganization

OtherNameOrganization schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf637-product-inventory-other-name-organization-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/tmf637-product-inventory-other-name-organization-schema.json",
  "title": "OtherNameOrganization",
  "description": "OtherNameOrganization schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "description": "Keeps track of other names, for example the old name of an organization.",
      "properties": {
        "tradingName": {
          "type": "string",
          "description": "The name that the organization trades under"
        },
        "nameType": {
          "type": "string",
          "description": "Co. , Inc. , Ltd. , Pty Ltd. , Plc; , Gmbh"
        },
        "name": {
          "type": "string",
          "description": "Organization name (department name for example)"
        },
        "validFor": {
          "$ref": "#/components/schemas/TimePeriod"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "OtherNameOrganization": "#/components/schemas/OtherNameOrganization"
    }
  }
}