TM Forum · JSON Structure

Tmf622 Product Ordering Other Name Organization Structure

OtherNameOrganization schema from TM Forum API

Type: Properties: 0
TelcoTelecommunicationsBSSOSSOpen APIsStandards

OtherNameOrganization 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/tmf622-product-ordering-other-name-organization-structure.json",
  "name": "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"
    }
  }
}