oslc_cm
- The Open Services for Lifecycle Collaboration Change Management namespace - http://open-services.net/xmlns/cm/1.0
/
rdf
- RDF XML namespace - http://www.w3.org/1999/02/22-rdf-syntax-ns#
dc
- The Dublin Core Metadata Terms namespace - http://purl.org/dc/terms/
application/x-oslc-cm-change-request+xml
.
XML Representation Summary: ChangeRequest? Element | |
<oslc_cm:ChangeRequest rdf:about = xsd:anyURI > Content: (dc:title, dc:identifier, dc:type?, dc:description?, dc:subject?, dc:creator?, dc:modified?) </oslc_cm:ChangeRequest> | |
Property | Representation |
dc:title | The required title string. Note that this element comes from the DC namespace, allowing tools unaware of the change management domain to access this element. This is sometimes also referred to as the headline or summary of the request. |
dc:identifier | The required, read-only identifier string. This is assigned by a change management system when a request resource has been created. |
dc:type | The optional type string. The type of request that is represented, such as: defect, enhancement, etc. |
dc:description | The optional description string. This element comes from the DC namespace, allowing tools completely unaware of the change management domain to access this element. |
dc:subject | The optional subject string. The DC namespace defines this element to be a collection of keywords. The subject element will contain keywords and tags assigned to this request. |
dc:creator | The optional, read-only creator element, identifying the originating user of this request. |
dc:modified | The optional, read-only modified date time which must conform to RFC3339 format |
<?xml version="1.0" encoding="UTF-8"?> <oslc_cm:ChangeRequest xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/terms/" xmlns:oslc_cm="http://open-services.net/xmlns/cm/1.0/" rdf:about="http://example.com/bugs/2314"> <dc:title> Provide import </dc:title> <dc:identifier> 2314 </dc:identifier> <dc:type> http://myserver/mycmapp/types/Enhancement </dc:type> <dc:description> Implement the system's import capabilities. </dc:description> <dc:subject> import, blocker </dc:subject> <dc:creator> mailto:aadams@someemail.com </dc:creator> <dc:modified> 2008-09-16T08:42:11.265Z </dc:modified> </oslc_cm:ChangeRequest>
application/x-oslc-cm-change-request+json
.
JSON Representation Summary: ChangeRequest? JSON Object | |
{ Content: (dc:title, dc:identifier, dc:type?, dc:description?, dc:subject?, dc:creator?, dc:modified?) } | |
Property | Representation |
rdf:about | The optional URI of this resource. |
dc:title | The required title string. Note that this element comes from the DC namespace, allowing tools unaware of the change management domain to access this element. This is sometimes also referred to as the headline or summary of the request. |
dc:identifier | The required, read-only identifier string. This is assigned by a change management system when a request resource has been created. |
dc:type | The optional type string. The type of request that is represented, such as: defect, enhancement, etc. |
dc:description | The optional description string. This element comes from the DC namespace, allowing tools completely unaware of the change management domain to access this element. |
dc:subject | The optional subject string. The DC namespace defines this element to be a collection of keywords. The subject element will contain keywords and tags assigned to this request. |
dc:creator | The optional, read-only creator element, identifying the originating user of this request. |
dc:modified | The optional, read-only modified date time which must conform to RFC3339 format |
{ "rdf:about": "http://example.com/bugs/2314", "dc:title": "Provide import", "dc:identifier" : "2314", "dc:type" : "http://myserver/mycmapp/types/Enhancement", "dc:description" : "Implement the system's import capabilities.", "dc:subject" : "import, blocker", "dc:creator" : "mailto:aadams@someemail.com", "dc:modified" : "2008-09-16T08:42:11.265Z" }