design-token.schema.json•765 B
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"value": {
"oneOf": [
{ "type": "string" },
{ "type": "number" }
]
},
"category": {
"type": "string",
"enum": ["color", "typography", "spacing", "elevation", "motion"]
},
"description": {
"type": "string"
},
"usage": {
"type": "array",
"items": {
"type": "string"
}
},
"deprecated": {
"type": "boolean"
},
"aliases": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["name", "value", "category"],
"additionalProperties": false
}