hexo-theme-amane/include/schema/common/head.json

27 lines
765 B
JSON
Raw Normal View History

2019-12-25 01:24:34 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/common/head.json",
2019-12-25 01:24:34 +00:00
"description": "Page metadata configurations",
"type": "object",
"properties": {
"favicon": {
"type": "string",
"description": "URL or path to the website's icon",
2019-12-25 01:34:27 +00:00
"default": "/img/favicon.svg"
2019-12-25 01:24:34 +00:00
},
"canonical_url": {
"type": "string",
"description": "Canonical URL of the current page"
},
"open_graph": {
"$ref": "/misc/open_graph.json"
},
"meta": {
"$ref": "/misc/meta.json"
},
"rss": {
"type": "string",
"description": "URL or path to the website's RSS atom.xml"
}
}
}