Sentinel Hub · Schema

StatisticalDateTimeInterval

Satellite ImageryGeospatialRemote SensingEarth ObservationNDVISentinelLandsatMODISOGCSTAC

Properties

Name Type Description
from string ISO-8601 time representing start of search interval, e.g. 2019-01-31T14:00:00+01:00
to string ISO-8601 time representing end of search interval, e.g. 2019-02-05T15:00:00+01:00.
View JSON Schema on GitHub

JSON Schema

StatisticalDateTimeInterval.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.sentinel-hub.com/schemas/StatisticalDateTimeInterval",
  "title": "StatisticalDateTimeInterval",
  "type": "object",
  "required": [
    "from",
    "to"
  ],
  "properties": {
    "from": {
      "type": "string",
      "description": "ISO-8601 time representing start of search interval, e.g. 2019-01-31T14:00:00+01:00",
      "format": "date-time"
    },
    "to": {
      "type": "string",
      "description": "ISO-8601 time representing end of search interval, e.g. 2019-02-05T15:00:00+01:00.",
      "format": "date-time"
    }
  }
}