{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/claude-code/path-or-paths/latest.json",
  "title": "Path or Paths",
  "description": "A single relative path or an array of relative paths for Claude Code plugin component locations.",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/lintel-rs/catalog/master/schemas/claude-code/path-or-paths.json",
    "sourceSha256": "6093f6e7951b87bcfe5f7a5c97e8a267c95f88a705af5d2a9eb8fef4d6c030db",
    "catalogDescription": "Path or array of paths for Claude Code plugin components."
  },
  "oneOf": [
    {
      "type": "string",
      "description": "A single relative path starting with `./`."
    },
    {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of relative paths, each starting with `./`."
    }
  ]
}
