The following change has been deployed in test environment of Green Card Web Service. The change will be deployed in production environment on the 8th of February 2017.

You can download the documentation here

Properties Policy_No & License_no in Green Card Header are now strings (were string arrays). Below you can see the related schema changes.

New Definition

<complexType name="Header">
  <sequence>
    <element minOccurs="0" maxOccurs="1" default="0001-01-01" name="Start_Date" type="date"/>
    <element minOccurs="0" maxOccurs="1" default="0001-01-01" name="End_Date" type="date"/>
    <element minOccurs="1" maxOccurs="1" name="Relates-to_Doc_No." type="string"/>
    <element minOccurs="1" maxOccurs="1" name="Policy_No" type="string"/>
    <element minOccurs="1" maxOccurs="1" name="License_No" type="string"/>
  </sequence>
</complexType>

Old Definition

<complexType name="Header">
  <sequence>
    <element minOccurs="0" maxOccurs="1" default="0001-01-01" name="Start_Date" type="date"/>
    <element minOccurs="0" maxOccurs="1" default="0001-01-01" name="End_Date" type="date"/>
    <element minOccurs="1" maxOccurs="1" name="Relates-to_Doc_No." type="string"/>
    <element minOccurs="1" maxOccurs="unbounded" name="Policy_No" type="string"/>
    <element minOccurs="1" maxOccurs="unbounded" name="License_No" type="string"/>
  </sequence>
</complexType>