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"

(Created page with "__TOC__ == ContentInstance resource == == ContentInstance representation == <source lang="xml"> <?xml version="1.0" encoding="UTF-8"?> <schema xmlns="http://www.w3.org/2001/X...")
 
(ContentInstance resource)
Line 1: Line 1:
 
__TOC__
 
__TOC__
== ContentInstance resource ==
+
== 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.
 +
 
 +
{{CTable}}
 +
| Name || Type || Multiplicity || Create || Update ||Response
 +
|-
 +
| [[OM2M/Attributes#appID|appId]] || AnyURI || 1 || O || NP || M
 +
|}
  
 
== ContentInstance representation ==
 
== ContentInstance representation ==

Revision as of 12:35, 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
appId AnyURI 1 O NP 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