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
}
Source
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 apps/v4/public/schema/registry.json (directory: apps/v4/public/schema).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free