privat link site
This commit is contained in:
38
src/privat/components/schema.json
Normal file
38
src/privat/components/schema.json
Normal 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"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user