Skip to content
Merged
Prev Previous commit
Next Next commit
adding settings
  • Loading branch information
matiasbenedetto committed Jan 11, 2024
commit a2cfd5abc46429ed55cb7d326bd8d6643cf3f453
14 changes: 12 additions & 2 deletions schemas/json/font-collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"fontFamilies": {
"$schema": {
"description": "JSON schema URI for font-collection.json.",
"type": "string"
},
"version": {
"description": "Version of font-collection.json schema to use.",
"type": "integer",
"enum": [ 1 ]
},
"font_families": {
"type": "array",
"description": "Array of font families ready to be installed",
"items": {
Expand All @@ -22,7 +31,8 @@
"type": "string"
}
}
}
},
"required": [ "font_family_settings" ]
}
},
"categories": {
Expand Down