Resource: Object
Description: TBD
RDF Specification: The table below describes the RDF/XML representation of an object. The media type for such representations MUST be "x-oslc-rdm-object+xml".
The following table describes the RDF properties whose meaning is defined by this specification:
Property | Required | Represents |
---|
dc:title | Yes | The title of the object. |
dc:description | Yes | The primary content of the object. |
dc:creator | No | The entity that created the object. |
dc:created | Yes | Date of creation of the object. |
dc:modified | Yes | Date of the last modification of the object. |
rm:links | Yes | Collection resource for links associated with this object. |
Examples:
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rm="http://open-services.net/xmlns/rm/1.0/"
xmlns:calm="http://jazz.net/xmlns/prod/jazz/calm/1.0/"
xmlns:acme="http://acme.example.com/xmlns/"
xmlns:dc="http://purl.org/dc/terms/">
<rm:Object rdf:about="http://rrc.example.com/requirements/24">
<dc:creator>Ian Green</dc:creator>
<dc:created>17 July 1900</dc:created>
<dc:modified>1 August 2009</dc:modified>
<dc:title rdf:parseType="Literal">
<xhtml:div xmlns:xhtml="http://http://www.w3.org/1999/xhtml">
Signal frequency <xhtml:b>triggering</xhtml:b> shall be modulation-exempt
</xhtml:div>
</dc:title>
<dc:description>Signal frequency triggering shall be compliant with ISO-7488-II Part 4.</dc:description>
<rm:links rdf:resource="http://rrc.example.com/requirements/24/linkCollection" />
<!-- Some properties whose meaning is not defined by OSLC RM -->
<acme:processLinkage rdf:resource="urn:process-id:6363" />
<calm:implementedByCollection
rdf:resource="http://rrc.example.com/requirements/24/implementedByCollection" />
<calm:validatedByCollection
rdf:resource="http://rrc.example.com/requirements/24/validatedByCollection" />
</rm:Object>
</rdf:RDF>
History: TBD
Topic revision: r2 - 27 Nov 2009 - 05:50:27 -
IanGreen