User Tools

Site Tools


en:lensorder:version010604:complextypes:biometerdata

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
en:lensorder:version010604:complextypes:biometerdata [2022/10/19 08:27] hansobermayeren:lensorder:version010604:complextypes:biometerdata [2022/10/19 08:39] (current) – [biometerData (BiometerData)] hansobermayer
Line 1: Line 1:
 +biometerData
 +====== biometerData (BiometerData) ======
 +
 +[[en:lensorder:version010604:structure|b2boptic]] -> [[en:lensorder:version010604:structure|items]] -> [[en:lensorder:version010604:complextypes:item|item]] -> [[en:lensorder:version010604:complextypes:pair|pair]] -> [[en:lensorder:version010604:complextypes:patient|patient]] -> biometerData
 +
 +{{:en:lensorder:version010604:images:biometerData.png?nolink|BiometerData}}
 +
 +
 +^ identification ^^
 +^ occurs | 1 |
 +
 +^ id (element of identification) ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ restriction | length: 1..50 chars |
 +^ description | measurement id from measurement device |
 +
 +^ timeStamp (element of identification) ^^
 +^ type | dateTime |
 +^ occurs | 1 |
 +^ description | measurement time from measurement device |
 +
 +^ counter (element of identification) ^^
 +^ type | int |
 +^ occurs | 0..1 |
 +^ restriction | min: 0 |
 +^ description | counter of ? |
 +
 +^ device (element of identification) ^^
 +^ occurs | 0..1 |
 +
 +^ deviceId (element of device) ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ restriction | length: 1..50 chars |
 +^ description | id of measurement device |
 +
 +^ softwareVersion (element of device) ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ restriction | length: 1..50 chars |
 +^ description | software version of measurement device |
 +
 +
 +^ biometerMeasurement ^^
 +^ occurs | 1..2 |
 +
 +^ //[[en:lensorder:version010604:simpletypes:sides:pupildata|side]] (attribute of eyeDataItem)// ^^
 +^ type | [[en:lensorder:version010604:simpletypes:sides|Sides]] |
 +^ use | required |
 +^ description | eye side |
 +
 +^ axialLength (element of result) ^^
 +^ type | float |
 +^ unity | mm |
 +^ description | axialLength of eye |
 +
 +^ centralCorneaThickness (element of result) ^^
 +^ type | float |
 +^ unity | mm |
 +^ description | centralCorneaThickness of eye |
 +
 +^ anteriorChamberDepth (element of result) ^^
 +^ type | float |
 +^ unity | mm |
 +^ description | anteriorChamberDepth of eye |
 +
 +^ crystallineLensThickness (element of result) ^^
 +^ type | float |
 +^ unity | mm |
 +^ description | crystallineLensThickness of eye |
 +
 +
 +
 +<code xml>
 +<xs:complexType name="BiometerData">
 + <xs:sequence>
 + <xs:element name="biometerMeasurement" type="BiometerMeasurement" maxOccurs="unbounded"/>
 + </xs:sequence>
 + </xs:complexType>
 + <xs:complexType name="BiometerMeasurement">
 + <xs:sequence>
 + <xs:element name="identification" type="MeasurementIdentification"/>
 + <xs:element name="results" maxOccurs="2">
 + <xs:complexType>
 + <xs:complexContent>
 + <xs:extension base="BiometerResults">
 + <xs:attribute name="side" type="SidesSimple" use="required"/>
 + </xs:extension>
 + </xs:complexContent>
 + </xs:complexType>
 + </xs:element>
 + </xs:sequence>
 + </xs:complexType>
 + <xs:complexType name="BiometerResult">
 + <xs:sequence>
 + <xs:element name="axialLength" type="xs:float" minOccurs="0"/>
 + <xs:element name="centralCorneaThickness" type="xs:float" minOccurs="0"/>
 + <xs:element name="anteriorChamberDepth" type="xs:float" minOccurs="0"/>
 + <xs:element name="crystallineLensThickness" type="xs:float" minOccurs="0"/>
 + </xs:sequence>
 + </xs:complexType>
 + <xs:complexType name="BiometerResults">
 + <xs:sequence>
 + <xs:element name="result" type="BiometerResult" maxOccurs="unbounded"/>
 + </xs:sequence>
 + </xs:complexType>
 +</code>