mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Updated tags input schema for canary API
no-issue
This commit is contained in:
parent
6996922ed0
commit
7e5292eccc
1 changed files with 43 additions and 0 deletions
|
@ -40,6 +40,49 @@
|
||||||
"type": ["string", "null"],
|
"type": ["string", "null"],
|
||||||
"maxLength": 500
|
"maxLength": 500
|
||||||
},
|
},
|
||||||
|
"og_image": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"format": "uri-reference",
|
||||||
|
"maxLength": 2000
|
||||||
|
},
|
||||||
|
"og_title": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 300
|
||||||
|
},
|
||||||
|
"og_description": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 500
|
||||||
|
},
|
||||||
|
"twitter_image": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"format": "uri-reference",
|
||||||
|
"maxLength": 2000
|
||||||
|
},
|
||||||
|
"twitter_title": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 300
|
||||||
|
},
|
||||||
|
"twitter_description": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 500
|
||||||
|
},
|
||||||
|
"codeinjection_head": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 65535
|
||||||
|
},
|
||||||
|
"codeinjection_foot": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 65535
|
||||||
|
},
|
||||||
|
"canonical_url": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"format": "uri-reference",
|
||||||
|
"maxLength": 2000
|
||||||
|
},
|
||||||
|
"accent_color": {
|
||||||
|
"type": ["string", "null"],
|
||||||
|
"maxLength": 50
|
||||||
|
},
|
||||||
"id": {
|
"id": {
|
||||||
"strip": true
|
"strip": true
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue