INPUT_OBJECT

CreateOrganization

link GraphQL Schema definition

1input CreateOrganization {
5
2# A unique identifier will be generated by default.
3# This property should only be defined manually when cloning between instances.
4guid: ID
7
6name: String!
9
8applications: JSONData
12
10# Metadata in JSON format.
11metadata: JSONData!
14
13adminSeatLimit: Int
16
15seatLimit: Int
18
17status: OrganizationStatus
20
19maxAiwareNodes: Int
22
21maxAiwareClusters: Int
24
23businessUnit: String!
26
25integrations: JSONData
28
27types: [OrganizationType]
32
29# The budget remaining for organization (cents)
30# Only superadmin can set this value
31remainingBudget: Int
36
33# Enable/disable the limit enforced for organization
34# Only superadmin can set this value
35isLimitEnforced: Boolean
39
37# For HUB to use
38isHubManaged: Boolean
43
40# Enable and configure or disable the custom login page for the organization.
41# Default is disabled.
42loginConfiguration: SetLoginConfiguration
44}