Data: prop
- Namespace: http://genologics.com/ri/property
- XML Schema File: property.xsd
The data in this namespace is divided into elements and types. Types define the structure of the data. Elements define specific instances of the types, and are therefore more relevant to REST endpoints, which generally consume and/or produce elements.
The following elements are members of this namespace:
The following types are members of this namespace:
Element properties
- Type: properties
The representation for a list of property links.
The system enforces a maximum number of elements when generating the list of links. When the size of the request result set is larger than the system maximum, the list represents a paged view of the overall results, and the previous-page and next-page elements provide URIs linking to the previous or next page of links in the overall results.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<prop:properties xmlns:prop="http://genologics.com/ri/property">
<property uri="..." name="..." value="...">
<!--content of type 'property-link'-->
</property>
<property>
<!--(another 'property-link' type)-->
</property>
<!--...more "property" elements...-->
<previous-page uri="...">
<!--content of type 'page'-->
</previous-page>
<next-page uri="...">
<!--content of type 'page'-->
</next-page>
</prop:properties>
Type properties
The representation for a list of property links.
The system enforces a maximum number of elements when generating the list of links. When the size of the request result set is larger than the system maximum, the list represents a paged view of the overall results, and the previous-page and next-page elements provide URIs linking to the previous or next page of links in the overall results.
Child Elements
name (type) | min/max occurs |
description |
---|---|---|
property (property-link) | 0/unbounded | property provides a URI linking to the detailed representation of a property. |
previous-page (page) | 0/1 | When working with large lists of properties, the previous-page element provides a URI that links to the previous page of properties. |
next-page (page) | 0/1 | When working with large lists of properties, the next-page element provides a URI that links to the next page of properties. |
Type property-link
property-link is a child element type of property and provides a URI linking to the detailed representation of a property.
Attributes
name | type | description |
---|---|---|
uri | anyURI | The URI of the property. |
name | string | The name of the property. |
value | string | The value of the property. |