Versions Compared

Key

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

...

Name

Type

Cardinality

Description

StartDate

date

0...1

Date from which the EckID will be used

EndDate

date

0...1

Date till which the EckID will be used

Active

boolean

1...1

Whether the EckID is used or not at this moment (using the above start and end date)

Source

Code Block
	<xsd:complexType name="EckIdState">
		<xsd:sequence>
			<xsd:element name="StartDate" type="xsd:date" minOccurs="0"/>
			<xsd:element name="EndDate" type="xsd:date" minOccurs="0"/>
			<xsd:element name="Active" type="xsd:boolean" />
		</xsd:sequence>
	</xsd:complexType>

...