Norway Open Data SDK
    Preparing search index...

    Type Alias Company

    A normalized organization or sub-entity from Enhetsregisteret.

    type Company = {
        bankruptcy?: boolean;
        businessAddress?: NorwegianAddress;
        employerRegistered?: boolean;
        foundedAt?: string;
        homepage?: string;
        industry?: { code: string; description?: string };
        liquidation?: boolean;
        municipality?: { code?: string; name?: string };
        name: string;
        numberOfEmployees?: number;
        organizationForm?: { code: string; description?: string };
        organizationNumber: string;
        postalAddress?: NorwegianAddress;
        registeredAt?: string;
        secondaryIndustries?: { code: string; description?: string }[];
        vatRegistered?: boolean;
    }
    Index
    bankruptcy?: boolean
    businessAddress?: NorwegianAddress
    employerRegistered?: boolean
    foundedAt?: string
    homepage?: string
    industry?: { code: string; description?: string }
    liquidation?: boolean
    municipality?: { code?: string; name?: string }
    name: string
    numberOfEmployees?: number
    organizationForm?: { code: string; description?: string }
    organizationNumber: string
    postalAddress?: NorwegianAddress
    registeredAt?: string
    secondaryIndustries?: { code: string; description?: string }[]
    vatRegistered?: boolean