mirror of
https://github.com/symfony/ux-toolkit.git
synced 2026-03-24 00:02:08 +01:00
27 lines
870 B
JSON
27 lines
870 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Kit schema",
|
|
"description": "Schema for describing a Kit for the Symfony UX Toolkit.",
|
|
"type": "object",
|
|
"required": ["name", "description", "license", "homepage"],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "The name of the kit."
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"description": "A brief description of the kit."
|
|
},
|
|
"license": {
|
|
"type": "string",
|
|
"description": "The license under which the kit is distributed."
|
|
},
|
|
"homepage": {
|
|
"type": "string",
|
|
"format": "uri",
|
|
"description": "The homepage URL for the kit, typically where users can find more information or documentation."
|
|
}
|
|
}
|
|
}
|