Creating Plot Twists
    Preparing search index...

    Type Alias JSONValue

    JSONValue:
        | string
        | number
        | boolean
        | null
        | { [key: string]: JSONValue }
        | JSONValue[]

    Represents a valid JSON value.

    This type ensures type safety for data that needs to be serialized to JSON, such as metadata fields, webhook payloads, and stored data.

    const meta: JSONValue = {
    name: "Example",
    count: 42,
    tags: ["foo", "bar"],
    nested: { value: true }
    };