Kajabi · Schema
Blog Posts
Schema for Kajabi blog posts
Creator EconomyOnline CoursesMembershipsE-CommerceDigital ProductsContactsWebhooksPayments
Properties
| Name | Type | Description |
|---|---|---|
| title | string | |
| url | string | |
| content | string | |
| slug | string | |
| page_title | string | |
| page_description | string | |
| published_at | string | |
| created_at | string | ISO 8601 date-time, read only |
| updated_at | string | ISO 8601 date-time, read only |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kajabi/main/json-schema/blog_posts_attributes.json",
"title": "Blog Posts",
"description": "Schema for Kajabi blog posts",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"url": {
"type": "string"
},
"content": {
"type": "string"
},
"slug": {
"type": "string"
},
"page_title": {
"type": "string"
},
"page_description": {
"type": "string"
},
"published_at": {
"type": "string",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "ISO 8601 date-time, read only"
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "ISO 8601 date-time, read only"
}
}
}