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
......@@ -2626,7 +2626,7 @@ type record AccessControlRule
ListOfURIs accessControlOriginators,
AccessControlOperations accessControlOperations,
record of record {
record of ScheduleEntry accessControlWindow_list,
record of ScheduleEntry accessControlWindow_list optional,//TODO Make it optional
record {
record length(1 .. infinity) of Ipv4 ipv4Addresses optional,
record length(1 .. infinity) of Ipv6 ipv6Addresses optional
......@@ -2635,13 +2635,13 @@ type record AccessControlRule
ListOfM2MID accessControlUserIDs optional,
EvalCriteria accessControlEvalCriteria optional,
XSD.NonNegativeInteger accessControlLimit optional
} accessControlContexts_list optional,//TODO It should be optional
} accessControlContexts_list optional,//TODO Make it optional
XSD.Boolean accessControlAuthenticationFlag optional,
record of record {
ResourceType resourceType optional,
SpecializationType specializationID optional,
record length(1 .. infinity) of ResourceType childResourceType
} accessControlObjectDetails_list optional, //TODO It should be optional
} accessControlObjectDetails_list optional, //TODO Make it optional
AttributeList_1 accessControlAttributes optional
}
with {
......@@ -3189,7 +3189,7 @@ type record ListOfAttributes
{
record length(1 .. infinity) of record {
XSD.NCName name,
XSD.AnySimpleType value_ optional //TODO Use XSD.AnySimpleType instead
XSD.anyType value_ optional //TODO Use XSD.anyType instead
} attribute_list
}
with {
......
......@@ -55,6 +55,8 @@ variant "XSD:anyType";
//variant (attr) "anyAttributes";
//variant (elem_list) "anyElement";
};
type anytype anyType;
// String types
type XMLCompatibleString String
......