@adobe/spectrum-tokens
Version:
Design tokens for Spectrum, Adobe's design system
27 lines (26 loc) • 647 B
JSON
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensource.adobe.com/spectrum-design-data/schemas/token-types/alias.json",
"title": "Alias",
"description": "A token that references another token.",
"type": "object",
"allOf": [
{
"$ref": "token.json"
}
],
"properties": {
"$schema": {
"const": "https://opensource.adobe.com/spectrum-design-data/schemas/token-types/alias.json"
},
"value": {
"type": "string",
"pattern": "^\\{(\\w|-)*\\}$"
},
"component": {},
"private": {},
"deprecated": {},
"deprecated_comment": {},
"uuid": {}
}
}