Files
mmorales.photo/front/v2/public/config.schema.json
2025-08-09 03:38:22 +02:00

107 lines
2.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"version": {
"type": "string"
},
"baseApiUrl": {
"type": "string"
},
"defaultTheme": {
"type": "string"
},
"logoSrc": {
"type": "string"
},
"logoAlt": {
"type": "string"
},
"title": {
"type": "string"
},
"faviconSrc": {
"type": "string"
},
"metaTags": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"keywords": {
"type": "string"
},
"author": {
"type": "string"
}
},
"required": ["description", "keywords", "author"]
},
"socialLinks": {
"type": "object",
"properties": {
"instagram": {
"type": "string"
},
"facebook": {
"type": "string"
},
"twitter": {
"type": "string"
}
}
},
"fonts": {
"type": "object",
"properties": {
"preconnect": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": ["href"]
},
{
"type": "object",
"properties": {
"href": {
"type": "string"
},
"crossorigin": {
"type": "boolean"
}
},
"required": ["href", "crossorigin"]
}
]
},
"stylesheets": {
"type": "array",
"items": [
{
"type": "string"
}
]
}
},
"required": ["stylesheets"]
}
},
"required": [
"version",
"baseApiUrl",
"logoSrc",
"logoAlt",
"title",
"faviconSrc",
"metaTags",
"fonts"
]
}