Kajabi · Schema
Products
Schema for Kajabi products
Creator EconomyOnline CoursesMembershipsE-CommerceDigital ProductsContactsWebhooksPayments
Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | ISO 8601 date-time, read only |
| title | string | |
| description | stringnull | |
| status | string | |
| members_aggregate_count | integer | |
| product_type_name | string | |
| product_type_id | integer | |
| publish_status | string | |
| thumbnail_url | stringnull | |
| url | stringnull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kajabi/main/json-schema/products_attributes.json",
"title": "Products",
"description": "Schema for Kajabi products",
"type": "object",
"properties": {
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "ISO 8601 date-time, read only"
},
"title": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"status": {
"type": "string"
},
"members_aggregate_count": {
"type": "integer"
},
"product_type_name": {
"type": "string"
},
"product_type_id": {
"type": "integer"
},
"publish_status": {
"type": "string"
},
"thumbnail_url": {
"type": [
"string",
"null"
]
},
"url": {
"type": [
"string",
"null"
]
}
},
"required": [
"title"
]
}