Sha256: fefd275a7c1b2633cb61dc3a4a1816ed21340d1e49f2adb4b81d6b93f621be00
Contents?: true
Size: 1.77 KB
Versions: 17
Compression:
Stored size: 1.77 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/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
17 entries across 17 versions & 1 rubygems