Sha256: c4d0efa93d69499549d195986e57c0bd9d6fa6eafbf599d4fdeb8c2a5a4d7f6e
Contents?: true
Size: 983 Bytes
Versions: 19
Compression:
Stored size: 983 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "version": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "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 } }, "additionalProperties": false, "required": [ "flowId", "version" ] }
Version data entries
19 entries across 19 versions & 1 rubygems