Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • TST/ATS-oneM2M-Types-Release-4
1 result
Show changes
Commits on Source (1)
...@@ -7745,6 +7745,7 @@ type record PollingChannel ...@@ -7745,6 +7745,7 @@ type record PollingChannel
Timestamp lastModifiedTime, Timestamp lastModifiedTime,
Labels labels optional, Labels labels optional,
Timestamp expirationTime, Timestamp expirationTime,
XSD.Boolean requestAggregation optional,
union { union {
record length(1 .. infinity) of ChildResourceRef childResource_list, record length(1 .. infinity) of ChildResourceRef childResource_list,
record length(1 .. infinity) of union { record length(1 .. infinity) of union {
...@@ -8425,6 +8426,15 @@ with { ...@@ -8425,6 +8426,15 @@ with {
variant "element"; variant "element";
}; };
type record AggregatedRequestPrimitives
{
record length(1..infinity) of RequestPrimitive requestPrimitive_list
}
with {
variant "name as uncapitalized";
variant (requestPrimitive_list) "untagged";
variant (requestPrimitive_list[-]) "name as 'requestPrimitive'";
};
type record Request type record Request
{ {
...@@ -9733,8 +9743,8 @@ with { ...@@ -9733,8 +9743,8 @@ with {
type record RateLimit type record RateLimit
{ {
XSD.NonNegativeInteger maxNrOfNotify optional, XSD.NonNegativeInteger maxNrOfNotify,
XSD.Duration timeWindow optional XSD.Duration timeWindow
} }
with { with {
variant "name as uncapitalized"; variant "name as uncapitalized";
......