Sha256: 2f98acaafe6886e5955b5d5bc4ca4197f2174e9e7ca6b793d6277e2be7ade1ee
Contents?: true
Size: 1018 Bytes
Versions: 19
Compression:
Stored size: 1018 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "active", "inactive" ] }, "description": { "type": "string", "maxLength": 32767 }, "certificate": { "type": "string", "maxLength": 32767, "minLength": 50 }, "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
19 entries across 19 versions & 1 rubygems