Skip to content

Commit

Permalink
add "neq" expression in JSON
Browse files Browse the repository at this point in the history
closes #607

adds "neq", but also see #578 for related comments/changes
  • Loading branch information
cportele committed Jul 19, 2021
1 parent 096161f commit 51afaa3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions extensions/cql/standard/schema/cql.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
"binaryComparisonPredicate": {
"oneOf": [
{ "$ref": "#/$defs/eqExpression" },
{ "$ref": "#/$defs/neqExpression" },
{ "$ref": "#/$defs/ltExpression" },
{ "$ref": "#/$defs/gtExpression" },
{ "$ref": "#/$defs/lteExpression" },
Expand All @@ -84,6 +85,14 @@
}
},

"neqExpression": {
"type": "object",
"required": ["neq"],
"properties": {
"neq": { "$ref": "#/$defs/scalarOperands" }
}
},

"ltExpression": {
"type": "object",
"required": ["lt"],
Expand Down

0 comments on commit 51afaa3

Please sign in to comment.