-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbse-metamodel.graphql
3177 lines (2939 loc) · 77.9 KB
/
mbse-metamodel.graphql
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
schema {
query: Query
mutation: Mutation
}
type Query {
"""
List of Projects
"""
cpsProjectsQuery: ProjectsResponse
"""
System Model for: 'Essentials' Facility
"""
cpsSystemModelQuery(projectId: ID!): CPSsystemModelResponse
}
type ProjectsResponse {
status: ResponseStatus
projects: [Project]
}
type CPSsystemModelResponse
{
status: ResponseStatus
cpsSystemModel: CPSsystemModel
}
type CPSsystemModel {
"""
The project identity.
"""
project: Project
"""
A component is an abstract term that represents the physical or logical entity
that performs a specific function or functions.
"""
component: [Component]
"""
A document identifies either the source/authorization for information entered
into the system description database, a specification/document generated from
the contents of the database, or an applicable or reference document for a
specification/document generated from the contents of the database.
"""
document: [Document]
"""
A Function is a transformation that accepts one or more inputs (items) and
transforms them into outputs (items).
"""
function: [Function]
"""
Items represent flows within and between functions. An item is an input to or an
output from a function.
"""
item: [Item]
"""
A link is the physical implementation of an interface.
"""
link: [Link]
"""
An organization identifies an individual or organizational unit.
"""
organization: [Organization]
"""
A Requirement is either an originating requirement extracted from source
documentation for a system, a refinement of a higher-level requirement, a
derived characteristic of the system or one of its subcomponents, or a design
decision.
"""
requirement: [Requirement]
"""
A Risk is the uncertainty of attaining or achieving a product or program
milestone. It is described by a combination of the probability that the risk
event will occur and the consequence of the extent of loss from the occurrence,
or impact. Risk is an inherent part of all activities, whether the activity is
simple and small, or large and complex.
"""
risk: [Risk]
"""
A use case entity identifies a piece of the functionality of a system in terms
of how the users use the system to achieve their goals. Use cases are high-level
descriptions of behavior under a specific set of conditions. These high-level
descriptions can then be elaborated to define the system behavior.
"""
useCase: [UseCase]
"""
A VerificationRequirement describes what is to be proved (i.e., requirements),
at what level the verification will occur, which method of verification should
be used, and the current verification status.
"""
verificationRequirement: [VerificationRequirement]
"""
recursive call structure (select, parallel, loop, etc.) for each function
"""
callStructure: [CallStructure]
}
type Mutation {
"""
Mutate Project
"""
cpsProjectMutation(project: Project_Input): ProjectResponse
"""
Mutate CPS System Model
"""
cpsSystemModelMutation(projectId: ID!, cpsSystemModel: CPSsystemModel_Input): CPSsystemModelResponse
}
type ProjectResponse {
status: ResponseStatus
project: Project
}
input CPSsystemModel_Input {
component: [Component_Input]
document: [Document_Input]
function: [Function_Input]
item: [Item_Input]
link: [Link_Input]
organization: [Organization_Input]
requirement: [Requirement_Input]
risk: [Risk_Input]
useCase: [UseCase_Input]
verificationRequirement: [VerificationRequirement_Input]
}
#########################################
# Common Definitions
#########################################
type ResponseStatus {
code: ResponseCode
message: String
}
enum ResponseCode
{
Success
FailureNotFound
FailureNotUnique
FailureGeneral
}
type Project {
id: ID!
name: String!
description: String
version: String
}
# for mutations
input Project_Input {
operation: MutationOperation!
id: ID # autogenerated on Create, required for Update / Delete
name: String!
description: String
version: String
}
type Parameter {
name: String!
description: String
objective: String
threshold: String
design: String
observed: String
units: String
}
input Parameter_Input {
operation: MutationOperation!
name: String!
description: String
objective: String
threshold: String
design: String
observed: String
units: String
}
"""
Mutations for List items of an Entity (Parameters, Relations) include an 'instance' operation.
NOTE: when 'creating' an Entity, all associated List item instances must be set to 'Create'
when 'updating' an Entity, only include associated List items to be 'Created', 'Updated', or 'Deleted'
when 'deleting' an Entity, all associated List items are automatically deleted
"""
enum MutationOperation
{
Create
Update
Delete
}
#########################################
# Component definition
#########################################
type Component {
identity: ComponentID!
attributes: ComponentATTR
parameters: [Parameter]
relations: ComponentREL
}
# for mutations
input Component_Input {
operation: MutationOperation!
identity: ComponentID_Input!
attributes: ComponentATTR_Input
parameters: [Parameter_Input]
relations: ComponentREL_Input
}
type ComponentID {
id: ID!
name: String!
number: String!
}
# for mutations
input ComponentID_Input {
id: ID # autogenerated on Create, required for Update / Delete
name: String!
number: String!
}
type ComponentATTR {
"""
Type identifies the component's role in the component hierarchy.
"""
type: ComponentType
"""
Contract Line Item Number is a reference to the contract's identification for
the specific items and services requiring separate pricing.
"""
clin: String
"""
Mission is the text description of the business purpose of a system.
"""
mission: String
"""
Operations describe synchronous interactions where the requestor waits for the
request to be handled. This attribute identifies a subset of the allocated
behavior that is critical to highlight on SysML representations.
"""
operations: [String]
"""
Doc. PUID is the project unique identifier that is often used in system
development specifications and documents to identify the same entity in multiple
documents. This is not to be confused with the database entity unique
identifier.
"""
puid: String
"""
Purpose is a brief statement of the reason for the existence of the entity.
"""
purpose: String
"""
Receptions describe asynchronous interactions where the requestor can continue
without waiting for a reply. This attribute identifies a subset of the allocated
behavior that is critical to highlight on SysML representations.
"""
receptions: [String]
"""
Abbreviation identifies a unique shortened name for the entity.
"""
abbreviation: String
"""
Title is the label to be used in formal documentation instead of the entity
name.
"""
title: String
"""
Description is the written statement of this entity.
"""
description: String
}
enum ComponentType {
nil
Assembly
Context
CSC
CSCI
CSU
Element
Environment
External_System
Facility
Family_of_Systems
Human
HW_Element
HWCI
Network
Part
Segment
Service
Software_Item
Subassembly
Subsystem
SW_Element
SWCI
System
System_Architecture
System_of_Systems
Test_Equipment
Test_Software
}
# for mutations
input ComponentATTR_Input {
type: ComponentType
clin: String
mission: String
operations: [String]
puid: String
purpose: String
receptions: [String]
abbreviation: String
title: String
description: String
}
type ComponentREL {
"""
Assigned to identifies a source entity being overseen or controlled by the
target entity.
"""
assignedTo: [Component_AssignedToTarget]
"""
Built from identifies the entities (children) that make up this entity (the
parent).
"""
builtFrom: [Component_BuiltFromTarget]
"""
Built in identifies the parent entity for which this entity is a part.
"""
builtIn: [Component_BuiltInTarget]
"""
Causes identifies the technical or programmatic risk resulting from this entity.
"""
causes: [Component_CausesTarget]
"""
Connected to identifies the connection that serves to link this unit to another
entity.
"""
connectedTo: [Component_ConnectedToTarget]
"""
Described by identifies the use cases that reflect how the users will use this
entity to achieve their physical objectives.
"""
describedBy: [Component_DescribedByTarget]
"""
Documented by identifies the source document which specifies and/or enhances the
definition of this entity.
"""
documentedBy: [Component_DocumentedByTarget]
"""
Generalization of associates a specific object classification with a more
general object classification. For example, "Vehicle" is a generalization of
"Car," "Train," and "Plane."
"""
generalizationOf: [Component_GeneralizationOfTarget]
"""
Impacted by identifies the entity that is affected by the risk.
"""
impactedBy: [Component_ImpactedByTarget]
"""
Kind of indicates classification. This relationship is often referred to as the
"is a" relationship (i.e., a car "is a" vehicle).
"""
kindOf: [Component_KindOfTarget]
"""
Participates in identifies the use cases that this actor supports.
"""
participatesIn: [Component_ParticipatesInTarget]
"""
Performs identifies the actions that this entity accomplishes.
"""
performs: [Component_PerformsTarget]
"""
Reported by identifies the documentation entity of which the entity is the
primary subject.
"""
reportedBy: [Component_ReportedByTarget]
"""
Specified by identifies constraint and/or performance requirements that this
entity must satisfy.
"""
specifiedBy: [Component_SpecifiedByTarget]
"""
Verified by points to the method of requirement proof which specifies the
verification technique, level, and status.
"""
verifiedBy: [Component_VerifiedByTarget]
}
# for mutations
input ComponentREL_Input {
assignedTo: [Component_AssignedToTarget_Input]
builtFrom: [Component_BuiltFromTarget_Input]
builtIn: [Component_BuiltInTarget_Input]
causes: [Component_CausesTarget_Input]
connectedTo: [Component_ConnectedToTarget_Input]
describedBy: [Component_DescribedByTarget_Input]
documentedBy: [Component_DocumentedByTarget_Input]
generalizationOf: [Component_GeneralizationOfTarget_Input]
impactedBy: [Component_ImpactedByTarget_Input]
kindOf: [Component_KindOfTarget_Input]
participatesIn: [Component_ParticipatesInTarget_Input]
performs: [Component_PerformsTarget_Input]
reportedBy: [Component_ReportedByTarget_Input]
specifiedBy: [Component_SpecifiedByTarget_Input]
verifiedBy: [Component_VerifiedByTarget_Input]
}
type Component_AssignedToTarget {
organizationTarget: OrganizationID
}
type Component_BuiltFromTarget {
componentTarget: ComponentID
"""
Whole Multiplicity indicates if the component is distinct and separable
(wholeMultiplicity = 0; also termed composition) or whether the component is
distinct and not separable (wholeMultiplicity = 1; also termed aggregation).
"""
wholeMultiplicity: Component_BuiltFromWholeMultiplicity
"""
PartRole is the name of the role that the part plays in the whole.
"""
partRole: String
"""
PartMultiplicity is the potential number of instances of the part built in the
whole. This can be specified as zero, a whole number, or a range from a lower
bound to an upper bound.
"""
partMultiplicity: String
}
enum Component_BuiltFromWholeMultiplicity {
E_0
E_1
}
type Component_BuiltInTarget {
componentTarget: ComponentID
"""
Whole Multiplicity indicates if the component is distinct and separable
(wholeMultiplicity = 0; also termed composition) or whether the component is
distinct and not separable (wholeMultiplicity = 1; also termed aggregation).
"""
wholeMultiplicity: Component_BuiltInWholeMultiplicity
"""
PartRole is the name of the role that the part plays in the whole.
"""
partRole: String
"""
PartMultiplicity is the potential number of instances of the part built in the
whole. This can be specified as zero, a whole number, or a range from a lower
bound to an upper bound.
"""
partMultiplicity: String
}
enum Component_BuiltInWholeMultiplicity {
E_0
E_1
}
type Component_CausesTarget {
riskTarget: RiskID
}
type Component_ConnectedToTarget {
linkTarget: LinkID
"""
Port ID provides a unique identification for the port that is used between the
Link and the Component.
"""
portID: String
}
type Component_DescribedByTarget {
useCaseTarget: UseCaseID
}
type Component_DocumentedByTarget {
documentTarget: DocumentID
}
type Component_GeneralizationOfTarget {
componentTarget: ComponentID
"""
Type classifies the nature of the generalization / specialization relationship.
Inheritance indicates that the specialization shares the properties of the
generalization. Instance indicates that the specialization also shares the
relationships of the generalization.
"""
type: Component_GeneralizationOfType
}
enum Component_GeneralizationOfType {
Inheritance
Instance
}
type Component_ImpactedByTarget {
riskTarget: RiskID
}
type Component_KindOfTarget {
componentTarget: ComponentID
"""
Type classifies the nature of the generalization / specialization relationship.
Inheritance indicates that the specialization shares the properties of the
generalization. Instance indicates that the specialization also shares the
relationships of the generalization.
"""
type: Component_KindOfType
}
enum Component_KindOfType {
Inheritance
Instance
}
type Component_ParticipatesInTarget {
useCaseTarget: UseCaseID
}
type Component_PerformsTarget {
functionTarget: FunctionID
"""
Behavior Type classifies the mapping of the processing unit to the
implementation unit.
"""
behaviorType: Component_PerformsBehaviorType
}
enum Component_PerformsBehaviorType {
Atomic
Integrated_Root
Thread
}
type Component_ReportedByTarget {
documentTarget: DocumentID
}
type Component_SpecifiedByTarget {
requirementTarget: RequirementID
"""
The Governs relationship attribute identifies the Parameter attribute that is
associated in both the Requirement entity and Component entity joined by the
specified by / specifies relationship.
"""
governs: String
}
type Component_VerifiedByTarget {
verificationRequirementTarget: VerificationRequirementID
}
# for mutations
input Component_AssignedToTarget_Input {
operation: MutationOperation!
organizationTarget: OrganizationID_Input
}
input Component_BuiltFromTarget_Input {
operation: MutationOperation!
componentTarget: ComponentID_Input
wholeMultiplicity: Component_BuiltFromWholeMultiplicity
partRole: String
partMultiplicity: String
}
input Component_BuiltInTarget_Input {
operation: MutationOperation!
componentTarget: ComponentID_Input
wholeMultiplicity: Component_BuiltInWholeMultiplicity
partRole: String
partMultiplicity: String
}
input Component_CausesTarget_Input {
operation: MutationOperation!
riskTarget: RiskID_Input
}
input Component_ConnectedToTarget_Input {
operation: MutationOperation!
linkTarget: LinkID_Input
portID: String
}
input Component_DescribedByTarget_Input {
operation: MutationOperation!
useCaseTarget: UseCaseID_Input
}
input Component_DocumentedByTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Component_GeneralizationOfTarget_Input {
operation: MutationOperation!
componentTarget: ComponentID_Input
type: Component_GeneralizationOfType
}
input Component_ImpactedByTarget_Input {
operation: MutationOperation!
riskTarget: RiskID_Input
}
input Component_KindOfTarget_Input {
operation: MutationOperation!
componentTarget: ComponentID_Input
type: Component_KindOfType
}
input Component_ParticipatesInTarget_Input {
operation: MutationOperation!
useCaseTarget: UseCaseID_Input
}
input Component_PerformsTarget_Input {
operation: MutationOperation!
functionTarget: FunctionID_Input
behaviorType: Component_PerformsBehaviorType
}
input Component_ReportedByTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Component_SpecifiedByTarget_Input {
operation: MutationOperation!
requirementTarget: RequirementID_Input
governs: String
}
input Component_VerifiedByTarget_Input {
operation: MutationOperation!
verificationRequirementTarget: VerificationRequirementID_Input
}
#########################################
# Document definition
#########################################
type Document {
identity: DocumentID!
attributes: DocumentATTR
parameters: [Parameter]
relations: DocumentREL
}
# for mutations
input Document_Input {
operation: MutationOperation!
identity: DocumentID_Input!
attributes: DocumentATTR_Input
parameters: [Parameter_Input]
relations: DocumentREL_Input
}
type DocumentID {
id: ID!
name: String!
number: String!
}
# for mutations
input DocumentID_Input {
id: ID # autogenerated on Create, required for Update / Delete
name: String!
number: String!
}
type DocumentATTR {
"""
Document Date is the document's publication date.
"""
documentDate: String
"""
Non-Govt. Category specifies the heading for non-government applicable
documents. For example, SPECIFICATIONS is a heading under which this reference
document will be listed.
"""
nonGovernmentCategory: DocumentNonGovernmentCategory
"""
Contract Line Item Number is a reference to the contract's identification for
the specific items and services requiring separate pricing.
"""
clin: String
"""
External File Path contains the external file reference in either standard
(c:/myDirectory/mySubDirectory/filename) or UNC (//Server/directory/filename)
format.
"""
externalFilePath: String
"""
Document Number is the reference number assigned to the document.
"""
documentNumber: String
"""
Title is the label to be used for the document title instead of one derived by
the script when generating a document from the database.
"""
title: String
"""
Contains a full summarization of the system's capabilities, functions, or
features within this document.
"""
identification: String
"""
Govt. Category specifies the headings/subheadings for government applicable
documents. For example, SPECIFICATIONS is a heading and Military is the
subheading under which this reference document will be listed.
"""
governmentCategory: DocumentGovernmentCategory
"""
Provides a value representing the current level of cumulative document changes.
"""
revisionNumber: String
"""
CDRL Number is the contract deliverable identifier for the document.
"""
cdrlNumber: String
"""
Summarizes the purpose and contents of this document and also describes any
security or privacy considerations associated with its use.
"""
documentOverview: String
"""
Doc. Report designates which formal documentation report is used to generate
this document.
"""
documentScript: DocumentDocumentScript
"""
Type identifies the type of document.
"""
type: DocumentType
"""
Contains the contextual framework or extent of this document's information
content.
"""
scope: String
"""
Description is the written statement of this entity.
"""
description: String
}
enum DocumentNonGovernmentCategory {
nil
SPECIFICATIONS
STANDARDS
DRAWINGS
OTHER_PUBLICATIONS
}
enum DocumentGovernmentCategory {
nil
SPECIFICATIONS_Military
SPECIFICATIONS_Federal
SPECIFICATIONS_Other_Government_Agency
STANDARDS_Military
STANDARDS_Federal
STANDARDS_Other_Government_Agency
DRAWINGS
OTHER_PUBLICATIONS_Manual
OTHER_PUBLICATIONS_Regulation
OTHER_PUBLICATIONS_Handbook
OTHER_PUBLICATIONS_Bulletin
OTHER_PUBLICATIONS_Other
}
enum DocumentDocumentScript {
nil
IRS
SRS
Other
SSDD
SSS
TEP
}
enum DocumentType {
nil
Agreement
Change_Notice
Change_Request
Drawing
Goal
Guidance
Information_Asset
Interface_Control_Document
Interface_Requirements_Specification
Meeting_Minutes
Procurement_Specification
Project_Memo
Regulatory
Risk_Mitigation_Plan
Service_Level_Specification
Software_Requirements_Specification
Standard
Statement_of_Work
Strategy
System_Requirements_Document
System_Segment_Design_Document
System_Segment_Specification
Test__Evaluation_Master_Plan
Test__Evaluation_Plan
Test__Evaluation_Report
Threat
Trade_Study
}
# for mutations
input DocumentATTR_Input {
documentDate: String
nonGovernmentCategory: DocumentNonGovernmentCategory
clin: String
externalFilePath: String
documentNumber: String
title: String
identification: String
governmentCategory: DocumentGovernmentCategory
revisionNumber: String
cdrlNumber: String
documentOverview: String
documentScript: DocumentDocumentScript
type: DocumentType
scope: String
description: String
}
type DocumentREL {
"""
Impacted by identifies the entity that is affected by the risk.
"""
impactedBy: [Document_ImpactedByTarget]
"""
Referenced by identifies documents for which the subject document is an
applicable or reference document.
"""
referencedBy: [Document_ReferencedByTarget]
"""
References identifies the applicable or reference document for the subject
document. This relation is appropriate for documents that are generated from the
contents of the database.
"""
references: [Document_ReferencesTarget]
"""
Refined by identifies the children of this entity.
"""
refinedBy: [Document_RefinedByTarget]
"""
Refines identifies the parent of this entity.
"""
refines: [Document_RefinesTarget]
"""
Reports on identifies the entities that form the basis for the documentation.
"""
reportsOn: [Document_ReportsOnTarget]
"""
Signed by identifies individuals who have signature authority for this document.
"""
signedBy: [Document_SignedByTarget]
"""
Traced from identifies a higher-level document from which the requirements in
the subject document should be associated.
"""
tracedFrom: [Document_TracedFromTarget]
"""
Traces to identifies a lower-level document to which the requirements in the
subject document should be associated.
"""
tracesTo: [Document_TracesToTarget]
}
# for mutations
input DocumentREL_Input {
impactedBy: [Document_ImpactedByTarget_Input]
referencedBy: [Document_ReferencedByTarget_Input]
references: [Document_ReferencesTarget_Input]
refinedBy: [Document_RefinedByTarget_Input]
refines: [Document_RefinesTarget_Input]
reportsOn: [Document_ReportsOnTarget_Input]
signedBy: [Document_SignedByTarget_Input]
tracedFrom: [Document_TracedFromTarget_Input]
tracesTo: [Document_TracesToTarget_Input]
}
type Document_ImpactedByTarget {
riskTarget: RiskID
}
type Document_ReferencedByTarget {
documentTarget: DocumentID
}
type Document_ReferencesTarget {
documentTarget: DocumentID
}
type Document_RefinedByTarget {
documentTarget: DocumentID
}
type Document_RefinesTarget {
documentTarget: DocumentID
}
type Document_ReportsOnTarget {
verificationRequirementTarget: VerificationRequirementID
linkTarget: LinkID
}
type Document_SignedByTarget {
organizationTarget: OrganizationID
"""
Type indicates the kind of signature authority.
"""
type: Document_SignedByType
}
enum Document_SignedByType {
nil
Approval
Authentication
Authorship
}
type Document_TracedFromTarget {
documentTarget: DocumentID
}
type Document_TracesToTarget {
documentTarget: DocumentID
}
# for mutations
input Document_ImpactedByTarget_Input {
operation: MutationOperation!
riskTarget: RiskID_Input
}
input Document_ReferencedByTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Document_ReferencesTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Document_RefinedByTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Document_RefinesTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Document_ReportsOnTarget_Input {
operation: MutationOperation!
verificationRequirementTarget: VerificationRequirementID_Input
linkTarget: LinkID_Input
}
input Document_SignedByTarget_Input {
operation: MutationOperation!
organizationTarget: OrganizationID_Input
type: Document_SignedByType
}
input Document_TracedFromTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
input Document_TracesToTarget_Input {
operation: MutationOperation!
documentTarget: DocumentID_Input
}
#########################################
# Function definition
#########################################
type Function {
identity: FunctionID!
attributes: FunctionATTR
parameters: [Parameter]
relations: FunctionREL
}
# for mutations
input Function_Input {
operation: MutationOperation!
identity: FunctionID_Input!
attributes: FunctionATTR_Input
parameters: [Parameter_Input]
relations: FunctionREL_Input
}
type FunctionID {
id: ID!
name: String!
number: String!
}
# for mutations