-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathschema-lite.graphql
More file actions
6600 lines (6063 loc) · 191 KB
/
schema-lite.graphql
File metadata and controls
6600 lines (6063 loc) · 191 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
type APM {
"""Endpoint where events are sent."""
endpoint: String!
"""Flag indicating if real user monitoring is enabled."""
rumEnabled: Boolean!
}
type Account {
"""The authorization rules for the entity"""
authorization: Authorization
"""
The base license plan assigned to this Account. Additional entitlements may be added via other means.
"""
baselineLicensePlan: AccountLicensePlan!
"""The date at which the entity was created."""
createdDate: DateTime!
"""The external subscription ID for this Account."""
externalSubscriptionID: String
"""The ID of the entity"""
id: UUID!
"""A type of entity that this Account is being used with."""
type: AccountType
"""The date at which the entity was last updated."""
updatedDate: DateTime!
}
type AccountLicensePlan {
"""The number of Innovation Packs allowed."""
innovationPacks: Int!
"""The number of Free Spaces allowed."""
spaceFree: Int!
"""The number of Plus Spaces allowed."""
spacePlus: Int!
"""The number of Premium Spaces allowed."""
spacePremium: Int!
"""The number of Starting Pages allowed."""
startingPages: Int!
"""The number of Virtual Contributors allowed."""
virtualContributor: Int!
}
enum AccountType {
ORGANIZATION
USER
}
enum ActivityEventType {
CALENDAR_EVENT_CREATED
CALLOUT_LINK_CREATED
CALLOUT_POST_COMMENT
CALLOUT_POST_CREATED
CALLOUT_PUBLISHED
CALLOUT_WHITEBOARD_CONTENT_MODIFIED
CALLOUT_WHITEBOARD_CREATED
DISCUSSION_COMMENT
MEMBER_JOINED
SUBSPACE_CREATED
UPDATE_SENT
}
interface ActivityLogEntry {
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalendarEventCreated implements ActivityLogEntry {
"""The Calendar in which the CalendarEvent was created."""
calendar: Calendar!
"""The CalendarEvent that was created."""
calendarEvent: CalendarEvent!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalloutDiscussionComment implements ActivityLogEntry {
"""The Callout in which the comment was added."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalloutLinkCreated implements ActivityLogEntry {
"""The Callout in which the Link was created."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The Link that was created."""
link: Link!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalloutPostComment implements ActivityLogEntry {
"""The Callout in which the Post was commented."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Post that was commented on."""
post: Post!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalloutPostCreated implements ActivityLogEntry {
"""The Callout in which the Post was created."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Post that was created."""
post: Post!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalloutPublished implements ActivityLogEntry {
"""The Callout that was published."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryCalloutWhiteboardContentModified implements ActivityLogEntry {
"""The Callout in which the Whiteboard was updated."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
"""The Whiteboard that was updated."""
whiteboard: Whiteboard!
}
type ActivityLogEntryCalloutWhiteboardCreated implements ActivityLogEntry {
"""The Callout in which the Whiteboard was created."""
callout: Callout!
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
"""The Whiteboard that was created."""
whiteboard: Whiteboard!
}
type ActivityLogEntryMemberJoined implements ActivityLogEntry {
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The community that was joined."""
community: Community!
"""The Contributor that joined the Community."""
contributor: Contributor!
"""The type of the Contributor that joined the Community."""
contributorType: RoleSetContributorType!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntrySubspaceCreated implements ActivityLogEntry {
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The Subspace that was created."""
subspace: Space!
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
}
type ActivityLogEntryUpdateSent implements ActivityLogEntry {
"""
Indicates if this Activity happened on a child Collaboration. Child results can be included via the "includeChild" parameter.
"""
child: Boolean!
"""
The id of the Collaboration entity within which the Activity was generated.
"""
collaborationID: UUID!
"""The timestamp for the Activity."""
createdDate: DateTime!
"""The text details for this Activity."""
description: String!
id: UUID!
"""The url to the Journey."""
journeyUrl: String!
"""The Message that been sent to this Community."""
message: String!
"""The display name of the parent"""
parentDisplayName: String!
"""The Space where the activity happened"""
space: Space
"""The user that triggered this Activity."""
triggeredBy: User!
"""The event type for this Activity."""
type: ActivityEventType!
"""The Updates for this Community."""
updates: Room!
}
type Agent {
"""The authorization rules for the entity"""
authorization: Authorization
"""The date at which the entity was created."""
createdDate: DateTime!
"""The Credentials held by this Agent."""
credentials: [Credential!]
"""The Decentralized Identifier (DID) for this Agent."""
did: DID
"""The ID of the entity"""
id: UUID!
"""A type of entity that this Agent is being used with."""
type: AgentType!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
"""The Verfied Credentials for this Agent."""
verifiedCredentials: [VerifiedCredential!]
}
type AgentBeginVerifiedCredentialOfferOutput {
"""
The token containing the information about issuer, callback endpoint and the credentials offered
"""
jwt: String!
"""
The QR Code Image to be offered on the client for scanning by a mobile wallet
"""
qrCodeImg: String!
}
type AgentBeginVerifiedCredentialRequestOutput {
"""
The token containing the information about issuer, callback endpoint and the credentials offered
"""
jwt: String!
"""
The QR Code Image to be offered on the client for scanning by a mobile wallet
"""
qrCodeImg: String!
}
enum AgentType {
ACCOUNT
ORGANIZATION
SPACE
USER
VIRTUAL_CONTRIBUTOR
}
type AiPersona {
"""The authorization rules for the entity"""
authorization: Authorization
"""The date when the body of knowledge was last ingested."""
bodyOfKnowledgeLastUpdated: DateTime
"""The date at which the entity was created."""
createdDate: DateTime!
"""The AI Persona Engine being used by this AI Persona."""
engine: AiPersonaEngine!
"""The external configuration for this AI Persona."""
externalConfig: ExternalConfig
"""The ID of the entity"""
id: UUID!
"""The prompt used by this AI Persona"""
prompt: [String!]!
"""The prompt graph for this AI Persona."""
promptGraph: PromptGraph
"""The date at which the entity was last updated."""
updatedDate: DateTime!
}
enum AiPersonaEngine {
COMMUNITY_MANAGER
EXPERT
GENERIC_OPENAI
GUIDANCE
LIBRA_FLOW
OPENAI_ASSISTANT
}
type AiServer {
"""A particular AiPersona"""
aiPersona(ID: UUID!): AiPersona!
"""The AI Personas hosted by this AI Server."""
aiPersonas: [AiPersona!]!
"""The authorization rules for the entity"""
authorization: Authorization
"""The date at which the entity was created."""
createdDate: DateTime!
"""The default AiPersona in use on the aiServer."""
defaultAiPersona: AiPersona!
"""The ID of the entity"""
id: UUID!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
}
type Application {
"""The authorization rules for the entity"""
authorization: Authorization
"""The User for this Application."""
contributor: Contributor!
"""The date at which the entity was created."""
createdDate: DateTime!
"""The ID of the entity"""
id: UUID!
"""Is this lifecycle in a final state (done)."""
isFinalized: Boolean!
lifecycle: Lifecycle!
"""The next events of this Lifecycle."""
nextEvents: [String!]!
"""The Questions for this application."""
questions: [Question!]!
"""The current state of this Lifecycle."""
state: String!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
}
input ApplicationEventInput {
applicationID: UUID!
eventName: String!
}
input ApplyForEntryRoleOnRoleSetInput {
questions: [CreateNVPInput!]!
roleSetID: UUID!
}
input AssignRoleOnRoleSetToOrganizationInput {
contributorID: UUID!
role: RoleName!
roleSetID: UUID!
}
input AssignRoleOnRoleSetToUserInput {
contributorID: UUID!
role: RoleName!
roleSetID: UUID!
}
input AssignRoleOnRoleSetToVirtualContributorInput {
contributorID: UUID!
role: RoleName!
roleSetID: UUID!
}
input AssignUserGroupMemberInput {
groupID: UUID!
userID: UUID!
}
type AuthenticationConfig {
"""Alkemio Authentication Providers Config."""
providers: [AuthenticationProviderConfig!]!
}
type AuthenticationProviderConfig {
"""Configuration of the authentication provider"""
config: AuthenticationProviderConfigUnion!
"""Is the authentication provider enabled?"""
enabled: Boolean!
"""CDN location of an icon of the authentication provider login button."""
icon: String!
"""Label of the authentication provider."""
label: String!
"""Name of the authentication provider."""
name: String!
}
union AuthenticationProviderConfigUnion = OryConfig
enum AuthenticationType {
EMAIL
GITHUB
LINKEDIN
MICROSOFT
UNKNOWN
}
type Authorization {
"""The date at which the entity was created."""
createdDate: DateTime!
"""
The set of credential rules that are contained by this Authorization Policy.
"""
credentialRules: [AuthorizationPolicyRuleCredential!]
"""
Does the current User have the specified privilege based on this Authorization Policy.
"""
hasPrivilege(privilege: AuthorizationPrivilege!): Boolean!
"""The ID of the entity"""
id: UUID!
"""
The privileges granted to the current user based on this Authorization Policy.
"""
myPrivileges: [AuthorizationPrivilege!]
"""
The set of privilege rules that are contained by this Authorization Policy.
"""
privilegeRules: [AuthorizationPolicyRulePrivilege!]
"""A type of entity that this Authorization Policy is being used with."""
type: AuthorizationPolicyType
"""The date at which the entity was last updated."""
updatedDate: DateTime!
"""
The set of verified credential rules that are contained by this Authorization Policy.
"""
verifiedCredentialRules: [AuthorizationPolicyRuleVerifiedCredential!]
}
enum AuthorizationCredential {
ACCOUNT_ADMIN
BETA_TESTER
GLOBAL_ADMIN
GLOBAL_ANONYMOUS
GLOBAL_COMMUNITY_READ
GLOBAL_LICENSE_MANAGER
GLOBAL_PLATFORM_MANAGER
GLOBAL_REGISTERED
GLOBAL_SPACES_READER
GLOBAL_SUPPORT
GLOBAL_SUPPORT_MANAGER
ORGANIZATION_ADMIN
ORGANIZATION_ASSOCIATE
ORGANIZATION_OWNER
SPACE_ADMIN
SPACE_LEAD
SPACE_MEMBER
SPACE_MEMBER_INVITEE
SPACE_SUBSPACE_ADMIN
USER_GROUP_MEMBER
USER_SELF_MANAGEMENT
VC_CAMPAIGN
}
type AuthorizationPolicyRuleCredential {
cascade: Boolean!
criterias: [CredentialDefinition!]!
grantedPrivileges: [AuthorizationPrivilege!]!
name: String
}
type AuthorizationPolicyRulePrivilege {
grantedPrivileges: [AuthorizationPrivilege!]!
name: String
sourcePrivilege: AuthorizationPrivilege!
}
type AuthorizationPolicyRuleVerifiedCredential {
claimRule: String!
credentialName: String!
grantedPrivileges: [AuthorizationPrivilege!]!
}
enum AuthorizationPolicyType {
ACCOUNT
AGENT
AI_PERSONA
AI_SERVER
APPLICATION
CALENDAR
CALENDAR_EVENT
CALLOUT
CALLOUTS_SET
CALLOUT_CONTRIBUTION
CALLOUT_FRAMING
CLASSIFICATION
COLLABORATION
COMMUNICATION
COMMUNITY
COMMUNITY_GUIDELINES
DISCUSSION
DOCUMENT
FORUM
INNOVATION_FLOW
INNOVATION_FLOW_STATE
INNOVATION_HUB
INNOVATION_PACK
INVITATION
IN_MEMORY
KNOWLEDGE_BASE
LIBRARY
LICENSE
LICENSE_POLICY
LICENSING
LINK
MEMO
ORGANIZATION
ORGANIZATION_VERIFICATION
PLATFORM
POST
PROFILE
REFERENCE
ROLE_SET
ROOM
SPACE
SPACE_ABOUT
STORAGE_AGGREGATOR
STORAGE_BUCKET
TAGSET
TEMPLATE
TEMPLATES_MANAGER
TEMPLATES_SET
TEMPLATE_CONTENT_SPACE
TEMPLATE_DEFAULT
TIMELINE
UNKNOWN
USER
USER_GROUP
USER_SETTINGS
VIRTUAL_CONTRIBUTOR
VISUAL
WHITEBOARD
}
enum AuthorizationPrivilege {
ACCESS_INTERACTIVE_GUIDANCE
ACCOUNT_LICENSE_MANAGE
AUTHORIZATION_RESET
COMMUNITY_ASSIGN_VC_FROM_ACCOUNT
CONTRIBUTE
CREATE
CREATE_CALLOUT
CREATE_DISCUSSION
CREATE_INNOVATION_HUB
CREATE_INNOVATION_PACK
CREATE_MESSAGE
CREATE_MESSAGE_REACTION
CREATE_MESSAGE_REPLY
CREATE_ORGANIZATION
CREATE_POST
CREATE_SPACE
CREATE_SUBSPACE
CREATE_VIRTUAL_CONTRIBUTOR
CREATE_WHITEBOARD
DELETE
FILE_DELETE
FILE_UPLOAD
GRANT
GRANT_GLOBAL_ADMINS
LICENSE_RESET
MOVE_CONTRIBUTION
MOVE_POST
PLATFORM_ADMIN
PLATFORM_SETTINGS_ADMIN
READ
READ_ABOUT
READ_LICENSE
READ_USERS
READ_USER_PII
READ_USER_SETTINGS
RECEIVE_NOTIFICATIONS
RECEIVE_NOTIFICATIONS_ADMIN
RECEIVE_NOTIFICATIONS_IN_APP
RECEIVE_NOTIFICATIONS_ORGANIZATION_ADMIN
RECEIVE_NOTIFICATIONS_SPACE_ADMIN
RECEIVE_NOTIFICATIONS_SPACE_LEAD
ROLESET_ENTRY_ROLE_APPLY
ROLESET_ENTRY_ROLE_ASSIGN
ROLESET_ENTRY_ROLE_ASSIGN_ORGANIZATION
ROLESET_ENTRY_ROLE_INVITE
ROLESET_ENTRY_ROLE_INVITE_ACCEPT
ROLESET_ENTRY_ROLE_JOIN
TRANSFER_RESOURCE_ACCEPT
TRANSFER_RESOURCE_OFFER
UPDATE
UPDATE_CALLOUT_PUBLISHER
UPDATE_CONTENT
UPDATE_INNOVATION_FLOW
}
type Calendar {
"""The authorization rules for the entity"""
authorization: Authorization
"""The date at which the entity was created."""
createdDate: DateTime!
"""A single CalendarEvent"""
event(
"""The ID of the CalendarEvent"""
ID: UUID!
): CalendarEvent
"""The list of CalendarEvents for this Calendar."""
events: [CalendarEvent!]!
"""The ID of the entity"""
id: UUID!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
}
type CalendarEvent {
"""The authorization rules for the entity"""
authorization: Authorization
"""The comments for this CalendarEvent"""
comments: Room!
"""The user that created this CalendarEvent"""
createdBy: User
"""The date at which the entity was created."""
createdDate: DateTime!
"""The length of the event in days."""
durationDays: Float
"""The length of the event in minutes."""
durationMinutes: Float!
"""The ID of the entity"""
id: UUID!
"""Flag to indicate if this event is for multiple days."""
multipleDays: Boolean!
"""A name identifier of the entity, unique within a given scope."""
nameID: NameID!
"""The Profile for this Post."""
profile: Profile!
"""The start time for this CalendarEvent."""
startDate: DateTime
"""
Which Subspace is this event part of. Only applicable if the Space has this option enabled.
"""
subspace: Space
"""The event type, e.g. webinar, meetup etc."""
type: CalendarEventType!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
"""Is the event visible on the parent calendar."""
visibleOnParentCalendar: Boolean!
"""Flag to indicate if this event is for a whole day."""
wholeDay: Boolean!
}
enum CalendarEventType {
DEADLINE
EVENT
MEETING
MILESTONE
OTHER
TRAINING
}
type Callout {
"""
The activity for this Callout. The number of Contributions if the callout allows contributions, or the number of comments if it does not.
"""
activity: Float!
"""The authorization rules for the entity"""
authorization: Authorization
"""The comments for this Callout."""
classification: Classification
"""The comments for this Callout."""
comments: Room
"""The Contribution Defaults for this Callout."""
contributionDefaults: CalloutContributionDefaults!
"""The Contributions that have been made to this Callout."""
contributions(
"""Filter to apply to the Contributions returned."""
filter: ContributionsFilterInput
"""
The number of Contributions to return; if omitted return all Contributions.
"""
limit: Int
"""
If true and limit is specified then return the Contributions based on a random selection. Defaults to false.
"""
shuffle: Boolean
): [CalloutContribution!]!
"""The Contributions that have been made to this Callout."""
contributionsCount: CalloutContributionsCountOutput!
"""Experimental duplicate of contributionsCount for contract testing."""
contributionsCount2: CalloutContributionsCountOutput!
"""The user that created this Callout"""
createdBy: User
"""The date at which the entity was created."""
createdDate: DateTime!
"""The Callout Framing associated with this Callout."""
framing: CalloutFraming!
"""The ID of the entity"""
id: UUID!
"""Whether this callout is a Template or not."""
isTemplate: Boolean!
"""A name identifier of the entity, unique within a given scope."""
nameID: NameID!
"""The Posts associated with this Callout."""
posts: [Post!]
"""The user that published this Callout"""
publishedBy: User
"""The date and time when this Callout was published."""
publishedDate: DateTime
"""The Callout Settings associated with this Callout."""
settings: CalloutSettings!
"""The sorting order for this Callout."""
sortOrder: Float!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
}
enum CalloutAllowedContributors {
ADMINS
MEMBERS
NONE
}
type CalloutContribution {
"""The authorization rules for the entity"""
authorization: Authorization
"""The user that created this Document"""
createdBy: User
"""The date at which the entity was created."""
createdDate: DateTime!
"""The ID of the entity"""
id: UUID!
"""The Link that was contributed."""
link: Link
"""The Post that was contributed."""
post: Post
"""The sorting order for this Contribution."""
sortOrder: Float!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
"""The Whiteboard that was contributed."""
whiteboard: Whiteboard
}
type CalloutContributionDefaults {
"""The date at which the entity was created."""
createdDate: DateTime!
"""The default title to use for new contributions."""
defaultDisplayName: String
"""The ID of the entity"""
id: UUID!
"""The default description to use for new contributions."""
postDescription: Markdown
"""The date at which the entity was last updated."""
updatedDate: DateTime!
"""The default whiteboard content for whiteboard responses."""
whiteboardContent: WhiteboardContent
}
enum CalloutContributionType {
LINK
MEMO
POST
WHITEBOARD
}
type CalloutContributionsCountOutput {
"""The number of contributions of type Link in this callout"""
link: Float!
"""The number of contributions of type Memo in this callout"""
memo: Float!
"""The number of contributions of type Post in this callout"""
post: Float!
"""The number of contributions of type Whiteboard in this callout"""
whiteboard: Float!
}
type CalloutFraming {
"""The authorization rules for the entity"""
authorization: Authorization
"""The date at which the entity was created."""
createdDate: DateTime!
"""The ID of the entity"""
id: UUID!
"""The Link for framing the associated Callout."""
link: Link
"""The Memo for framing the associated Callout."""
memo: Memo
"""The Profile for framing the associated Callout."""
profile: Profile!
"""
The type of the Callout Framing, the additional content attached to this callout
"""
type: CalloutFramingType!
"""The date at which the entity was last updated."""
updatedDate: DateTime!
"""The Whiteboard for framing the associated Callout."""
whiteboard: Whiteboard
}
enum CalloutFramingType {
LINK
MEMO
NONE
WHITEBOARD
}
type CalloutPostCreated {
"""The identifier of the Callout on which the post was created."""
calloutID: String!
"""The identifier of the Contribution."""
contributionID: String!
"""The Post that has been created."""
post: Post!
"""The sorting order for this Contribution."""
sortOrder: Float!
}
type CalloutSettings {
"""Callout Contribution Settings."""
contribution: CalloutSettingsContribution!
"""Callout Framing Settings."""
framing: CalloutSettingsFraming!
"""Callout Visibility."""
visibility: CalloutVisibility!
}
type CalloutSettingsContribution {
"""The allowed contribution types for this callout."""
allowedTypes: [CalloutContributionType!]!
"""Indicate who can add more contributions to the callout."""
canAddContributions: CalloutAllowedContributors!
"""Can comment to contributions callout."""
commentsEnabled: Boolean!
"""
Can add contributions to the Callout. Allowed Contribution types is going to be readOnly, so this field can be used to enable or disable the contribution temporarily instead of setting allowedTypes to None.