{
  "$schema": "http://json-schema.org/schema",
  "id": "add-component",
  "title": "Add ShadCN Angular Component",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the component to add (e.g., button, accordion)",
      "enum": ["button", "accordion", "alert", "badge", "card", "dialog", "input", "tabs", "tooltip", "progress"]
    },
    "component": {
      "type": "string",
      "description": "The name of the component to add (alias for name)",
      "enum": ["button", "accordion", "alert", "badge", "card", "dialog", "input", "tabs", "tooltip", "progress"]
    },
    "path": {
      "type": "string",
      "description": "The path to add the component to",
      "default": "src/app/components"
    }
  },
  "required": ["name"]
}