ICompany
(INTERFACE)
default dataset specifying a company
link GraphQL Schema definition
- interface ICompany {
- # Internal company ID - if registered
- : ID
- # legal registration ID
- : String!
- # company name incl. legal form
- : String
- # company email
- : Email
- # VAT ID or tax identification number (TIN)
- # Some countries use one TIN for an entity for both regular tax and VAT
- # identification.
- : String
- # VAT ID or tax identification number (TIN) #2
- # Some countries use specific VAT ID number
- : String
- }