Sha256: 8172f748c1b3bff9b3de68488db6b5979287a43729276cef72b79d5991021f04

Contents?: true

Size: 1.27 KB

Versions: 13

Compression:

Stored size: 1.27 KB

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "start": {
      "type": "number"
    },
    "end": {
      "type": "number"
    },
    "duration": {
      "type": "number"
    },
    "resolution": {
      "type": "number"
    },
    "aggregation": {
      "type": "string",
      "enum": [
        "FIRST",
        "LAST",
        "COUNT",
        "MAX",
        "MIN",
        "MEDIAN",
        "MEAN",
        "SUM"
      ]
    },
    "attributes": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[0-9a-zA-Z_-]{1,255}$"
      }
    },
    "deviceTags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string",
            "pattern": "^[0-9a-zA-Z_-]{1,255}$"
          },
          "value": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          }
        },
        "additionalProperties": false
      },
      "maxItems": 100
    },
    "deviceIds": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[A-Fa-f\\d]{24}$"
      },
      "maxItems": 1000
    },
    "limit": {
      "type": "number"
    }
  },
  "additionalProperties": false
}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
losant_rest-1.5.1 schemas/timeSeriesQuery.json
losant_rest-1.5.0 schemas/timeSeriesQuery.json
losant_rest-1.4.2 schemas/timeSeriesQuery.json
losant_rest-1.4.1 schemas/timeSeriesQuery.json
losant_rest-1.4.0 schemas/timeSeriesQuery.json
losant_rest-1.3.3 schemas/timeSeriesQuery.json
losant_rest-1.3.2 schemas/timeSeriesQuery.json
losant_rest-1.3.1 schemas/timeSeriesQuery.json
losant_rest-1.3.0 schemas/timeSeriesQuery.json
losant_rest-1.2.3 schemas/timeSeriesQuery.json
losant_rest-1.2.2 schemas/timeSeriesQuery.json
losant_rest-1.2.1 schemas/timeSeriesQuery.json
losant_rest-1.2.0 schemas/timeSeriesQuery.json