Kajabi · Schema

Landing Pages

Schema for Kajabi landing pages

Creator EconomyOnline CoursesMembershipsE-CommerceDigital ProductsContactsWebhooksPayments

Properties

Name Type Description
title string
url string
publish_at stringnull
created_at string ISO 8601 date-time, read only
updated_at string ISO 8601 date-time, read only
View JSON Schema on GitHub

JSON Schema

landing_pages_attributes.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/kajabi/main/json-schema/landing_pages_attributes.json",
  "title": "Landing Pages",
  "description": "Schema for Kajabi landing pages",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "publish_at": {
      "type": [
        "string",
        "null"
      ]
    },
    "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"
    }
  }
}