OBJECT

Company

A collection of namespaces associated with a given company.

link GraphQL Schema definition

  • type Company implements IExtraProperties {
  • # The company ID.
  • id: ID!
  • # The company name.
  • name: String!
  • # The date and time at which the company was created.
  • createdAt: DateTime
  • # The date and time at which the company was last updated.
  • updatedAt: DateTime
  • # A collection of namespaces.
  • namespaces: [Namespace]
  • # A collection of user-defined name-value pairs.
  • extraProperties: [ExtraPropertyCompany]
  • # A collection of security secrets.
  • accessKeys: [AccessKey]
  • # The URL to a TGZ file that contains custom encoder assets.
  • encoderAssetsUrl: String
  • # The custom encoder asset package name.
  • encoderAssetsName: String
  • # The custom encoder asset package vendor.
  • encoderAssetsVendor: String
  • # The custom encoder asset package version.
  • encoderAssetsVersion: String
  • # The authorization header added to the HTTPS request when downloading a custom
  • # encoder asset package.
  • encoderAssetsAuthorization: String
  • # The AES-256 decryption key used to decrypt a custom encoder asset package.
  • encoderAssetsDecryptKey: String
  • }