Sha256: de8553ae156a4776b2558c23eaa39521ad516c96508d4a1b03de2827ff584d8b
Contents?: true
Size: 1.77 KB
Versions: 19
Compression:
Stored size: 1.77 KB
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "flowVersion": { "type": "string", "minLength": 1, "maxLength": 255 }, "flowVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "start": { "type": "string", "format": "date-time" }, "end": { "type": "string", "format": "date-time" }, "limit": { "type": "number" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "errors": { "type": "array", "items": { "type": "object", "properties": { "time": { "type": "string", "format": "date-time" }, "deviceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "flowVersion": { "type": "string", "minLength": 1, "maxLength": 255 }, "flowVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "nodeId": { "type": "string" }, "nodeLabel": { "type": "string" }, "error": { "type": "object", "properties": { "name": { "type": "string" }, "message": { "type": "string" } } } } } } } }
Version data entries
19 entries across 19 versions & 1 rubygems