Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • getPersonCreditRaw operation added

  • Blocked state is added to licenseState state enum (only used by getPersonCreditRaw operation)

  • responseReferenceId is added to getSchoolCredit response

...

Name

Type

Cardinality

Description

ean

string160

1...1

Unique identifier of the product. The credit gives right of use for the indicated ean.

startDate

date

1...1

The start date. Until the start date the credit cannot be used.

endDate

date

0...1

The end date. Until the end date the credit can be used.

state

licenseStatestate

1...1

The current state of the credit.

Source

Code Block
<xs:complexType name="personCredit">
    <xs:sequence>
			<xs:element name="ean" type="types:string160" minOccurs="1" maxOccurs="1"/>
			<xs:element name="startDate" type="types:date" minOccurs="1" maxOccurs="1"/>
			<xs:element name="endDate" type="types:date" minOccurs="0" maxOccurs="1"/>
			<xs:element name="state" type="types:licenseStatestate" minOccurs="1" maxOccurs="1"/>
    </xs:sequence>
</xs:complexType>

...

Name

Type

Possible values / format

Description

string64

String

Max length: 64 characters

String limited by a number of maximum allowed characters.

string100

String

Max length: 100 characters

String limited by a number of maximum allowed characters.

string256

String

Max length: 256 characters

String limited by a number of maximum allowed characters.

organisationID

String

Min length: 1, Max length: 160

Unique identifier of a school.

amount

Integer

Min length: 1

Amount is a positive number.

licenseStatestate

Enum

Possible values:

  • NotYetUsable

  • NotActive

  • Active

  • Expired

  • Blocked (only for EBF)

State of a license.

eckID

String

Min length: 128, Max length: 256

Unique identification of the end user by the ECK standard.

...