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

25 lines
516 B
JSON
Raw Normal View History

2024-09-23 19:40:12 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "labels",
"title": "labels",
"description": "Base labels definitions",
"definitions": {
"label": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 191,
"pattern": "^([^,]|$)"
},
"slug": {
"type": ["string", "null"],
"maxLength": 191
}
}
}
}
}