mirror of
https://git.solarpunk.moe/Fries/fries-website.git
synced 2024-11-14 16:42:21 +00:00
38 lines
529 B
JSON
38 lines
529 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"name",
|
||
|
"website",
|
||
|
"description"
|
||
|
],
|
||
|
"properties": {
|
||
|
"name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"website": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"description": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"website_button": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"name",
|
||
|
"alt_text"
|
||
|
],
|
||
|
"properties": {
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"alt_text": {
|
||
|
"type": "string",
|
||
|
"minLength": 1
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|