contentstack · Schema

BrandKit

A Brand Kit containing centralized brand identity assets and AI configuration.

Properties

Name Type Description
uid string Unique identifier of the Brand Kit.
name string Display name of the Brand Kit.
description string Description of the Brand Kit's purpose and scope.
organization_uid string UID of the organization that owns the Brand Kit.
created_at string ISO 8601 timestamp when the Brand Kit was created.
updated_at string ISO 8601 timestamp when the Brand Kit was last updated.
View JSON Schema on GitHub

JSON Schema

contentstack-brandkit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandKit",
  "title": "BrandKit",
  "type": "object",
  "description": "A Brand Kit containing centralized brand identity assets and AI configuration.",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Unique identifier of the Brand Kit."
    },
    "name": {
      "type": "string",
      "description": "Display name of the Brand Kit."
    },
    "description": {
      "type": "string",
      "description": "Description of the Brand Kit's purpose and scope."
    },
    "organization_uid": {
      "type": "string",
      "description": "UID of the organization that owns the Brand Kit."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the Brand Kit was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the Brand Kit was last updated."
    }
  }
}