TM Forum · Schema

OtherNameOrganization_FVO

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tm-forum-othernameorganization-fvo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OtherNameOrganization_FVO",
  "title": "OtherNameOrganization_FVO",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible_FVO"
    },
    {
      "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_FVO"
    }
  }
}