{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/secrethub-yml/latest.json",
  "title": "repository",
  "description": "A repository of the current user\n<https://github.com/DannyBen/secret_hub#bulk-operations>",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/DannyBen/secret_hub/master/schemas/secrethub.json",
    "sourceSha256": "a428de4f828b65d3e1ebd976b2eb4de813aec1174108d9dd4a01c9564cab09a9",
    "fileMatch": [
      "secrethub.yml",
      "secrethub.yaml"
    ],
    "parsers": [
      "yaml"
    ]
  },
  "type": "object",
  "additionalProperties": false,
  "patternProperties": {
    ".": {
      "title": "secrets",
      "description": "Secrets of the current repository\n<https://github.com/DannyBen/secret_hub#bulk-operations>",
      "oneOf": [
        {
          "type": "array",
          "minItems": 1,
          "uniqueItems": true,
          "items": {
            "description": "A secret of the current repository\n<https://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\n<https://github.com/DannyBen/secret_hub#bulk-operations>",
              "type": [
                "string",
                "null"
              ]
            }
          }
        }
      ]
    }
  }
}
