aboutsummaryrefslogtreecommitdiff
path: root/config.schema.json
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-09-06 22:40:59 +0200
committerWilliam Hergès <william@herges.fr>2025-09-06 22:40:59 +0200
commit8ae1115ba712209cb6b974e81a3a4c4745e36c94 (patch)
tree6bb54c05e1f1bcd3f39793d13867635f20da0c2a /config.schema.json
parent6f6f10cedcbc46ef125bd067bc8d084d29c76afe (diff)
feat(config): customize font file path, extension and name
Diffstat (limited to 'config.schema.json')
-rw-r--r--config.schema.json177
1 files changed, 0 insertions, 177 deletions
diff --git a/config.schema.json b/config.schema.json
deleted file mode 100644
index f2a2600..0000000
--- a/config.schema.json
+++ /dev/null
@@ -1,177 +0,0 @@
-{
- "type": "object",
- "properties": {
- "colors": {
- "type": "object",
- "properties": {
- "background": {
- "type": "object",
- "properties": {
- "angle": {
- "type": "integer",
- "format": "int32",
- "minimum": 0,
- "maximum": 359
- },
- "colors": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "color": {
- "type": "string"
- },
- "position": {
- "type": "integer",
- "format": "int32",
- "minimum": 0,
- "maximum": 100
- }
- },
- "additionalProperties": false,
- "required": [
- "color",
- "position"
- ]
- }
- },
- "type": {
- "type": "string"
- }
- },
- "additionalProperties": false,
- "required": [
- "type",
- "angle",
- "colors"
- ]
- },
- "buttons": {
- "type": "object",
- "properties": {
- "background": {
- "type": "string"
- },
- "background_hover": {
- "type": "string"
- },
- "text": {
- "type": "string"
- },
- "text_hover": {
- "type": "string"
- }
- },
- "additionalProperties": false,
- "required": [
- "text",
- "text_hover",
- "background",
- "background_hover"
- ]
- },
- "text": {
- "type": "string"
- },
- "tag_hover": {
- "type": "string"
- }
- },
- "additionalProperties": false,
- "required": [
- "background",
- "buttons",
- "text",
- "tag_hover"
- ]
- },
- "description": {
- "type": "string"
- },
- "image": {
- "type": "string"
- },
- "legal": {
- "type": "string",
- "additionalProperties": false
- },
- "links": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "content": {
- "type": "string"
- },
- "link": {
- "type": "string"
- }
- },
- "additionalProperties": false,
- "required": [
- "link",
- "content"
- ]
- }
- },
- "person": {
- "type": "object",
- "properties": {
- "image": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "pronouns": {
- "type": "string"
- },
- "tags": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "description": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "link": {
- "type": "string"
- }
- },
- "additionalProperties": false,
- "required": [
- "name",
- "description",
- "link"
- ]
- }
- }
- },
- "additionalProperties": false,
- "required": [
- "name",
- "pronouns",
- "image",
- "tags"
- ]
- },
- "custom_pages": {
- "type": "array"
- },
- "rel_me_links": {
- "type": "array"
- }
- },
- "additionalProperties": false,
- "required": [
- "image",
- "description",
- "person",
- "colors",
- "links",
- "legal"
- ]
-}