{ "$schema": "http://json-schema.org/draft-07/schema", "title": "repository", "description": "A repository of the current user\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "type": "object", "patternProperties": { ".": { "title": "secrets", "description": "Secrets of the current repository\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "oneOf": [ { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "description": "A secret of the current repository\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "type": "string", "minLength": 1, "examples": [ "SECRET", "PASSWORD" ] } }, { "title": "secret", "type": "object", "patternProperties": { ".": { "description": "A secret of the current repository\nhttps://github.com/DannyBen/secret_hub#bulk-operations", "type": [ "string", "null" ] } } } ] } }, "additionalProperties": false }