rittenhop-dev/versions/5.94.2/node_modules/@tryghost/admin-api-schema/lib/schemas/posts-edit.json

22 lines
480 B
JSON
Raw Normal View History

2024-09-23 19:40:12 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "posts.edit",
"title": "posts.edit",
"description": "Schema for posts.edit",
"type": "object",
"additionalProperties": false,
"properties": {
"posts": {
"type": "array",
"minItems": 1,
"maxItems": 1,
"items": {
"type": "object",
"allOf": [{ "$ref": "posts#/definitions/post" }],
"required": ["updated_at"]
}
}
},
"required": ["posts"]
}