Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "OM2M/ContentInstance"

(contentInstance resource)
(contentInstance resource)
Line 14: Line 14:
 
| [[OM2M/Attributes#Href|href]] || AnyURI || 1 || NP || N/A || O
 
| [[OM2M/Attributes#Href|href]] || AnyURI || 1 || NP || N/A || O
 
|-
 
|-
| [[OM2M/Attributes#ID|id]] || NMTOKEN || 1 || O || N/A || M*
+
| [[OM2M/Attributes#ContentTypes|contentTypes]] || ContentTypes || 1 || O || N/A || O
 +
|-
 +
| [[OM2M/Attributes#ContentSize|contentSize]] || Long || 1 || NP || N/A || M
 +
|-
 +
| [[OM2M/Attributes#CreationTime|creationTime]] || DateTime || 1 || NP || N/A || M
 +
|-
 +
| [[OM2M/Attributes#LastModifiedTime|lastModifiedTime]] || DateTime || 1 || NP || N/A || M
 +
|-
 +
| [[OM2M/Attributes#DelayTolerance|delayTolerance]] || NMTOKEN || 1 || O || N/A || M*
 +
|-
 +
| [[OM2M/Attributes#Content|content]] || Content || 1 || M || N/A || M
 
|}
 
|}
  

Revision as of 14:54, 17 April 2014

contentInstance resource

The contentInstance resource represents a data instance in the container.

The contentInstance resource cannot be modified once created.

A contentInstance may be deleted explicitly or it may be deleted by the platform.


Name Type Multiplicity Create Update Response
id NMTOKEN 1 O N/A M*
href AnyURI 1 NP N/A O
contentTypes ContentTypes 1 O N/A O
contentSize Long 1 NP N/A M
creationTime DateTime 1 NP N/A M
lastModifiedTime DateTime 1 NP N/A M
delayTolerance NMTOKEN 1 O N/A M*
content Content 1 M N/A M

contentInstance representation

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://uri.etsi.org/m2m" xmlns:tns="http://uri.etsi.org/m2m" xmlns:xmlmime="http://www.w3.org/2005/05/xmlmime">
  <include schemaLocation="common.xsd" />
  <import namespace="http://www.w3.org/2005/05/xmlmime" schemaLocation="xmlmime.xsd" />
  <element name="contentInstance" type="tns:ContentInstance" />
  <complexType name="ContentInstance">
    <all>
      <element ref="tns:creationTime" minOccurs="0" />
      <element ref="tns:lastModifiedTime" minOccurs="0" />
      <element ref="tns:delayTolerance" minOccurs="0" />
      <element ref="tns:contentTypes" minOccurs="0" />
      <element ref="tns:contentSize" minOccurs="0" />
      <element ref="tns:content" minOccurs="0" />
    </all>
    <attribute ref="tns:id" />
    <attribute name="href" type="anyURI" />
  </complexType>
  <element name="content" type="xmlmime:base64Binary" />
  <element name="contentSize" type="long" />
  <element name="contentTypes" type="tns:ContentTypes" />
  <complexType name="ContentTypes">
    <sequence>
      <element ref="tns:contentType" maxOccurs="unbounded" />
    </sequence>
  </complexType>
</schema>

contentInstance create

contentInstance retrieve

ContentInstance update

ContentInstance delete

Back to the top