Content Type: application/vnd.csp.metadata-list+xml

This content type represents the list of available client-supplied metadata for an object.


Elements

metadata-list

This is the root element of the metadata list. It contains zero or more of the following elements:


Elements

metadata-item (Optional)

This element provides a link to client-supplied metadata. The target URL is the URL, which the client will have previously used to store the metadata. The link is specified using the XLink standard.


Schema Definition

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="metadata-list">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="metadata-item" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

Example

<metadata-list>
  <metadata-item xlink:href="https://api.example.com/v2/path-to-metadata" xlink:type="simple"/>
</metadata-list>