Skip to content

Commit

Permalink
fixed rm schema for querying
Browse files Browse the repository at this point in the history
  • Loading branch information
ppazos committed May 3, 2023
1 parent 88259d4 commit 1a4b222
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 1.8.42
version = 1.8.43
group = com.cabolabs
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,13 @@ class OperationalTemplate {
'source': 'PARTY_REF' // need to support queries over the relationship.source to find all the relationships of an actor
],
'PARTY_REF': [
'id': 'String' // need to query by the PARTY_REF.id by a string criteria
'id': 'OBJECT_VERSION_ID' // NOTE: this is OBJECT_ID but our implementation only allows OBJECT_VERSION_ID here, this should be part of the conformance statement!
],
'OBJECT_VERSION_ID': [
'value': 'String' // need to query by the PARTY_REF.id by a string criteria
],
'LOCATABLE_REF': [ // to allow to query by locatable_ref id and path, used in INSTRUCTION_DETAILS.instruction_id
'id': 'String',
'id': 'OBJECT_VERSION_ID',
'path': 'String'
]
]
Expand Down

0 comments on commit 1a4b222

Please sign in to comment.