BusinessLookup
The details of a business.
type BusinessLookup {
name: String!
registration: BusinessRegistration!
registrationDate: Date
directors: [Director!]
businessAddress: Address
businessStatus: BusinessStatus
}
Fields
BusinessLookup.name ● String! non-null scalar
The name of the business.
BusinessLookup.registration ● BusinessRegistration! non-null object
Registration number and country of the business.
BusinessLookup.registrationDate ● Date scalar
The date the business was registered.
BusinessLookup.directors ● [Director!] list object
The directors of the business, if available. Only givenName and familyName fields will be returned.
BusinessLookup.businessAddress ● Address object
The physical address of the business.
BusinessLookup.businessStatus ● BusinessStatus enum
The registration status of the business.