@archastro/sdk
    Preparing search index...

    Interface SolutionCategorySummary

    A solution category that organizes solutions in the catalog, identified by a stable key and optionally nested under a parent category.

    interface SolutionCategorySummary {
        created_at?: string;
        description?: string;
        id: string;
        key: string;
        kind: string;
        lookup_key?: string;
        metadata?: Record<string, unknown>;
        name?: string;
        org?: string;
        owners: string[];
        parent_key?: string;
        sort_order?: number;
        updated_at?: string;
        virtual_path?: string;
    }
    Index

    Properties

    created_at?: string

    When this category was first created (ISO 8601). null for system-built-in categories.

    description?: string

    Short prose description of what solutions in this category do. null when not configured.

    id: string

    Solution category config ID (cfg_...).

    key: string

    Stable, human-readable key for this category, referenced by solutions via category_keys.

    kind: string

    Resource type identifier. Always "SolutionCategory".

    lookup_key?: string

    Lookup key of the underlying config record. null when not set.

    metadata?: Record<string, unknown>

    Arbitrary key-value metadata attached to this category by the publisher.

    name?: string

    Display name shown to users. null when not configured.

    org?: string

    Organization ID (org_...) that owns this category. null for system-scoped categories.

    owners: string[]

    Scopes under which this category is visible. Possible values are "system" (available to all apps) and "org" (scoped to the viewer's organization).

    parent_key?: string

    Key of the parent SolutionCategory, enabling a hierarchy. null for top-level categories.

    sort_order?: number

    Numeric hint for ordering categories in a list. Lower values sort first. null when not configured.

    updated_at?: string

    When this category was last modified (ISO 8601). null for system-built-in categories.

    virtual_path?: string

    Virtual path of the underlying config record. null when not set.