Home / File/ registry.json — ui Source File

registry.json — ui Source File

Architecture documentation for registry.json, a json file in the ui codebase.

Entity Profile

Source Code

{
  "$schema": "https://json-schema.org/draft-07/schema#",
  "description": "A shadcn registry of components, hooks, pages, etc.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "homepage": {
      "type": "string"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "https://ui.shadcn.com/schema/registry-item.json"
      }
    }
  },
  "required": ["name", "homepage", "items"],
  "uniqueItems": true,
  "minItems": 1
}

Frequently Asked Questions

What does registry.json do?
registry.json is a source file in the ui codebase, written in json.
Where is registry.json in the architecture?
registry.json is located at deprecated/www/public/schema/registry.json (directory: deprecated/www/public/schema).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free