DistributedLicense
A license that has been distributed to a company. This includes the seat count and expiration date of the distributed license, as well as the users assigned to it.
type DistributedLicense {
  id: Int!
  licenseName: String!
  description: String
  schemaName: String!
  seatCount: Int!
  assignedCount: Int!
  expireDate: DateTimeISOString!
  userIds: [String!]!
  label: String
}
Fields
DistributedLicense.id ● Int! non-null scalar
The ID of the distributed license @exposed
DistributedLicense.licenseName ● String! non-null scalar
The name of the license from which the distributed license is created @exposed
DistributedLicense.description ● String scalar
The description of the license from which the distributed license is created @exposed
DistributedLicense.schemaName ● String! non-null scalar
The schema name of the license from which the distributed license is created @exposed
DistributedLicense.seatCount ● Int! non-null scalar
The capacity for the distributed license. It indicates how many users can be added to the distributed license @exposed
DistributedLicense.assignedCount ● Int! non-null scalar
The number of users assigned to the distributed license @exposed
DistributedLicense.expireDate ● DateTimeISOString! non-null scalar
The expiration date of the distributed license in the ISO format, e.g., 2024-11-11T11:30:25.000Z @exposed
DistributedLicense.userIds ● [String!]! non-null scalar
The IDs of the users that are added to the distributed license @exposed
DistributedLicense.label ● String scalar
The label of the distributed license @exposed
Returned by
AdminMutation__assignUsersToDistributedLicenseV2  mutation ● AdminMutation__removeUsersFromDistributedLicenseV2  mutation
Member of
AdminData  object ● AdminMutation  object ● CompanyUser  object