hexo-theme-amane/include/schema/misc/poly_links.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2019-12-24 23:05:37 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/misc/poly_links.json",
"description": "A polymorphic link",
"type": "object",
"patternProperties": {
".+": {
"type": [
"string",
"object"
],
"description": "URL or path of the link, with/without the icon element class name",
"properties": {
"url": {
"type": "string",
"description": "URL or path of the link"
},
"icon": {
"type": "string",
"description": "Icon element class name"
}
},
"required": [
"url",
"icon"
]
}
},
"examples": [
{
"My GitHub Page": "https://github.com/ppoffice"
},
{
"My GitHub Page": {
"url": "https://github.com/ppoffice",
"icon": "fab fa-github"
}
}
]
}