Commit ab240b36 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Merge branch 'cr/103705/0004' into 'meeting/LI68'

TS 103 705 CR004 - Adding Roaming Information object

See merge request !195
parents 8c9cf133 f4b4c27a
Loading
Loading
Loading
Loading
Loading
+29 −1
Original line number Diff line number Diff line
@@ -61,6 +61,10 @@
        "endReason": {
          "type": "integer",
          "description": "ITU Q.850"
        },
        "roamingRecord": {
          "$ref": "#/$defs/RoamingInformation",
          "description": "Information for inbound / outbound roaming record."
        } 
      }
    },
@@ -84,6 +88,10 @@
          "type": "array",
          "items": {
            "$ref": "#/$defs/MessagingPartyInformation"
          },
          "roamingRecord": {
            "$ref": "#/$defs/RoamingInformation",
            "description": "Information for inbound / outbound roaming record."
          }
        }
      }
@@ -140,6 +148,10 @@
        },
        "volume": {
          "$ref": "#/$defs/DataVolume"
        },
        "roamingRecord": {
          "$ref": "#/$defs/RoamingInformation",
          "description": "Information for inbound / outbound roaming record."
        }
      }
    },
@@ -406,6 +418,22 @@
          }
        }
      }
    },
    "RoamingInformation": {
      "type": "object",
      "description": "Inbound / outbound roaming information",
      "properties": {
        "vPLMNId": {
          "type": "string",
          "pattern": "[0-9]{3}-[0-9]{2,3}",
          "description": "PLMN identifier of the visited network. Consists of MCC (3 digits), MNC (2-3 digits)."
        },
        "hPLMNId": {
          "type": "string",
          "pattern": "[0-9]{3}-[0-9]{2,3}",
          "description": "PLMN identifier of the home network. Consists of MCC (3 digits), MNC (2-3 digits)."
        }
      }
    }
  }
}