privat link site

This commit is contained in:
2023-02-24 17:29:48 +01:00
parent a7ee872ebd
commit e18887635d
13 changed files with 182 additions and 11 deletions

View File

@@ -0,0 +1,38 @@
{
"$schema": "http://json-schema.org/draft-04/schema",
"type": "object",
"properties": {
"links":{
"type":"array",
"title": "Links",
"description": "List of Links",
"items": {
"type":"object",
"properties": {
"title": {
"type":"string",
"description": "Title in LinkBox"
},
"subtitle": {
"type":"string",
"description": "Subtitle in LinkBox"
},
"url":{
"type":"string",
"description": "Url of the link"
},
"logo":{
"type":"string",
"description": "Logo of the Link"
}
},
"required":[
"title",
"url"
]
}
}
}
}