Sha256: 9dee8e2f08fbef5843ca915361036bfdf5d332b50ec4be02c9de50861dafeb6a
Contents?: true
Size: 1.09 KB
Versions: 19
Compression:
Stored size: 1.09 KB
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 }, "releaseTag": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 255 } }, "additionalProperties": false, "required": [ "flowId", "version" ] }
Version data entries
19 entries across 19 versions & 1 rubygems