Company

(OBJECT)

legal/business entity

link GraphQL Schema definition

  • type Company implements ICompany {
  • # Internal company ID - if registered
  • id: ID
  • # legal registration ID
  • company_id: String!
  • # company's name incl. legal form
  • company_name: String!
  • # set of predefined addresses
  • registered_address: [Address]
  • # e-mail address
  • email: Email!
  • # contact person name
  • name: String
  • # contact person surnme
  • surname: String
  • # contact phone
  • phone: Phone
  • # VAT ID or tax identification number (TIN)
  • # Some countries use one TIN for an entity for both regular tax and VAT
  • # identification.
  • vat_id: String
  • # VAT ID or tax identification number (TIN) #2
  • # Some countries use specific VAT ID number
  • vat_id2: String
  • }