@archastro/sdk
    Preparing search index...

    Variable automationRunSchemaConst

    automationRunSchema: ZodObject<
        {
            app: ZodString;
            automation: ZodString;
            created_at: ZodOptional<ZodString>;
            event_id: ZodOptional<ZodString>;
            id: ZodString;
            participants: ZodOptional<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
            payload: ZodOptional<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
            result: ZodOptional<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
            status: ZodString;
            team: ZodOptional<ZodString>;
            updated_at: ZodOptional<ZodString>;
            user: ZodOptional<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            app: string;
            automation: string;
            created_at?: string;
            event_id?: string;
            id: string;
            participants?: Record<string, {} | null>;
            payload?: Record<string, {} | null>;
            result?: Record<string, {} | null>;
            status: string;
            team?: string;
            updated_at?: string;
            user?: string;
        },
        {
            app: string;
            automation: string;
            created_at?: string;
            event_id?: string;
            id: string;
            participants?: Record<string, {} | null>;
            payload?: Record<string, {} | null>;
            result?: Record<string, {} | null>;
            status: string;
            team?: string;
            updated_at?: string;
            user?: string;
        },
    > = ...

    Runtime validator for AutomationRun.