2022-11-16 18:16:50 +01:00
|
|
|
{
|
|
|
|
|
"$id": "https://lucide.dev/category.schema.json",
|
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
|
|
|
"$vocabulary": {
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/core": true,
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/applicator": true,
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/unevaluated": true,
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/validation": true,
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/meta-data": true,
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/format-annotation": true,
|
|
|
|
|
"https://json-schema.org/draft/2020-12/vocab/content": true
|
|
|
|
|
},
|
|
|
|
|
"title": "Lucide Icons category schema",
|
|
|
|
|
"type": "object",
|
2023-10-23 21:05:02 +02:00
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": ["$schema", "icon", "title"],
|
2022-11-16 18:16:50 +01:00
|
|
|
"properties": {
|
2023-10-23 21:05:02 +02:00
|
|
|
"$schema": {
|
2023-12-11 15:53:52 +01:00
|
|
|
"type": "string"
|
2022-11-16 18:16:50 +01:00
|
|
|
},
|
|
|
|
|
"description": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"icon": {
|
2023-02-28 17:24:17 +01:00
|
|
|
"type": "string"
|
2022-11-16 18:16:50 +01:00
|
|
|
},
|
2023-10-23 21:05:02 +02:00
|
|
|
"title": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
2022-11-16 18:16:50 +01:00
|
|
|
"weight": {
|
|
|
|
|
"type": "integer"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"description": "A JSON Schema for categories defined by Lucide Icons."
|
|
|
|
|
}
|