Sentinel Hub · Schema

binaryComparisonPredicate

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
op string
args object
View JSON Schema on GitHub

JSON Schema

Cql2BinaryComparisonPredicate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/Cql2BinaryComparisonPredicate",
  "title": "binaryComparisonPredicate",
  "type": "object",
  "required": [
    "op",
    "args"
  ],
  "properties": {
    "op": {
      "type": "string",
      "enum": [
        "=",
        "<",
        ">",
        "<=",
        ">=",
        "<>"
      ]
    },
    "args": {
      "$ref": "#/components/schemas/Cql2ScalarOperands"
    }
  }
}