Skip to main content

Feature Rest API

Usage

Can be used for userDefined Layers and for querying in the userDefined databars.

Operators

And

{
"type": "and",
"clauses": [
{​​​​​​​​​ ...
},
{​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ ...
}
]
}

Or

{
"type": "or",
"clauses": [
{​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ ...
},
{​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ ...
}
]
}

Not

{
"type": "not",
"expression": {​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ ...
}
}

Equals

{
"type": "compare",
"operator": "equal",
"leftOperand": {
"type": "property",
"property": "at_bpejCinnosti_fr_bpejKatastralniUzemi"
},
"rightOperand": {
"type": "literal",
"value": "Bilina"
}
}

isNull

Between

{​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
"type": "between",
"operand": {​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
"type": "property",
"property": "at_50111_alt"
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​,
"lowerBoundary": 20,
"upperBoundary": 100
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

GreaterThanOrEqual

{
"type": "compare",
"operator": "greaterThanOrEqual",
"leftOperand": {
"type": "property",
"property": "at_50111_alt"
},
"rightOperand": {
"type": "literal",
"value": 10
}
}

GreaterThan

{
"type": "compare",
"operator": "greaterThan",
"leftOperand": {
"type": "property",
"property": "at_50111_alt"
},
"rightOperand": {
"type": "literal",
"value": 10
}
}

LessThanOrEqual

{​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

"type": "compare",
"operator": "lessThanOrEqual",
"leftOperand": {​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
"type": "property",
"property": "at_50111_alt"
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​,
"rightOperand": {​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
"type": "literal",
"value": 10
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

LessThan

{
"type": "compare",
"operator": "lessThan",
"leftOperand": {
"type": "property",
"property": "at_50111_alt"
},
"rightOperand": {
"type": "literal",
"value": 10
}
}

Wildcard

{​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
"type": "wildcard",
"operator": "equal",
"query": "*test*",
"operand": {​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
"type": "property",
"property": "at_5010006"
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
}​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​