Norway Open Data SDK
    Preparing search index...

    Type Alias ProfileComponent

    ProfileComponent:
        | {
            cached: boolean;
            operation: ProfileComponentOperation;
            retrievedAt: string;
            section: ProfileComponentSection;
            source: OpenDataSource;
            status: "available";
        }
        | {
            error?: { message: string; name: string };
            operation: ProfileComponentOperation;
            reason: ProfileOmissionReason;
            section: ProfileComponentSection;
            source: OpenDataSource;
            status: "omitted";
        }

    Per-operation provenance and availability for a composed profile.

    Type Declaration