Skip to main content

Documentation Index

Fetch the complete documentation index at: https://statsig-4b2ff144-devin-1760982871-add-search-ask-ai.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Dynamic configs support schemas using JSON Schema syntax to enforce a common convention between the return values for each rule you’ll set.
Schemas are only enforced when editing dynamic configs through the console or API, and are not used at code runtime.
For example, if you have a dynamic config that returns settings for a site banner, you might have a schema of:
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
    },
    "description": {
      "type": "string",
    },
    "cta": {
      "type": "string",
    }
  },
  "required": ["title", "description", "cta"],
}
Now, each of your rules must return an object including title, description, and CTA.