TM Forum · Schema

GeographicSiteRelationship

GeographicSiteRelationship schema from TM Forum API

TelcoTelecommunicationsBSSOSSOpen APIsStandards
View JSON Schema on GitHub

JSON Schema

tmf637-product-inventory-geographic-site-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/tmf637-product-inventory-geographic-site-relationship-schema.json",
  "title": "GeographicSiteRelationship",
  "description": "GeographicSiteRelationship schema from TM Forum API",
  "allOf": [
    {
      "$ref": "#/components/schemas/Extensible"
    },
    {
      "type": "object",
      "properties": {
        "href": {
          "type": "string",
          "description": "Reference of the related geographic site"
        },
        "role": {
          "type": "string",
          "description": "Role of the related site in the relationship"
        },
        "validFor": {
          "$ref": "#/components/schemas/TimePeriod"
        },
        "id": {
          "type": "string",
          "description": "Unique identifier of the related site entity within the server"
        },
        "relationshipType": {
          "type": "string",
          "description": "Type of relationship"
        }
      }
    }
  ],
  "discriminator": {
    "propertyName": "@type",
    "mapping": {
      "GeographicSiteRelationship": "#/components/schemas/GeographicSiteRelationship"
    }
  }
}