2019-12-24 23:05:37 +00:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"$id": "/misc/open_graph.json",
|
|
|
|
"description": "Open Graph metadata\nhttps://hexo.io/docs/helpers.html#open-graph",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Page title (og:title)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"type": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Page type (og:type)",
|
2019-12-26 03:51:14 +00:00
|
|
|
"default": "blog",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"url": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Page URL (og:url)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"image": {
|
|
|
|
"type": [
|
|
|
|
"string",
|
|
|
|
"array"
|
|
|
|
],
|
|
|
|
"description": "Page cover (og:image)",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
2019-12-26 03:51:14 +00:00
|
|
|
},
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"site_name": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Site name (og:site_name)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Page description (og:description)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"twitter_card": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Twitter card type (twitter:card)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"twitter_id": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Twitter ID (twitter:creator)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"twitter_site": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Twitter ID (twitter:creator)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"google_plus": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Google+ profile link (deprecated)",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"fb_admins": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Facebook admin ID",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
},
|
|
|
|
"fb_app_id": {
|
|
|
|
"type": "string",
|
2019-12-26 03:51:14 +00:00
|
|
|
"description": "Facebook App ID",
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
}
|
2019-12-26 03:51:14 +00:00
|
|
|
},
|
|
|
|
"nullable": true
|
2019-12-24 23:05:37 +00:00
|
|
|
}
|