Kajabi · Schema

Offers

Schema for Kajabi offers

Creator EconomyOnline CoursesMembershipsE-CommerceDigital ProductsContactsWebhooksPayments

Properties

Name Type Description
title string
description stringnull
internal_title stringnull
currency string
price_in_cents integer
payment_type string
token string
payment_method string
price_description string
checkout_url string
recurring_offer boolean
subscription boolean
one_time boolean
single boolean
free boolean
image_url stringnull
View JSON Schema on GitHub

JSON Schema

offers_attributes.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/kajabi/main/json-schema/offers_attributes.json",
  "title": "Offers",
  "description": "Schema for Kajabi offers",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "internal_title": {
      "type": [
        "string",
        "null"
      ]
    },
    "currency": {
      "type": "string"
    },
    "price_in_cents": {
      "type": "integer"
    },
    "payment_type": {
      "type": "string"
    },
    "token": {
      "type": "string"
    },
    "payment_method": {
      "type": "string"
    },
    "price_description": {
      "type": "string"
    },
    "checkout_url": {
      "type": "string"
    },
    "recurring_offer": {
      "type": "boolean"
    },
    "subscription": {
      "type": "boolean"
    },
    "one_time": {
      "type": "boolean"
    },
    "single": {
      "type": "boolean"
    },
    "free": {
      "type": "boolean"
    },
    "image_url": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "title"
  ]
}