Commit f58730f4 authored by Frank Fransen's avatar Frank Fransen
Browse files

Update file etsi_types.schema.json

parent 29441209
Loading
Loading
Loading
Loading
Loading
+47 −11
Original line number Diff line number Diff line
@@ -695,13 +695,29 @@
        "subscriber": {
          "oneOf": [
            {
              "type": "object",
              "properties": {
                "person": {
                  "$ref": "#/$defs/Person",
                  "description": "Information about the natural person registered as the subscriber"
                }
              },
              "required": [
                "person"
              ]
            },
            {
              "type": "object",
              "properties": {
                "organisation": { 
                  "$ref": "#/$defs/Organisation",
                  "description": "Information about the organisation registered as the subscriber"
                }
              },
              "required": [
                "organisation"
              ]
            }
          ],
          "description": "Subscriber is either a natural person or an organisation"
        },
@@ -711,7 +727,8 @@
        }
      },
      "required": [
        "validityPeriod"
        "validityPeriod",
        "subscriber"
      ]
    },
    "RegistartionInformationRecord": {
@@ -924,21 +941,40 @@
        "type": "object",
        "description": "PUK-Code information",
        "properties": {
          "ICCIDOfSIM": {
          "iCCIDOfSIM": {
            "oneOf": [
              {
                "$ref": "ts_103280_2017_07#/$defs/ICCID"
                "type": "object",
                "properties": {
                  "iCCID": {
                    "$ref": "ts_103280_2017_07#/$defs/ICCID",
                    "description": "Identity of the SIM card is a Integrated Circuit Card IDentifier"
                  }
                },
                "required": [
                  "iCCID"
                ]
              },
              {
                "$ref": "ts_103280_2017_07#/$defs/EUICCID"
                "type": "object",
                "properties": {
                  "eUICCID": {
                    "$ref": "ts_103280_2017_07#/$defs/EUICCID",
                    "description": "Identity of the SIM card is an Embedded Universal Integrated Circuit Card IDentifier"
                  }
                },
                "required": [
                  "eUICCID"
                ]
              }
            ],
            "description": "Identity of the SIM card is either a ICCID or an EUICCID"
          },
          "PUK": {
          "pUK": {
            "type": "string",
            "description": "Personal Unlocking Key for PIN"            
          },
          "PUK2": {
          "pUK2": {
            "type": "string",
            "description": "Personal Unlocking Key for PIN2"            
          }