@archastro/sdk
    Preparing search index...

    Variable configVersionSchemaConst

    configVersionSchema: ZodObject<
        {
            change_description: ZodOptional<ZodString>;
            content_hash: ZodOptional<ZodString>;
            created_at: ZodOptional<ZodString>;
            data: ZodOptional<ZodRecord<ZodString, ZodUnknown>>;
            id: ZodString;
            org: ZodOptional<ZodString>;
            sandbox: ZodOptional<ZodString>;
            version_number: ZodNumber;
        },
        "strip",
        ZodTypeAny,
        {
            change_description?: string;
            content_hash?: string;
            created_at?: string;
            data?: Record<string, unknown>;
            id: string;
            org?: string;
            sandbox?: string;
            version_number: number;
        },
        {
            change_description?: string;
            content_hash?: string;
            created_at?: string;
            data?: Record<string, unknown>;
            id: string;
            org?: string;
            sandbox?: string;
            version_number: number;
        },
    > = ...

    Runtime validator for ConfigVersion.