Sha256: a80f7ac20b3694b6e536ef106f1ca33f267daa24c72d4aa0e3e7b8c10f39c4c4
Contents?: true
Size: 918 Bytes
Versions: 22
Compression:
Stored size: 918 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "active", "inactive" ] }, "description": { "type": "string", "maxLength": 32767 }, "filterType": { "oneOf": [ { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, { "type": "string", "enum": [ "none" ] } ] }, "pubTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "subTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } } }, "additionalProperties": false }
Version data entries
22 entries across 22 versions & 1 rubygems