programmingfonts/fonts-schema.json

76 lines
2.2 KiB
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type":"object",
"patternProperties": {
"^[a-z-]*$": {
"$ref": "#/definitions/font"
}
},
"definitions": {
"font": {
"type": "object",
"properties": {
"alias": {
"type":"string",
"pattern": "^[a-z][a-z0-9-]+$"
},
"name": { "type":"string" },
"author": { "type":"string" },
"description": { "type":"string" },
"year": { "type":"integer" },
"website": {
"type":"string",
"format":"uri"
},
"license": {
"type":"string",
"enum": [
"commercial",
"Apache",
2022-02-18 21:41:54 +01:00
"BSD-2-Clause",
2022-02-18 21:51:44 +01:00
"CC BY-SA 4.0",
"GNU GPL",
"MIT",
"public domain",
2023-07-03 22:17:34 +02:00
"SIL OFL",
"WTFPL"
]
},
"ligatures": { "type":"boolean" },
"style": {
"type":"string",
"enum": ["serif", "sans"]
},
"rendering": {
"type":"string",
"enum": ["bitmap", "vector"]
},
"zerostyle": {
"type":"string",
2020-10-08 22:45:20 +02:00
"enum": ["empty", "slashed", "dotted"]
},
"variants": {
"type":"array",
"items": {
"type": "string",
"pattern": "^([a-z-]+|\\d00)$"
},
"minItems": 1
}
},
"additionalProperties": false,
"required": [
"name",
"author",
"year",
"website",
"ligatures",
"style",
"rendering"
]
}
}
}