rittenhop-dev/versions/5.94.2/node_modules/@tryghost/admin-api-schema/lib/schemas/snippets.json
2024-09-23 19:40:12 -04:00

30 lines
666 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "snippets",
"title": "snippets",
"description": "Base snippets definitions",
"definitions": {
"snippet": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 191
},
"mobiledoc": {
"type": "string",
"format": "json-string",
"maxLength": 1000000000
},
"lexical": {
"type": ["string", "null"],
"format": "json-string",
"maxLength": 1000000000
}
}
}
}
}