validate_blog
Validate blog post data against schema requirements to ensure proper formatting and completeness before publication.
Instructions
Validate blog data using Zod schema without posting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author_avatar_url | No | ||
author_name | No | ||
content | Yes | ||
cover_url | No | ||
description | Yes | ||
locale | No | ||
slug | Yes | ||
status | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"author_avatar_url": {
"type": "string"
},
"author_name": {
"type": "string"
},
"content": {
"type": "string"
},
"cover_url": {
"type": "string"
},
"description": {
"type": "string"
},
"locale": {
"type": "string"
},
"slug": {
"type": "string"
},
"status": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"description",
"content",
"slug"
],
"type": "object"
}