Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
ATS oneM2M Types Release 2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TST
ATS oneM2M Types Release 2
Compare revisions
69efab890e4654840e4eb5a27a5fdb197473b245 to 478b0f667b7159f89642258f2823c6fde8804779
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
TST/ATS-oneM2M-Types-Release-2
Select target project
No results found
478b0f667b7159f89642258f2823c6fde8804779
Select Git revision
Swap
Target
TST/ATS-oneM2M-Types-Release-2
Select target project
TST/ATS-oneM2M-Types-Release-2
1 result
69efab890e4654840e4eb5a27a5fdb197473b245
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Make lists in FilterCriteria optional and untagged
· 9b27d486
Miguel Angel Reina Ortega
authored
1 year ago
9b27d486
OneM2M_Types generated from XSD v2.33.0
· 478b0f66
Miguel Angel Reina Ortega
authored
1 year ago
478b0f66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
OneM2M_Types.ttcn
+7
-7
7 additions, 7 deletions
OneM2M_Types.ttcn
with
7 additions
and
7 deletions
OneM2M_Types.ttcn
View file @
478b0f66
...
...
@@ -1769,11 +1769,11 @@ type record FilterCriteria
ResourceTypeList
resourceType
optional
,
XSD
.
NonNegativeInteger
sizeAbove
optional
,
XSD
.
PositiveInteger
sizeBelow
optional
,
record
of
TypeOfContent
contentType_list
,
record
of
Attribute
attribute_list
,
record
of
TypeOfContent
contentType_list
optional
,
//TODO Make it optional
record
of
Attribute
attribute_list
optional
,
//TODO Make it optional
FilterUsage
filterUsage
optional
,
XSD
.
NonNegativeInteger
limit
optional
,
record
of
Sparql
semanticsFilter_list
,
record
of
Sparql
semanticsFilter_list
optional
,
//TODO Make it optional
XSD
.
Boolean
filterOperation
optional
,
ContentFilterSyntax
contentFilterSyntax
optional
,
XSD
.
String
contentFilterQuery
optional
,
...
...
@@ -2034,7 +2034,7 @@ type record AccessControlRule
}
with
{
variant
"name as uncapitalized"
;
//
variant (accessControlContexts_list) "untagged";
variant
(
accessControlContexts_list
)
"untagged"
;
variant
(
accessControlContexts_list
[
-
])
"name as 'accessControlContexts'"
;
variant
(
accessControlContexts_list
[
-
].
accessControlWindow_list
)
"untagged"
;
variant
(
accessControlContexts_list
[
-
].
accessControlWindow_list
[
-
])
"name as 'accessControlWindow'"
;
...
...
@@ -2042,7 +2042,7 @@ with {
variant
(
accessControlContexts_list
[
-
].
accessControlIpAddresses
.
ipv6Addresses
)
"list"
;
//variant (accessControlAuthenticationFlag) "text 'true' as '1'";
//variant (accessControlAuthenticationFlag) "text 'false' as '0'";
//
variant (accessControlObjectDetails_list) "untagged";
variant
(
accessControlObjectDetails_list
)
"untagged"
;
variant
(
accessControlObjectDetails_list
[
-
])
"name as 'accessControlObjectDetails'"
;
variant
(
accessControlObjectDetails_list
[
-
].
childResourceType
)
"list"
;
};
...
...
@@ -6143,9 +6143,9 @@ type record EventNotificationCriteria
}
with
{
variant
"name as uncapitalized"
;
//
variant (operationMonitor_list) "untagged";
variant
(
operationMonitor_list
)
"untagged"
;
variant
(
operationMonitor_list
[
-
])
"name as 'operationMonitor'"
;
//
variant (notificationEventType_list) "untagged";
variant
(
notificationEventType_list
)
"untagged"
;
variant
(
notificationEventType_list
[
-
])
"name as 'notificationEventType'"
;
};
...
...
This diff is collapsed.
Click to expand it.