Commit f09136b3 authored by Frank Fransen's avatar Frank Fransen Committed by Mark Canterbury
Browse files

TS 103705 CR007 - Adding addresses and contract file to subscribed data types

parent 720e6a2b
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -484,6 +484,17 @@
        "dateOfBirth": {
          "$ref": "#/$defs/Date",
          "description": "Date of birth of the person"
        },
        "addresses": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/Address"
          },
          "description": "List of one or more addresses registered for the person"
        },
        "contactDetails": {
          "$ref": "#/$defs/ContactDetail",
          "description": "Contact details registered for the person"
        }
      }
    },
@@ -504,6 +515,17 @@
          "type": "string",
          "pattern": "[A-Z]{2}.*",
          "description": "Value Added Tax number, typically starting with a two letter country code according to ISO code 3166 - alpha 2 - that identifies the country of issue"
        },
        "addresses": {
          "type": "array",
          "items": {
            "$ref": "#/$defs/Address"
          },
          "description": "List of one or more addresses registered for the organisation"
        },
        "contactDetails": {
          "$ref": "#/$defs/ContactDetail",
          "description": "Contact details registered for the organisation"
        }
      }
    },
@@ -567,6 +589,10 @@
        "natureOfContract": {
          "type": "string",
          "description": "Nature of the contract, i.e. product or service name"
        },
        "documentFile": {
          "$ref": "#/$defs/DocumentFile",
          "description": "Document file, e.g. copy of the contract"
        }
      }
    },
@@ -620,6 +646,10 @@
        "countryCode": {
          "$ref": "ts_103280_2017_07#/$defs/ISOCountryCode",
          "description": "Country code of the address"
        },
        "typeOfAddress": {
          "type": "string",
          "description": "Information about the type of address, e.g. residence, billing, installation"
        }
      }
    },