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

57 lines
1.2 KiB
JSON
Raw Normal View History

2024-09-23 19:40:12 -04:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "tiers",
"title": "tiers",
"description": "Base Tier definitions",
"definitions": {
"tier": {
"description": "A Ghost Tier",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"maxLength": 191
},
"description": {
"type": ["string", "null"],
"maxLength": 191
},
"slug": {
"type": ["string", "null"],
"maxLength": 191
},
"welcome_page_url": {
"type": ["string", "null"],
"maxLength": 2000
},
"active": {
"type": "boolean"
},
"visibility": {
"type": "string",
"enum": ["public", "none"]
},
"currency": {
"type": ["string", "null"]
},
"monthly_price": {
"type": ["number", "null"]
},
"yearly_price": {
"type": ["number", "null"]
},
"trial_days": {
"type": ["number", "null"]
},
"benefits": {
"type": ["array", "null"],
"items": {
"type": "string"
}
}
}
}
}
}