Norway Open Data SDK
    Preparing search index...

    Type Alias CompanyProfile

    Combined company information with an optional official coordinate match.

    type CompanyProfile = {
        company: Company;
        components?: ProfileComponent[];
        location?: {
            address: NorwegianAddress;
            matchConfidence: "exact" | "high" | "possible";
        };
    }
    Index
    company: Company
    components?: ProfileComponent[]

    Provenance and availability for each component operation.

    location?: {
        address: NorwegianAddress;
        matchConfidence: "exact" | "high" | "possible";
    }