TypesObjects
CompanyInformationData
No description
type CompanyInformationData {
registeredName: String
legalForm: [String!]!
organisationNumber: [String!]! @deprecated
identifiers: [EntityIdentifier!]!
addresses: [CompanyAddress!]!
industries: [CompanyIndustry!]!
employeeCountFrom: Int
employeeCountTo: Int
businessPurpose: String
status: String
statusLabel: String
financials: CompanyFinancials
lifecycleStatus: [CompanyLifecycleStatus!]!
courtCases: [CourtCase!]!
}Fields
registeredName String scalar
legalForm [String!]! non-null scalar
organisationNumber [String!]! deprecated non-null scalar
DEPRECATED
Use identifiers for typed identifier access (value + country + kind + description).
Flat list of identifier values without type information. Prefer identifiers for typed access — this field is kept for legacy consumers.
identifiers [EntityIdentifier!]! non-null object
[EntityIdentifier!]!
Typed company identifiers split by kind (LEI, registration number, VAT, charity number, etc.).
addresses [CompanyAddress!]! non-null object
industries [CompanyIndustry!]! non-null object
employeeCountFrom Int scalar
employeeCountTo Int scalar
businessPurpose String scalar
status String scalar
statusLabel String scalar
String
Human-readable English label for the status code, resolved from the LifeStatus registry.