activefacts-examples 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (262) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +4 -0
  5. data/Gemfile +10 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +22 -0
  8. data/Rakefile +6 -0
  9. data/activefacts-examples.gemspec +26 -0
  10. data/cql/Address.cql +44 -0
  11. data/cql/Astronomy.cql +35 -0
  12. data/cql/Blog.cql +54 -0
  13. data/cql/CinemaBookings.cql +64 -0
  14. data/cql/CinemaTickets.cql +127 -0
  15. data/cql/CompanyDirectorEmployee.cql +56 -0
  16. data/cql/Death.cql +17 -0
  17. data/cql/Diplomacy.cql +48 -0
  18. data/cql/Genealogy.cql +98 -0
  19. data/cql/Health.cql +78 -0
  20. data/cql/Insurance.cql +320 -0
  21. data/cql/Marriage.cql +18 -0
  22. data/cql/Metamodel.cql +567 -0
  23. data/cql/Monogamy.cql +24 -0
  24. data/cql/MultiInheritance.cql +22 -0
  25. data/cql/MultipleSubtyping.cql +30 -0
  26. data/cql/NonRoleId.cql +14 -0
  27. data/cql/OddIdentifier.cql +18 -0
  28. data/cql/OilSupply.cql +53 -0
  29. data/cql/OneRoleNesting.cql +38 -0
  30. data/cql/OneToOnes.cql +17 -0
  31. data/cql/Orienteering.cql +111 -0
  32. data/cql/PartyModel.cql +38 -0
  33. data/cql/PersonPlaysGame.cql +18 -0
  34. data/cql/RedundantDependency.cql +34 -0
  35. data/cql/SchoolActivities.cql +33 -0
  36. data/cql/SeparateSubtype.cql +30 -0
  37. data/cql/ServiceDirector.cql +276 -0
  38. data/cql/SimplestUnary.cql +12 -0
  39. data/cql/Supervision.cql +34 -0
  40. data/cql/VenueSeating.cql +45 -0
  41. data/cql/WaiterTips.cql +33 -0
  42. data/cql/Warehousing.cql +101 -0
  43. data/cql/WindowInRoomInBldg.cql +28 -0
  44. data/cql/unit.cql +474 -0
  45. data/diagrams/json/Address.json +41 -0
  46. data/diagrams/json/Astronomy.json +31 -0
  47. data/diagrams/json/Blog.json +46 -0
  48. data/diagrams/json/CinemaBookings.json +53 -0
  49. data/diagrams/json/CinemaTickets.json +101 -0
  50. data/diagrams/json/CompanyDirectorEmployee.json +44 -0
  51. data/diagrams/json/Death.json +20 -0
  52. data/diagrams/json/Diplomacy.json +34 -0
  53. data/diagrams/json/Genealogy.json +78 -0
  54. data/diagrams/json/Insurance.json +259 -0
  55. data/diagrams/json/Marriage.json +21 -0
  56. data/diagrams/json/Metamodel.json +318 -0
  57. data/diagrams/json/Monogamy.json +22 -0
  58. data/diagrams/json/MultiInheritance.json +25 -0
  59. data/diagrams/json/MultipleSubtyping.json +22 -0
  60. data/diagrams/json/OilSupply.json +49 -0
  61. data/diagrams/json/OneRoleNesting.json +37 -0
  62. data/diagrams/json/Orienteering.json +94 -0
  63. data/diagrams/json/PersonPlaysGame.json +22 -0
  64. data/diagrams/json/RedundantDependency.json +33 -0
  65. data/diagrams/json/SchoolActivities.json +28 -0
  66. data/diagrams/json/SeparateSubtype.json +29 -0
  67. data/diagrams/json/SimplestUnary.json +15 -0
  68. data/diagrams/json/Supervision.json +27 -0
  69. data/diagrams/json/VenueSeating.json +40 -0
  70. data/diagrams/json/WaiterTips.json +29 -0
  71. data/diagrams/json/Warehousing.json +86 -0
  72. data/diagrams/json/WindowInRoomInBldg.json +31 -0
  73. data/images/Address.SQL.png +0 -0
  74. data/images/Address.png +0 -0
  75. data/images/Blog.png +0 -0
  76. data/images/CinemaBookings.png +0 -0
  77. data/images/CinemaTickets.png +0 -0
  78. data/images/CompanyDirectorEmployee.png +0 -0
  79. data/images/Death.png +0 -0
  80. data/images/Diplomacy.png +0 -0
  81. data/images/DumpMetamodel.bat +2 -0
  82. data/images/Genealogy.png +0 -0
  83. data/images/Insurance/Claim.png +0 -0
  84. data/images/Insurance/Insurance.png +0 -0
  85. data/images/Insurance/Person.png +0 -0
  86. data/images/Insurance/Policy.png +0 -0
  87. data/images/Insurance/Related.png +0 -0
  88. data/images/Insurance/VehicleIncident.png +0 -0
  89. data/images/Marriage.png +0 -0
  90. data/images/Metamodel/Concepts.png +0 -0
  91. data/images/Metamodel/Constraints.png +0 -0
  92. data/images/Metamodel/ContextNote.png +0 -0
  93. data/images/Metamodel/Diagrams.png +0 -0
  94. data/images/Metamodel/Language.png +0 -0
  95. data/images/Metamodel/Legacy.png +0 -0
  96. data/images/Metamodel/Objects.png +0 -0
  97. data/images/Metamodel/Populations.png +0 -0
  98. data/images/Metamodel/Query.png +0 -0
  99. data/images/Metamodel/Units.png +0 -0
  100. data/images/Metamodel/ValueConstraints.png +0 -0
  101. data/images/Metamodel/ValueTypes.png +0 -0
  102. data/images/MetamodelER.bcp +1 -0
  103. data/images/MetamodelER.pdf +0 -0
  104. data/images/MultiInheritance.png +0 -0
  105. data/images/NorthwindER.png +0 -0
  106. data/images/OilSupply.png +0 -0
  107. data/images/Orienteering/Administration.png +0 -0
  108. data/images/Orienteering/Registration.png +0 -0
  109. data/images/Orienteering/Scoring.png +0 -0
  110. data/images/PersonPlaysGame.png +0 -0
  111. data/images/RedundantDependency.png +0 -0
  112. data/images/SchoolActivities.png +0 -0
  113. data/images/SeparateSubtype.png +0 -0
  114. data/images/SimplestUnary.png +0 -0
  115. data/images/Supervision.png +0 -0
  116. data/images/VenueSeating.png +0 -0
  117. data/images/WaiterTips.png +0 -0
  118. data/images/Warehousing.png +0 -0
  119. data/images/WindowInRoomInBldg.png +0 -0
  120. data/metadata/json/Astronomy.json +175 -0
  121. data/metadata/json/CinemaBookings.json +354 -0
  122. data/metadata/json/CinemaTickets.json +768 -0
  123. data/metadata/json/CompanyDirectorEmployee.json +270 -0
  124. data/metadata/json/Diplomacy.json +186 -0
  125. data/metadata/json/Metamodel.json +3214 -0
  126. data/metadata/json/OilSupply.json +411 -0
  127. data/metadata/json/SeparateSubtype.json +157 -0
  128. data/metadata/json/Supervision.json +128 -0
  129. data/metadata/json/VenueSeating.json +209 -0
  130. data/orm/.gitignore +11 -0
  131. data/orm/Address.orm +1268 -0
  132. data/orm/Astronomy.orm +925 -0
  133. data/orm/Blog.orm +1711 -0
  134. data/orm/CinemaBookings.orm +1998 -0
  135. data/orm/CinemaTickets.orm +5060 -0
  136. data/orm/CompanyDirectorEmployee.orm +2094 -0
  137. data/orm/Death.orm +386 -0
  138. data/orm/Diplomacy.orm +1478 -0
  139. data/orm/ExampleModels2010.csproj +764 -0
  140. data/orm/ExampleModels2010.sln +16 -0
  141. data/orm/Genealogy.orm +3209 -0
  142. data/orm/Health.orm +2407 -0
  143. data/orm/Insurance.orm +12727 -0
  144. data/orm/Marriage.orm +493 -0
  145. data/orm/Metamodel.orm +20998 -0
  146. data/orm/Monogamy.orm +328 -0
  147. data/orm/MultiInheritance.orm +537 -0
  148. data/orm/MultipleSubtyping.orm +347 -0
  149. data/orm/OilSupply.orm +2533 -0
  150. data/orm/OneRoleNesting.orm +1237 -0
  151. data/orm/Orienteering.orm +3976 -0
  152. data/orm/PersonPlaysGame.orm +426 -0
  153. data/orm/RedundantDependency.orm +844 -0
  154. data/orm/SchoolActivities.orm +961 -0
  155. data/orm/SeparateSubtype.orm +821 -0
  156. data/orm/SimplestUnary.orm +172 -0
  157. data/orm/Supervision.orm +734 -0
  158. data/orm/VenueSeating.orm +1289 -0
  159. data/orm/WaiterTips.orm +789 -0
  160. data/orm/Warehousing.orm +3792 -0
  161. data/orm/WindowInRoomInBldg.orm +772 -0
  162. data/rails/models/Astronomy.models +17 -0
  163. data/rails/models/CinemaBookings.models +123 -0
  164. data/rails/models/CinemaTickets.models +192 -0
  165. data/rails/models/Diplomacy.models +126 -0
  166. data/rails/models/Metamodel.models +894 -0
  167. data/rails/models/OneRoleNesting.models +18 -0
  168. data/rails/models/SeparateSubtype.models +49 -0
  169. data/rails/models/VenueSeating.models +70 -0
  170. data/rails/schema/Astronomy.schema.rb +25 -0
  171. data/rails/schema/CinemaBookings.schema.rb +78 -0
  172. data/rails/schema/CinemaTickets.schema.rb +132 -0
  173. data/rails/schema/Diplomacy.schema.rb +74 -0
  174. data/rails/schema/Metamodel.schema.rb +538 -0
  175. data/rails/schema/OneRoleNesting.rb +20 -0
  176. data/rails/schema/SeparateSubtype.schema.rb +35 -0
  177. data/rails/schema/VenueSeating.schema.rb +46 -0
  178. data/rails/schema/Warehousing.schema.rb +145 -0
  179. data/ruby/Address.rb +68 -0
  180. data/ruby/Astronomy.rb +55 -0
  181. data/ruby/Blog.rb +84 -0
  182. data/ruby/CinemaBookings.rb +109 -0
  183. data/ruby/CinemaTickets.rb +218 -0
  184. data/ruby/CompanyDirectorEmployee.rb +73 -0
  185. data/ruby/Death.rb +26 -0
  186. data/ruby/Diplomacy.rb +59 -0
  187. data/ruby/Genealogy.rb +173 -0
  188. data/ruby/Insurance.rb +562 -0
  189. data/ruby/Marriage.rb +21 -0
  190. data/ruby/Metamodel.rb +621 -0
  191. data/ruby/Monogamy.rb +27 -0
  192. data/ruby/MultiInheritance.rb +38 -0
  193. data/ruby/OilSupply.rb +112 -0
  194. data/ruby/OneRoleNesting.rb +66 -0
  195. data/ruby/Orienteering.rb +216 -0
  196. data/ruby/PersonPlaysGame.rb +31 -0
  197. data/ruby/RedundantDependency.rb +53 -0
  198. data/ruby/SchoolActivities.rb +49 -0
  199. data/ruby/SeparateSubtype.rb +46 -0
  200. data/ruby/SimplestUnary.rb +10 -0
  201. data/ruby/Supervision.rb +33 -0
  202. data/ruby/TwoValues.rb +14 -0
  203. data/ruby/VenueSeating.rb +64 -0
  204. data/ruby/WaiterTips.rb +49 -0
  205. data/ruby/Warehousing.rb +167 -0
  206. data/ruby/WindowInRoomInBldg.rb +45 -0
  207. data/sql/server/Address.sql +40 -0
  208. data/sql/server/Astronomy.sql +36 -0
  209. data/sql/server/Blog.sql +78 -0
  210. data/sql/server/CinemaBookings.sql +95 -0
  211. data/sql/server/CinemaTickets.sql +191 -0
  212. data/sql/server/CompanyDirectorEmployee.sql +104 -0
  213. data/sql/server/Death.sql +11 -0
  214. data/sql/server/Diplomacy.sql +66 -0
  215. data/sql/server/Genealogy.sql +138 -0
  216. data/sql/server/Health.sql +169 -0
  217. data/sql/server/Insurance.sql +484 -0
  218. data/sql/server/Marriage.sql +30 -0
  219. data/sql/server/Metamodel.sql +1000 -0
  220. data/sql/server/Monogamy.sql +20 -0
  221. data/sql/server/MultiInheritance.sql +27 -0
  222. data/sql/server/OilSupply.sql +105 -0
  223. data/sql/server/OneRoleNesting.sql +29 -0
  224. data/sql/server/Orienteering.sql +186 -0
  225. data/sql/server/PersonPlaysGame.sql +9 -0
  226. data/sql/server/RedundantDependency.sql +54 -0
  227. data/sql/server/SchoolActivities.sql +30 -0
  228. data/sql/server/SeparateSubtype.sql +33 -0
  229. data/sql/server/SimplestUnary.sql +9 -0
  230. data/sql/server/Supervision.sql +30 -0
  231. data/sql/server/VenueSeating.sql +54 -0
  232. data/sql/server/WaiterTips.sql +31 -0
  233. data/sql/server/Warehousing.sql +203 -0
  234. data/sql/server/WindowInRoomInBldg.sql +13 -0
  235. data/transform/surrogate/Address.absorption +2 -0
  236. data/transform/surrogate/Blog.absorption +5 -0
  237. data/transform/surrogate/CinemaBookings.absorption +7 -0
  238. data/transform/surrogate/CompanyDirectorEmployee.absorption +7 -0
  239. data/transform/surrogate/Death.absorption +1 -0
  240. data/transform/surrogate/Diplomacy-revised.absorption +6 -0
  241. data/transform/surrogate/Diplomacy.absorption +6 -0
  242. data/transform/surrogate/Genealogy.absorption +8 -0
  243. data/transform/surrogate/Insurance.absorption +18 -0
  244. data/transform/surrogate/Marriage.absorption +2 -0
  245. data/transform/surrogate/Metamodel.absorption +25 -0
  246. data/transform/surrogate/Monogamy.absorption +1 -0
  247. data/transform/surrogate/MultiInheritance.absorption +1 -0
  248. data/transform/surrogate/MultipleSubtyping.absorption +1 -0
  249. data/transform/surrogate/OilSupply.absorption +8 -0
  250. data/transform/surrogate/OneRoleNesting.absorption +1 -0
  251. data/transform/surrogate/Orienteering.absorption +11 -0
  252. data/transform/surrogate/PersonPlaysGame.absorption +1 -0
  253. data/transform/surrogate/RedundantDependency.absorption +3 -0
  254. data/transform/surrogate/SchoolActivities.absorption +3 -0
  255. data/transform/surrogate/SeparateSubtype.absorption +3 -0
  256. data/transform/surrogate/SimplestUnary.absorption +1 -0
  257. data/transform/surrogate/Supervision.absorption +2 -0
  258. data/transform/surrogate/WaiterTips.absorption +3 -0
  259. data/transform/surrogate/Warehousing.absorption +12 -0
  260. data/transform/surrogate/WindowInRoomInBldg.absorption +1 -0
  261. data/transform/surrogate/unit.absorption +0 -0
  262. metadata +374 -0
@@ -0,0 +1,3214 @@
1
+ {
2
+ "types": {
3
+ "Absorption": {
4
+ "is_main": false,
5
+ "id": "fe8d478e-5bf2-4c25-a316-05ae6ef0029a",
6
+ "functions": [
7
+ {
8
+ "title": "as Component",
9
+ "type": "Component"
10
+ },
11
+ {
12
+ "title": "as Mapping",
13
+ "type": "Mapping"
14
+ },
15
+ {
16
+ "title": "Absorption flattens",
17
+ "type": "boolean",
18
+ "where": "this Absorption flattens",
19
+ "role_id": "9a8e90ed-e7ab-410f-92ff-a5064c18bbeb"
20
+ },
21
+ {
22
+ "title": "Index Role",
23
+ "type": "Role",
24
+ "where": "this Absorption is nested under one index-Role",
25
+ "role_id": "bbb1e2bf-eef4-432f-b128-ce7774527ab1"
26
+ },
27
+ {
28
+ "title": "Parent Role",
29
+ "type": "Role",
30
+ "where": "this Absorption traverses from one parent-Role",
31
+ "role_id": "2db78e5c-58ac-4f20-ae64-cf432abbf4b4"
32
+ },
33
+ {
34
+ "title": "Child Role",
35
+ "type": "Role",
36
+ "where": "this Absorption traverses to one child-Role",
37
+ "role_id": "454d05fe-c842-4fff-8826-f04174a5b5e3"
38
+ }
39
+ ]
40
+ },
41
+ "Adjective": {
42
+ "is_main": false,
43
+ "id": "f1716337-8d79-4896-953a-338b1a45dee5",
44
+ "functions": [
45
+ {
46
+ "title": "all Role Ref as Leading Adjective",
47
+ "type": "Role Ref",
48
+ "where": "some Role Ref has this leading-Adjective",
49
+ "role_id": "474cbe22-36a0-4eaf-9f5d-9c2163787f2c",
50
+ "is_list": true
51
+ },
52
+ {
53
+ "title": "all Role Ref as Trailing Adjective",
54
+ "type": "Role Ref",
55
+ "where": "some Role Ref has this trailing-Adjective",
56
+ "role_id": "a5e812e5-2716-4c84-a5b5-bf57a4fc657f",
57
+ "is_list": true
58
+ }
59
+ ]
60
+ },
61
+ "Agent": {
62
+ "is_main": false,
63
+ "id": "69c33967-327d-4639-96d9-ef91ca91f775",
64
+ "functions": [
65
+ {
66
+ "title": "Agent Name",
67
+ "type": "Agent Name",
68
+ "where": "this Agent has one Agent Name",
69
+ "role_id": "7995da8c-9a86-4304-955e-a29fc48dedbc"
70
+ },
71
+ {
72
+ "title": "all Agreement",
73
+ "type": "Agreement",
74
+ "where": "this Agent agreed on some Agreement",
75
+ "role_id": "c83c8d5e-436e-4fec-9e3e-019beb3e8ffb",
76
+ "is_list": true
77
+ },
78
+ {
79
+ "title": "all Context According To",
80
+ "type": "Context According To",
81
+ "where": "this Agent claims some Context Note",
82
+ "role_id": "2209ff3a-cad2-42f1-99e7-e9a292998431",
83
+ "is_list": true
84
+ },
85
+ {
86
+ "title": "all Enforcement",
87
+ "type": "Enforcement",
88
+ "where": "some Enforcement notifies this Agent",
89
+ "role_id": "7d4f4a3b-9760-4f7e-8cc8-1589263df034",
90
+ "is_list": true
91
+ }
92
+ ]
93
+ },
94
+ "Agent Name": {
95
+ "is_main": false,
96
+ "id": "9fcb398b-c22e-4a7d-9054-712970760ce0",
97
+ "functions": [
98
+ {
99
+ "title": "Agent",
100
+ "type": "Agent",
101
+ "where": "this Agent Name is of one Agent",
102
+ "role_id": "02d3a383-7c0a-48b3-9ca6-60adeef24999"
103
+ }
104
+ ]
105
+ },
106
+ "Aggregate": {
107
+ "is_main": false,
108
+ "id": "156e6c96-427a-45c3-a51c-a9fa5ecdfc10",
109
+ "functions": [
110
+ {
111
+ "title": "Aggregate Code",
112
+ "type": "Aggregate Code",
113
+ "where": "this Aggregate has one Aggregate Code",
114
+ "role_id": "2b425b38-20bb-4448-9011-6d58e7f62947"
115
+ },
116
+ {
117
+ "title": "all Aggregation",
118
+ "type": "Aggregation",
119
+ "where": "this Aggregate of some aggregated-Variable is bound as some Variable",
120
+ "role_id": "401ceb4f-5825-499c-ba24-efbd59f639c2",
121
+ "is_list": true
122
+ }
123
+ ]
124
+ },
125
+ "Aggregate Code": {
126
+ "is_main": false,
127
+ "id": "cceb2c34-a5ad-40c7-b032-f2efd88e9f4c",
128
+ "functions": [
129
+ {
130
+ "title": "Aggregate",
131
+ "type": "Aggregate",
132
+ "where": "this Aggregate Code is of one Aggregate",
133
+ "role_id": "8ec14e0b-da74-4dc9-888e-e968a0dbb0c4"
134
+ }
135
+ ]
136
+ },
137
+ "Aggregation": {
138
+ "is_main": true,
139
+ "id": "ae4388c3-8f48-4ea1-854a-dcd6b40c30b6",
140
+ "functions": [
141
+ {
142
+ "title": "involving Variable",
143
+ "type": "Variable",
144
+ "where": "this Variable is bound to some Aggregate over some aggregated-Variable"
145
+ },
146
+ {
147
+ "title": "involving Aggregate",
148
+ "type": "Aggregate",
149
+ "where": "this Aggregate of some aggregated-Variable is bound as some Variable"
150
+ },
151
+ {
152
+ "title": "involving Aggregated Variable",
153
+ "type": "Variable",
154
+ "where": "some Variable is bound to some Aggregate over this aggregated-Variable"
155
+ }
156
+ ]
157
+ },
158
+ "Agreement": {
159
+ "is_main": false,
160
+ "id": "e29f702b-df99-48ac-955d-3e50f21c83e7",
161
+ "functions": [
162
+ {
163
+ "title": "Date",
164
+ "type": "Date",
165
+ "where": "this Agreement was on one Date",
166
+ "role_id": "f3d57aa3-dc4c-49e1-9347-16cb67e936c0"
167
+ },
168
+ {
169
+ "title": "all Agent",
170
+ "type": "Agent",
171
+ "where": "this Agreement was reached by some Agent",
172
+ "role_id": "2a305051-5ab5-4f84-b38a-90eeeb05151c",
173
+ "is_list": true
174
+ },
175
+ {
176
+ "title": "Context Note",
177
+ "type": "Context Note",
178
+ "where": "this Agreement covers one Context Note",
179
+ "role_id": "0191bc2f-1ccf-4835-a7b8-db6b883b51c8"
180
+ }
181
+ ]
182
+ },
183
+ "Alternative Set": {
184
+ "is_main": true,
185
+ "id": "4476b2c0-dce0-4959-81f8-cf94b36ce121",
186
+ "functions": [
187
+ {
188
+ "title": "Guid",
189
+ "type": "Guid",
190
+ "where": "this Alternative Set has one Guid",
191
+ "role_id": "159123f0-bdfc-4997-84da-e2b7f534bb24"
192
+ },
193
+ {
194
+ "title": "Alternative Set members are exclusive",
195
+ "type": "boolean",
196
+ "where": "this Alternative Set members are exclusive",
197
+ "role_id": "7d17a256-3598-4bd0-a0ae-938be5a190a6"
198
+ },
199
+ {
200
+ "title": "all Step",
201
+ "type": "Step",
202
+ "where": "this Alternative Set covers some Step",
203
+ "role_id": "f3fcc543-8ba7-4bb0-98a6-f1953900fb7c",
204
+ "is_list": true
205
+ }
206
+ ]
207
+ },
208
+ "Annotation": {
209
+ "is_main": false,
210
+ "id": "9078f455-cd52-4462-afd7-90cc35e8d245",
211
+ "functions": [
212
+ {
213
+ "title": "all Concept",
214
+ "type": "Concept",
215
+ "where": "this Annotation applies to some Concept",
216
+ "role_id": "a2384b0b-858e-44bc-b5fd-c825309ac352",
217
+ "is_list": true
218
+ }
219
+ ]
220
+ },
221
+ "Assimilation": {
222
+ "is_main": false,
223
+ "id": "dcf48f4d-1906-4e4c-8d1d-80b96d92a075",
224
+ "functions": [
225
+ {
226
+ "title": "all Type Inheritance",
227
+ "type": "Type Inheritance",
228
+ "where": "this Assimilation applies to some Type Inheritance",
229
+ "role_id": "eb0974d7-21a1-41a5-bd59-626529add1c0",
230
+ "is_list": true
231
+ }
232
+ ]
233
+ },
234
+ "Bound": {
235
+ "is_main": false,
236
+ "id": "425ef12f-3080-4dfb-b7b2-138a4f80836d",
237
+ "functions": [
238
+ {
239
+ "title": "Value",
240
+ "type": "Value",
241
+ "where": "this Bound has one Value",
242
+ "role_id": "0b5971c9-6be5-47da-b377-bfb538b4cfd7"
243
+ },
244
+ {
245
+ "title": "Bound is inclusive",
246
+ "type": "boolean",
247
+ "where": "this Bound is inclusive",
248
+ "role_id": "8b4ef1eb-a7ae-4cbf-8b21-dcac58ed68e8"
249
+ },
250
+ {
251
+ "title": "all Value Range as Maximum Bound",
252
+ "type": "Value Range",
253
+ "where": "some Value Range has this maximum-Bound",
254
+ "role_id": "4cd5fc29-a55d-41b6-990f-50395c4d1581",
255
+ "is_list": true
256
+ },
257
+ {
258
+ "title": "all Value Range as Minimum Bound",
259
+ "type": "Value Range",
260
+ "where": "some Value Range has this minimum-Bound",
261
+ "role_id": "3319d75e-4b3b-489f-a748-30052ca796b2",
262
+ "is_list": true
263
+ }
264
+ ]
265
+ },
266
+ "Coefficient": {
267
+ "is_main": false,
268
+ "id": "376013d8-7a15-471e-b71a-9cf872031e79",
269
+ "functions": [
270
+ {
271
+ "title": "Denominator",
272
+ "type": "Denominator",
273
+ "where": "this Coefficient has one Denominator",
274
+ "role_id": "1a74bc39-6394-4968-a62a-3adfba5d26b2"
275
+ },
276
+ {
277
+ "title": "Numerator",
278
+ "type": "Numerator",
279
+ "where": "this Coefficient has one Numerator",
280
+ "role_id": "014cc259-02f7-4b71-80f9-5eb12064c6c2"
281
+ },
282
+ {
283
+ "title": "Coefficient is precise",
284
+ "type": "boolean",
285
+ "where": "this Coefficient is precise",
286
+ "role_id": "44b585c6-2abe-4785-b496-1cf375488ac7"
287
+ },
288
+ {
289
+ "title": "all Unit",
290
+ "type": "Unit",
291
+ "where": "some Unit has this Coefficient",
292
+ "role_id": "a983e0b5-87ae-42c4-b381-b4d9220afe32",
293
+ "is_list": true
294
+ }
295
+ ]
296
+ },
297
+ "Component": {
298
+ "is_main": true,
299
+ "id": "bc1e20d5-ec55-4667-8938-76d516d7e1af",
300
+ "functions": [
301
+ {
302
+ "title": "as Absorption",
303
+ "type": "Absorption"
304
+ },
305
+ {
306
+ "title": "as Discriminator",
307
+ "type": "Discriminator"
308
+ },
309
+ {
310
+ "title": "as Indicator",
311
+ "type": "Indicator"
312
+ },
313
+ {
314
+ "title": "as Injection",
315
+ "type": "Injection"
316
+ },
317
+ {
318
+ "title": "as Mapping",
319
+ "type": "Mapping"
320
+ },
321
+ {
322
+ "title": "as Nesting",
323
+ "type": "Nesting"
324
+ },
325
+ {
326
+ "title": "Guid",
327
+ "type": "Guid",
328
+ "where": "this Component has one Guid",
329
+ "role_id": "46f560df-88ac-4fd9-a500-3114e9824370"
330
+ },
331
+ {
332
+ "title": "Name",
333
+ "type": "Name",
334
+ "where": "this Component projects one Name",
335
+ "role_id": "1bf38136-17d2-4b93-b80b-45e9725fbd94"
336
+ },
337
+ {
338
+ "title": "Mapping",
339
+ "type": "Mapping",
340
+ "where": "this Member belongs to one parent-Mapping",
341
+ "role_id": "286cb5a3-7514-4de1-abc2-aa20c502d321"
342
+ }
343
+ ]
344
+ },
345
+ "Composite": {
346
+ "is_main": false,
347
+ "id": "4cbd1886-450d-4585-b9ee-45f4036a0588",
348
+ "functions": [
349
+ {
350
+ "title": "Composition",
351
+ "type": "Composition",
352
+ "where": "this Composite belongs to one Composition",
353
+ "role_id": "2cb743f6-da91-4ffe-b056-18b386adbed2"
354
+ },
355
+ {
356
+ "title": "Mapping",
357
+ "type": "Mapping",
358
+ "where": "this Composite consists of one Mapping",
359
+ "role_id": "c5cc4128-1107-44d6-ab73-e9250cc8596c"
360
+ }
361
+ ]
362
+ },
363
+ "Composition": {
364
+ "is_main": true,
365
+ "id": "99cf40b0-8b6a-4eb5-8192-26539fe4ff16",
366
+ "functions": [
367
+ {
368
+ "title": "all Composite",
369
+ "type": "Composite",
370
+ "where": "this Composition contains some Composite",
371
+ "role_id": "f5f3a550-8220-42f1-a59d-ce7549302559",
372
+ "is_list": true
373
+ },
374
+ {
375
+ "title": "Guid",
376
+ "type": "Guid",
377
+ "where": "this Composition has one Guid",
378
+ "role_id": "c97cafe3-2d67-468c-a056-aa1e410d1027"
379
+ },
380
+ {
381
+ "title": "Name",
382
+ "type": "Name",
383
+ "where": "this Composition is called one Name",
384
+ "role_id": "0516874a-e0ee-4178-ada2-360c49ba069b"
385
+ }
386
+ ]
387
+ },
388
+ "Concept": {
389
+ "is_main": true,
390
+ "id": "ae2713f2-ae9a-4fc4-813c-eb3bac921773",
391
+ "functions": [
392
+ {
393
+ "title": "Topic",
394
+ "type": "Topic",
395
+ "where": "this Concept belongs to one Topic",
396
+ "role_id": "0e6dbb4c-cde7-4f86-96b8-9ae87436663d"
397
+ },
398
+ {
399
+ "title": "Guid",
400
+ "type": "Guid",
401
+ "where": "this Concept has one Guid",
402
+ "role_id": "a2ad37e8-a490-4bef-b855-e0c70ac07bd4"
403
+ },
404
+ {
405
+ "title": "all Mapping Annotation",
406
+ "type": "Annotation",
407
+ "where": "this Concept has some mapping-Annotation",
408
+ "role_id": "ba2bc3cc-5e38-4cbc-835a-08617a137537",
409
+ "is_list": true
410
+ },
411
+ {
412
+ "title": "Implication Rule",
413
+ "type": "Implication Rule",
414
+ "where": "this Concept is implied by one Implication Rule",
415
+ "role_id": "6d090aab-0f4a-4a40-87ba-116fdf34ab55"
416
+ },
417
+ {
418
+ "title": "Constraint",
419
+ "type": "Constraint",
420
+ "where": "one Constraint is an instance of this Concept",
421
+ "role_id": "179c127f-bc4e-4934-815e-43d83a1a38ec"
422
+ },
423
+ {
424
+ "title": "all Context Note",
425
+ "type": "Context Note",
426
+ "where": "this Concept has some Context Note",
427
+ "role_id": "927b10c4-568c-4591-96c3-7a7fc3e308b6",
428
+ "is_list": true
429
+ },
430
+ {
431
+ "title": "Context Note",
432
+ "type": "Context Note",
433
+ "where": "one Context Note is an instance of this Concept",
434
+ "role_id": "44d1f4e1-1301-4c8f-bea7-78e8c625a236"
435
+ },
436
+ {
437
+ "title": "Fact Type",
438
+ "type": "Fact Type",
439
+ "where": "one Fact Type is an instance of this Concept",
440
+ "role_id": "0bf4ab09-294b-47a8-ab5a-1f2982773f1f"
441
+ },
442
+ {
443
+ "title": "Fact",
444
+ "type": "Fact",
445
+ "where": "one Fact is an instance of this Concept",
446
+ "role_id": "c6c54667-73b5-4a8d-b138-0a34e220dcf0"
447
+ },
448
+ {
449
+ "title": "Instance",
450
+ "type": "Instance",
451
+ "where": "one Instance is an instance of this Concept",
452
+ "role_id": "1e1f0a7e-35c4-4264-a6e5-85ce8af09958"
453
+ },
454
+ {
455
+ "title": "Object Type",
456
+ "type": "Object Type",
457
+ "where": "one Object Type is an instance of this Concept",
458
+ "role_id": "2fd41a96-afe6-4545-9576-7acb4f214ff5"
459
+ },
460
+ {
461
+ "title": "Population",
462
+ "type": "Population",
463
+ "where": "one Population is an instance of this Concept",
464
+ "role_id": "5d9217b2-7171-4246-a9fb-055b67a8db87"
465
+ },
466
+ {
467
+ "title": "Query",
468
+ "type": "Query",
469
+ "where": "one Query is an instance of this Concept",
470
+ "role_id": "184362c3-8f9b-4ab3-b676-90df0f61d564"
471
+ },
472
+ {
473
+ "title": "Role",
474
+ "type": "Role",
475
+ "where": "one Role is an instance of this Concept",
476
+ "role_id": "f169883a-9a8b-40b2-9a79-d234b130872b"
477
+ },
478
+ {
479
+ "title": "Unit",
480
+ "type": "Unit",
481
+ "where": "one Unit is an instance of this Concept",
482
+ "role_id": "f3b0503d-564b-4692-bd5f-50066a97cdea"
483
+ }
484
+ ]
485
+ },
486
+ "Constraint": {
487
+ "is_main": true,
488
+ "id": "2469db90-7732-43b3-9bf8-84561182b4ee",
489
+ "functions": [
490
+ {
491
+ "title": "as Presence Constraint",
492
+ "type": "Presence Constraint"
493
+ },
494
+ {
495
+ "title": "as Ring Constraint",
496
+ "type": "Ring Constraint"
497
+ },
498
+ {
499
+ "title": "as Set Comparison Constraint",
500
+ "type": "Set Comparison Constraint"
501
+ },
502
+ {
503
+ "title": "as Set Constraint",
504
+ "type": "Set Constraint"
505
+ },
506
+ {
507
+ "title": "as Set Equality Constraint",
508
+ "type": "Set Equality Constraint"
509
+ },
510
+ {
511
+ "title": "as Set Exclusion Constraint",
512
+ "type": "Set Exclusion Constraint"
513
+ },
514
+ {
515
+ "title": "as Subset Constraint",
516
+ "type": "Subset Constraint"
517
+ },
518
+ {
519
+ "title": "as Value Constraint",
520
+ "type": "Value Constraint"
521
+ },
522
+ {
523
+ "title": "all Constraint Shape",
524
+ "type": "Constraint Shape",
525
+ "where": "some Constraint Shape is for this Constraint",
526
+ "role_id": "71402b39-2f7c-4d12-80c4-bffda4e87690",
527
+ "is_list": true
528
+ },
529
+ {
530
+ "title": "Concept",
531
+ "type": "Concept",
532
+ "where": "this Constraint is an instance of one Concept",
533
+ "role_id": "4526e3ac-0fa7-42df-bf03-d49c14d647cb"
534
+ },
535
+ {
536
+ "title": "Enforcement",
537
+ "type": "Enforcement",
538
+ "where": "this Constraint requires one Enforcement",
539
+ "role_id": "d6ff389e-6345-415a-8572-34d5988e3545"
540
+ },
541
+ {
542
+ "title": "Name",
543
+ "type": "Name",
544
+ "where": "this Constraint is called one Name",
545
+ "role_id": "a6476a46-7125-49cc-aa95-e4ca4b8ff5ba"
546
+ },
547
+ {
548
+ "title": "Vocabulary",
549
+ "type": "Vocabulary",
550
+ "where": "this Constraint belongs to one Vocabulary",
551
+ "role_id": "d4fb190d-df5a-4285-bf5d-56a1182f21ec"
552
+ }
553
+ ]
554
+ },
555
+ "Constraint Shape": {
556
+ "is_main": false,
557
+ "id": "3f25fe9e-8b37-40fd-b1a2-16ec2358d488",
558
+ "functions": [
559
+ {
560
+ "title": "as Shape",
561
+ "type": "Shape"
562
+ },
563
+ {
564
+ "title": "as Ring Constraint Shape",
565
+ "type": "Ring Constraint Shape"
566
+ },
567
+ {
568
+ "title": "as Value Constraint Shape",
569
+ "type": "Value Constraint Shape"
570
+ },
571
+ {
572
+ "title": "Constraint",
573
+ "type": "Constraint",
574
+ "where": "this Constraint Shape is for one Constraint",
575
+ "role_id": "3eb85599-c4b3-4195-8e46-d7fa82080d4b"
576
+ }
577
+ ]
578
+ },
579
+ "Context According To": {
580
+ "is_main": true,
581
+ "id": "64792a10-80e8-4d7d-b842-81948f06f56b",
582
+ "functions": [
583
+ {
584
+ "title": "involving Context Note",
585
+ "type": "Context Note",
586
+ "where": "this Context Note is according to some Agent"
587
+ },
588
+ {
589
+ "title": "involving Agent",
590
+ "type": "Agent",
591
+ "where": "this Agent claims some Context Note"
592
+ },
593
+ {
594
+ "title": "Date",
595
+ "type": "Date",
596
+ "where": "this Context According To was lodged on one Date",
597
+ "role_id": "abaa1a07-572f-4d7f-b341-1a5646fdcde8"
598
+ }
599
+ ]
600
+ },
601
+ "Context Note": {
602
+ "is_main": false,
603
+ "id": "6dae537d-6abe-4920-92c2-412e7dc754c6",
604
+ "functions": [
605
+ {
606
+ "title": "Relevant Concept",
607
+ "type": "Concept",
608
+ "where": "this Context Note applies to one relevant-Concept",
609
+ "role_id": "21cb7346-72c7-4703-8e4b-b06107452bbe"
610
+ },
611
+ {
612
+ "title": "Context Note Kind",
613
+ "type": "Context Note Kind",
614
+ "where": "this Context Note has one Context Note Kind",
615
+ "role_id": "b1d5ab11-840a-434a-94b6-269fd73f60f6"
616
+ },
617
+ {
618
+ "title": "Discussion",
619
+ "type": "Discussion",
620
+ "where": "this Context Note has one Discussion",
621
+ "role_id": "447b082f-4cb8-4add-a21a-086e170da3bd"
622
+ },
623
+ {
624
+ "title": "all Context According To",
625
+ "type": "Context According To",
626
+ "where": "this Context Note is according to some Agent",
627
+ "role_id": "ac7bdf87-5b8f-4b06-b3bd-770a9eaae3d2",
628
+ "is_list": true
629
+ },
630
+ {
631
+ "title": "Concept",
632
+ "type": "Concept",
633
+ "where": "this Context Note is an instance of one Concept",
634
+ "role_id": "c488d041-26c8-490b-899e-f6a714d4297f"
635
+ },
636
+ {
637
+ "title": "Agreement",
638
+ "type": "Agreement",
639
+ "where": "this Context Note was added by one Agreement",
640
+ "role_id": "56e00e04-ed1c-4650-b7c1-a9975536051e"
641
+ },
642
+ {
643
+ "title": "all Model Note Shape",
644
+ "type": "Model Note Shape",
645
+ "where": "some Model Note Shape is for this Context Note",
646
+ "role_id": "561b961d-ad64-4e8d-aa6c-dc11dbf1efd7",
647
+ "is_list": true
648
+ }
649
+ ]
650
+ },
651
+ "Context Note Kind": {
652
+ "is_main": false,
653
+ "id": "a3a9734a-98f3-4c95-a142-87f3855b7753",
654
+ "functions": [
655
+ {
656
+ "title": "all Context Note",
657
+ "type": "Context Note",
658
+ "where": "this Context Note Kind is of some Context Note",
659
+ "role_id": "2722abf9-ffc8-44ba-b55c-4b0acd46ba04",
660
+ "is_list": true
661
+ }
662
+ ]
663
+ },
664
+ "Date": {
665
+ "is_main": false,
666
+ "id": "0da85a31-f196-4ba1-a996-bd9899bb7a0c",
667
+ "functions": [
668
+ {
669
+ "title": "all Agreement",
670
+ "type": "Agreement",
671
+ "where": "this Date is of some Agreement",
672
+ "role_id": "379381f6-e22b-4700-9009-b72bb3a45537",
673
+ "is_list": true
674
+ },
675
+ {
676
+ "title": "all Context According To",
677
+ "type": "Context According To",
678
+ "where": "some Context According To was lodged on this Date",
679
+ "role_id": "92249b40-1d90-46a5-a81b-112f67a362b6",
680
+ "is_list": true
681
+ }
682
+ ]
683
+ },
684
+ "Denominator": {
685
+ "is_main": false,
686
+ "id": "8a208c59-bed9-4380-ae87-bc568c2a54f6",
687
+ "functions": [
688
+ {
689
+ "title": "all Coefficient",
690
+ "type": "Coefficient",
691
+ "where": "some Coefficient has this Denominator",
692
+ "role_id": "e12f052a-cb6d-480f-bddf-a914cdec6294",
693
+ "is_list": true
694
+ }
695
+ ]
696
+ },
697
+ "Derivation": {
698
+ "is_main": true,
699
+ "id": "faf19ab5-7d59-4402-9686-e2409937f3bd",
700
+ "functions": [
701
+ {
702
+ "title": "involving Derived Unit",
703
+ "type": "Unit",
704
+ "where": "this Derived Unit is derived from some Base Unit"
705
+ },
706
+ {
707
+ "title": "involving Base Unit",
708
+ "type": "Unit",
709
+ "where": "some Derived Unit is derived from this Base Unit"
710
+ },
711
+ {
712
+ "title": "Exponent",
713
+ "type": "Exponent",
714
+ "where": "this Derivation has one Exponent",
715
+ "role_id": "c8f9d0c5-638f-4835-b7c5-033897295314"
716
+ }
717
+ ]
718
+ },
719
+ "Diagram": {
720
+ "is_main": true,
721
+ "id": "863d6f13-6168-4a25-953d-2949d08035fd",
722
+ "functions": [
723
+ {
724
+ "title": "as ORM Diagram",
725
+ "type": "ORM Diagram"
726
+ },
727
+ {
728
+ "title": "Name",
729
+ "type": "Name",
730
+ "where": "this Diagram is called one Name",
731
+ "role_id": "e08ea848-9463-47b7-a34e-449793eb0a6b"
732
+ },
733
+ {
734
+ "title": "Vocabulary",
735
+ "type": "Vocabulary",
736
+ "where": "this Diagram is for one Vocabulary",
737
+ "role_id": "33001ff5-0643-4eb3-a1a0-359f49848183"
738
+ }
739
+ ]
740
+ },
741
+ "Discriminated Role": {
742
+ "is_main": true,
743
+ "id": "12cbe16c-13eb-4cbe-93b6-35f470ccb8f3",
744
+ "functions": [
745
+ {
746
+ "title": "involving Discriminator",
747
+ "type": "Discriminator",
748
+ "where": "this Discriminator distinguishes some Role using some Value"
749
+ },
750
+ {
751
+ "title": "involving Role",
752
+ "type": "Role",
753
+ "where": "this Role is indicated by some Value for some Discriminator"
754
+ },
755
+ {
756
+ "title": "involving Value",
757
+ "type": "Value",
758
+ "where": "some Discriminator distinguishes some Role using this Value"
759
+ }
760
+ ]
761
+ },
762
+ "Discriminator": {
763
+ "is_main": false,
764
+ "id": "2453cb92-4372-4af9-bdb3-9b0ca5e633fb",
765
+ "functions": [
766
+ {
767
+ "title": "as Component",
768
+ "type": "Component"
769
+ },
770
+ {
771
+ "title": "all Discriminated Role",
772
+ "type": "Discriminated Role",
773
+ "where": "this Discriminator distinguishes some Role using some Value",
774
+ "role_id": "b4075ed7-94a7-4deb-bdab-9e0180bfcd9a",
775
+ "is_list": true
776
+ }
777
+ ]
778
+ },
779
+ "Discussion": {
780
+ "is_main": false,
781
+ "id": "09675b47-249a-43c1-8a22-f11cb0c2d45e",
782
+ "functions": [
783
+ {
784
+ "title": "all Context Note",
785
+ "type": "Context Note",
786
+ "where": "this Discussion is for some Context Note",
787
+ "role_id": "e108ddab-5750-45bb-9171-abe5b82f0e6b",
788
+ "is_list": true
789
+ }
790
+ ]
791
+ },
792
+ "Display Role Names Setting": {
793
+ "is_main": false,
794
+ "id": "21236c17-c947-4c1a-be65-09a0c3b73372",
795
+ "functions": [
796
+ {
797
+ "title": "all Fact Type Shape",
798
+ "type": "Fact Type Shape",
799
+ "where": "some Fact Type Shape has this Display Role Names Setting",
800
+ "role_id": "234f5b64-a303-4659-85fd-6d113df58904",
801
+ "is_list": true
802
+ }
803
+ ]
804
+ },
805
+ "Domain Object Type": {
806
+ "is_main": false,
807
+ "id": "cba19572-b9e8-45fe-a080-18efddda851f",
808
+ "functions": [
809
+ {
810
+ "title": "as Object Type",
811
+ "type": "Object Type"
812
+ },
813
+ {
814
+ "title": "as Entity Type",
815
+ "type": "Entity Type"
816
+ },
817
+ {
818
+ "title": "as Implicit Boolean Value Type",
819
+ "type": "Implicit Boolean Value Type"
820
+ },
821
+ {
822
+ "title": "as Value Type",
823
+ "type": "Value Type"
824
+ }
825
+ ]
826
+ },
827
+ "Enforcement": {
828
+ "is_main": false,
829
+ "id": "9b13335b-cbc1-4747-aece-bd049e3f3938",
830
+ "functions": [
831
+ {
832
+ "title": "Constraint",
833
+ "type": "Constraint",
834
+ "where": "this Enforcement applies to one Constraint",
835
+ "role_id": "92399f74-8ddd-4b64-8bd5-0df5da89fd2c"
836
+ },
837
+ {
838
+ "title": "Enforcement Code",
839
+ "type": "Enforcement Code",
840
+ "where": "this Enforcement has one Enforcement Code",
841
+ "role_id": "ecf515dd-4544-4208-80b3-a749781d5105"
842
+ },
843
+ {
844
+ "title": "Agent",
845
+ "type": "Agent",
846
+ "where": "this Enforcement notifies one Agent",
847
+ "role_id": "938d35cb-7640-4188-8ecb-d1ea99b77a2e"
848
+ }
849
+ ]
850
+ },
851
+ "Enforcement Code": {
852
+ "is_main": false,
853
+ "id": "05305c62-7302-4f36-9969-94e1b12fad49",
854
+ "functions": [
855
+ {
856
+ "title": "all Enforcement",
857
+ "type": "Enforcement",
858
+ "where": "this Enforcement Code is of some Enforcement",
859
+ "role_id": "60b51ebe-e59a-478f-b75f-7aeba605c573",
860
+ "is_list": true
861
+ }
862
+ ]
863
+ },
864
+ "Entity Type": {
865
+ "is_main": false,
866
+ "id": "f6ff9ff2-2111-432a-9d24-6e479c241a00",
867
+ "functions": [
868
+ {
869
+ "title": "as Domain Object Type",
870
+ "type": "Domain Object Type"
871
+ },
872
+ {
873
+ "title": "as Object Type",
874
+ "type": "Object Type"
875
+ },
876
+ {
877
+ "title": "all Type Inheritance",
878
+ "type": "Type Inheritance",
879
+ "where": "this Subtype is subtype of some Supertype",
880
+ "role_id": "f9b1ae4d-87ce-40c8-a343-b697cab1af59",
881
+ "is_list": true
882
+ },
883
+ {
884
+ "title": "all Type Inheritance",
885
+ "type": "Type Inheritance",
886
+ "where": "this Supertype is supertype of some Subtype",
887
+ "role_id": "a1cabec1-f23b-4a20-8a7d-763ea0809f3b",
888
+ "is_list": true
889
+ },
890
+ {
891
+ "title": "Fact Type",
892
+ "type": "Fact Type",
893
+ "where": "this Entity Type nests one Fact Type",
894
+ "role_id": "7ecffccb-240d-4617-b299-f6118b9baf70"
895
+ }
896
+ ]
897
+ },
898
+ "Ephemera URL": {
899
+ "is_main": false,
900
+ "id": "a198993f-0c69-4cf7-ba82-ce3b3d4e0c5a",
901
+ "functions": [
902
+ {
903
+ "title": "all Unit",
904
+ "type": "Unit",
905
+ "where": "this Ephemera URL provides some Unit coefficient",
906
+ "role_id": "2ddcbd01-40ed-4a9d-82ff-aebe6614d3c6",
907
+ "is_list": true
908
+ }
909
+ ]
910
+ },
911
+ "Exponent": {
912
+ "is_main": false,
913
+ "id": "40f2053c-9ef4-4371-bb28-05caa0318f63",
914
+ "functions": [
915
+ {
916
+ "title": "all Derivation",
917
+ "type": "Derivation",
918
+ "where": "some Derivation has this Exponent",
919
+ "role_id": "81620d66-8a99-432b-bfe5-322b3e82ba08",
920
+ "is_list": true
921
+ }
922
+ ]
923
+ },
924
+ "Fact": {
925
+ "is_main": false,
926
+ "id": "f26e584f-7869-4d2c-a148-3754c43bd31a",
927
+ "functions": [
928
+ {
929
+ "title": "Concept",
930
+ "type": "Concept",
931
+ "where": "this Fact is an instance of one Concept",
932
+ "role_id": "2777b0f4-fedd-4aa9-8b87-5e976cfbcb64"
933
+ },
934
+ {
935
+ "title": "Fact Type",
936
+ "type": "Fact Type",
937
+ "where": "this Fact is of one Fact Type",
938
+ "role_id": "697b2bd2-7cae-46a7-b231-586f5d5d31cc"
939
+ },
940
+ {
941
+ "title": "Instance",
942
+ "type": "Instance",
943
+ "where": "this Fact is objectified as one Instance",
944
+ "role_id": "2e64f3fa-215f-479c-89e0-71bc9805184b"
945
+ },
946
+ {
947
+ "title": "Population",
948
+ "type": "Population",
949
+ "where": "this Fact belongs to one Population",
950
+ "role_id": "1bab6138-c329-4837-9a6b-3fa72efe175d"
951
+ },
952
+ {
953
+ "title": "all Role Value",
954
+ "type": "Role Value",
955
+ "where": "this Fact includes some Role Value",
956
+ "role_id": "7be78e4d-4d25-4f59-92c3-b7a3beb9b005",
957
+ "is_list": true
958
+ }
959
+ ]
960
+ },
961
+ "Fact Type": {
962
+ "is_main": true,
963
+ "id": "792e166d-b815-4ef4-88de-c9a63ccc1682",
964
+ "functions": [
965
+ {
966
+ "title": "as Link Fact Type",
967
+ "type": "Link Fact Type"
968
+ },
969
+ {
970
+ "title": "as Type Inheritance",
971
+ "type": "Type Inheritance"
972
+ },
973
+ {
974
+ "title": "Entity Type",
975
+ "type": "Entity Type",
976
+ "where": "this Fact Type is nested as one Entity Type",
977
+ "role_id": "7547b3d5-7c89-4771-b2fd-6efdcf476614"
978
+ },
979
+ {
980
+ "title": "all Fact Type Shape",
981
+ "type": "Fact Type Shape",
982
+ "where": "this Fact Type has some Fact Type Shape",
983
+ "role_id": "1e8fd527-57ea-476e-b796-d7d6defe6d44",
984
+ "is_list": true
985
+ },
986
+ {
987
+ "title": "all Reading",
988
+ "type": "Reading",
989
+ "where": "this Fact Type has some Reading",
990
+ "role_id": "c551c672-c603-4d2d-9d86-023a38bc5024",
991
+ "is_list": true
992
+ },
993
+ {
994
+ "title": "Concept",
995
+ "type": "Concept",
996
+ "where": "this Fact Type is an instance of one Concept",
997
+ "role_id": "ba08510e-ff39-4859-aeaa-90b477bec97b"
998
+ },
999
+ {
1000
+ "title": "all Fact",
1001
+ "type": "Fact",
1002
+ "where": "some Fact is of this Fact Type",
1003
+ "role_id": "e67d3680-67b0-4d01-8893-fa49f785c0dc",
1004
+ "is_list": true
1005
+ },
1006
+ {
1007
+ "title": "all Role",
1008
+ "type": "Role",
1009
+ "where": "this Fact Type contains some Role",
1010
+ "role_id": "69f074e6-246f-49ec-9452-b8741e58a257",
1011
+ "is_list": true
1012
+ },
1013
+ {
1014
+ "title": "all Step",
1015
+ "type": "Step",
1016
+ "where": "this Fact Type directs some Step",
1017
+ "role_id": "46285e97-36ba-4c71-891b-982f62822575",
1018
+ "is_list": true
1019
+ }
1020
+ ]
1021
+ },
1022
+ "Fact Type Shape": {
1023
+ "is_main": false,
1024
+ "id": "c4029b68-55ac-4976-aa98-c6c8a0812b4c",
1025
+ "functions": [
1026
+ {
1027
+ "title": "as Shape",
1028
+ "type": "Shape"
1029
+ },
1030
+ {
1031
+ "title": "all Role Display",
1032
+ "type": "Role Display",
1033
+ "where": "this Fact Type Shape displays some Role in some Ordinal position",
1034
+ "role_id": "857314b0-2bba-4b4f-88ec-2ceb5c82a151",
1035
+ "is_list": true
1036
+ },
1037
+ {
1038
+ "title": "Display Role Names Setting",
1039
+ "type": "Display Role Names Setting",
1040
+ "where": "this Fact Type Shape has one Display Role Names Setting",
1041
+ "role_id": "baecc630-eaf6-44e4-823a-7dc469e18ab0"
1042
+ },
1043
+ {
1044
+ "title": "Reading Shape",
1045
+ "type": "Reading Shape",
1046
+ "where": "this Fact Type Shape has one Reading Shape",
1047
+ "role_id": "8606ab20-6def-4b7c-9a9c-8daf7eeda173"
1048
+ },
1049
+ {
1050
+ "title": "Rotation Setting",
1051
+ "type": "Rotation Setting",
1052
+ "where": "this Fact Type Shape has one Rotation Setting",
1053
+ "role_id": "e14a8c57-b13a-4cbf-9fac-24a34df7bee9"
1054
+ },
1055
+ {
1056
+ "title": "Fact Type",
1057
+ "type": "Fact Type",
1058
+ "where": "this Fact Type Shape is for one Fact Type",
1059
+ "role_id": "6173480f-8c1c-4f0d-a35b-c9bc085ed387"
1060
+ },
1061
+ {
1062
+ "title": "Objectified Fact Type Name Shape",
1063
+ "type": "Objectified Fact Type Name Shape",
1064
+ "where": "this Fact Type Shape has one Objectified Fact Type Name Shape",
1065
+ "role_id": "d7ed5c14-b835-4cdd-8793-38edcc5bf080"
1066
+ },
1067
+ {
1068
+ "title": "all Ring Constraint Shape",
1069
+ "type": "Ring Constraint Shape",
1070
+ "where": "some Ring Constraint Shape is attached to this Fact Type Shape",
1071
+ "role_id": "359bb216-31d6-4947-93a4-6d5ea9140b0d",
1072
+ "is_list": true
1073
+ }
1074
+ ]
1075
+ },
1076
+ "Frequency": {
1077
+ "is_main": false,
1078
+ "id": "7785321b-7e02-45bc-ad3c-72ae2ffded96",
1079
+ "functions": [
1080
+ {
1081
+ "title": "all Presence Constraint as Max Frequency",
1082
+ "type": "Presence Constraint",
1083
+ "where": "some Presence Constraint has this max-Frequency",
1084
+ "role_id": "0d169f73-8d9f-450d-b337-b946def9a113",
1085
+ "is_list": true
1086
+ },
1087
+ {
1088
+ "title": "all Presence Constraint as Min Frequency",
1089
+ "type": "Presence Constraint",
1090
+ "where": "some Presence Constraint has this min-Frequency",
1091
+ "role_id": "7226144f-911d-44eb-9dbb-34f379d63a32",
1092
+ "is_list": true
1093
+ }
1094
+ ]
1095
+ },
1096
+ "Guid": {
1097
+ "is_main": false,
1098
+ "id": "d4112c11-eecb-4911-b12d-1496d22d6cf3",
1099
+ "functions": [
1100
+ {
1101
+ "title": "Alternative Set",
1102
+ "type": "Alternative Set",
1103
+ "where": "this Guid is of one Alternative Set",
1104
+ "role_id": "8a86554d-73ac-4326-b530-4b8a698a8b35"
1105
+ },
1106
+ {
1107
+ "title": "Component",
1108
+ "type": "Component",
1109
+ "where": "this Guid is of one Component",
1110
+ "role_id": "c6a4bcb8-0107-4f9c-a535-ae1833b0e5b5"
1111
+ },
1112
+ {
1113
+ "title": "Composition",
1114
+ "type": "Composition",
1115
+ "where": "this Guid is of one Composition",
1116
+ "role_id": "adb24b1f-f2d5-4d12-a321-60d3a1f27f79"
1117
+ },
1118
+ {
1119
+ "title": "Concept",
1120
+ "type": "Concept",
1121
+ "where": "this Guid is of one Concept",
1122
+ "role_id": "daf2bfc3-2278-42b3-ab61-069b40a74709"
1123
+ },
1124
+ {
1125
+ "title": "Role Sequence",
1126
+ "type": "Role Sequence",
1127
+ "where": "this Guid is of one Role Sequence",
1128
+ "role_id": "3daa88ee-5bd3-4f01-93b3-2c10c1518365"
1129
+ },
1130
+ {
1131
+ "title": "Shape",
1132
+ "type": "Shape",
1133
+ "where": "this Guid is of one Shape",
1134
+ "role_id": "89effce3-4ba3-40ee-a202-007e081f2111"
1135
+ },
1136
+ {
1137
+ "title": "Step",
1138
+ "type": "Step",
1139
+ "where": "this Guid is of one Step",
1140
+ "role_id": "e491e677-a6e7-479c-a5e6-e8ed4abaa987"
1141
+ }
1142
+ ]
1143
+ },
1144
+ "Implication Rule": {
1145
+ "is_main": false,
1146
+ "id": "2946d526-e9e2-4443-82c6-10f4b4508dc5",
1147
+ "functions": [
1148
+ {
1149
+ "title": "all Concept",
1150
+ "type": "Concept",
1151
+ "where": "some Concept is implied by this Implication Rule",
1152
+ "role_id": "3a8d7d97-4d4a-42df-a834-262f24fdba12",
1153
+ "is_list": true
1154
+ },
1155
+ {
1156
+ "title": "Implication Rule Name",
1157
+ "type": "Implication Rule Name",
1158
+ "where": "this Implication Rule has one Implication Rule Name",
1159
+ "role_id": "5cc39480-7b09-42a2-933c-aee656d0b20e"
1160
+ }
1161
+ ]
1162
+ },
1163
+ "Implication Rule Name": {
1164
+ "is_main": false,
1165
+ "id": "dc22e3d7-08c7-42ca-bf08-22c3a11e6bee",
1166
+ "functions": [
1167
+ {
1168
+ "title": "Implication Rule",
1169
+ "type": "Implication Rule",
1170
+ "where": "this Implication Rule Name is of one Implication Rule",
1171
+ "role_id": "ac782792-b4bf-4450-8786-94718b8c499d"
1172
+ }
1173
+ ]
1174
+ },
1175
+ "Implicit Boolean Value Type": {
1176
+ "is_main": false,
1177
+ "id": "ce112532-5798-4b76-bd0a-eb436ca901fa",
1178
+ "functions": [
1179
+ {
1180
+ "title": "as Domain Object Type",
1181
+ "type": "Domain Object Type"
1182
+ },
1183
+ {
1184
+ "title": "as Object Type",
1185
+ "type": "Object Type"
1186
+ },
1187
+ {
1188
+ "title": "as Value Type",
1189
+ "type": "Value Type"
1190
+ }
1191
+ ]
1192
+ },
1193
+ "Indicator": {
1194
+ "is_main": false,
1195
+ "id": "e894383e-b18b-4c1e-aff3-b4e8d1446464",
1196
+ "functions": [
1197
+ {
1198
+ "title": "as Component",
1199
+ "type": "Component"
1200
+ },
1201
+ {
1202
+ "title": "Role",
1203
+ "type": "Role",
1204
+ "where": "this Indicator indicates one Role played",
1205
+ "role_id": "797f180e-ad29-474e-9207-80bf64b2c593"
1206
+ }
1207
+ ]
1208
+ },
1209
+ "Injection": {
1210
+ "is_main": false,
1211
+ "id": "2cf96802-d1e0-4fc2-b76d-086b7c09c423",
1212
+ "functions": [
1213
+ {
1214
+ "title": "as Component",
1215
+ "type": "Component"
1216
+ },
1217
+ {
1218
+ "title": "as Mapping",
1219
+ "type": "Mapping"
1220
+ }
1221
+ ]
1222
+ },
1223
+ "Instance": {
1224
+ "is_main": false,
1225
+ "id": "0c49713f-0318-456b-a8a7-b7f409d25cbe",
1226
+ "functions": [
1227
+ {
1228
+ "title": "Value",
1229
+ "type": "Value",
1230
+ "where": "this Instance has one Value",
1231
+ "role_id": "74d59729-ef33-4211-9d70-0214d2677654"
1232
+ },
1233
+ {
1234
+ "title": "Concept",
1235
+ "type": "Concept",
1236
+ "where": "this Instance is an instance of one Concept",
1237
+ "role_id": "df2d530f-7778-4bc3-b629-8ba64d90f163"
1238
+ },
1239
+ {
1240
+ "title": "Object Type",
1241
+ "type": "Object Type",
1242
+ "where": "this Instance is of one Object Type",
1243
+ "role_id": "5f455527-05ab-44f0-be71-44f55d6497f9"
1244
+ },
1245
+ {
1246
+ "title": "Fact",
1247
+ "type": "Fact",
1248
+ "where": "this Instance objectifies one Fact",
1249
+ "role_id": "7a23b705-457c-459d-9369-67caeaa29379"
1250
+ },
1251
+ {
1252
+ "title": "all Role Value",
1253
+ "type": "Role Value",
1254
+ "where": "this Instance plays some Role Value",
1255
+ "role_id": "68e61cb2-d1d6-4e9a-805c-733fa1616b93",
1256
+ "is_list": true
1257
+ },
1258
+ {
1259
+ "title": "Population",
1260
+ "type": "Population",
1261
+ "where": "this Instance belongs to one Population",
1262
+ "role_id": "23407a47-dc4c-4356-befe-51600efa081e"
1263
+ }
1264
+ ]
1265
+ },
1266
+ "Length": {
1267
+ "is_main": false,
1268
+ "id": "66378ba8-6d1c-4211-bea6-5fdc2131d6a9",
1269
+ "functions": [
1270
+ {
1271
+ "title": "all Value Type",
1272
+ "type": "Value Type",
1273
+ "where": "this Length is of some Value Type",
1274
+ "role_id": "83a649b0-f5b1-4d96-a88f-ea1e0a726d83",
1275
+ "is_list": true
1276
+ }
1277
+ ]
1278
+ },
1279
+ "Link Fact Type": {
1280
+ "is_main": false,
1281
+ "id": "358d6209-b9a8-436d-a313-4d8bffb7d359",
1282
+ "functions": [
1283
+ {
1284
+ "title": "as Fact Type",
1285
+ "type": "Fact Type"
1286
+ },
1287
+ {
1288
+ "title": "Implying Role",
1289
+ "type": "Role",
1290
+ "where": "this Link Fact Type has one implying-Role",
1291
+ "role_id": "7c5ba158-2f3c-4ae3-b290-9d3a5690a676"
1292
+ }
1293
+ ]
1294
+ },
1295
+ "Literal": {
1296
+ "is_main": false,
1297
+ "id": "c28fd6ce-663c-48fe-bc22-ecfcd7686d22",
1298
+ "functions": [
1299
+ {
1300
+ "title": "all Value",
1301
+ "type": "Value",
1302
+ "where": "this Literal represents some Value",
1303
+ "role_id": "c22c94d1-5bc8-488f-83ac-c0a6360da56d",
1304
+ "is_list": true
1305
+ }
1306
+ ]
1307
+ },
1308
+ "Location": {
1309
+ "is_main": false,
1310
+ "id": "52124cad-66d9-4f1a-8012-884fb3c45c05",
1311
+ "functions": [
1312
+ {
1313
+ "title": "X",
1314
+ "type": "X",
1315
+ "where": "this Location is at one X",
1316
+ "role_id": "f5010e93-8575-445e-8277-5cb5f6606f33"
1317
+ },
1318
+ {
1319
+ "title": "Y",
1320
+ "type": "Y",
1321
+ "where": "this Location is at one Y",
1322
+ "role_id": "c709cede-8c4e-4eba-ae33-f3296fcf9eca"
1323
+ },
1324
+ {
1325
+ "title": "all Shape",
1326
+ "type": "Shape",
1327
+ "where": "some Shape is at this Location",
1328
+ "role_id": "005fe80b-0805-4194-ab0f-55f8090044a7",
1329
+ "is_list": true
1330
+ }
1331
+ ]
1332
+ },
1333
+ "Mapping": {
1334
+ "is_main": false,
1335
+ "id": "dc9db4bc-6e98-4a18-929c-3a4439ad9637",
1336
+ "functions": [
1337
+ {
1338
+ "title": "as Component",
1339
+ "type": "Component"
1340
+ },
1341
+ {
1342
+ "title": "as Absorption",
1343
+ "type": "Absorption"
1344
+ },
1345
+ {
1346
+ "title": "as Injection",
1347
+ "type": "Injection"
1348
+ },
1349
+ {
1350
+ "title": "as Nesting",
1351
+ "type": "Nesting"
1352
+ },
1353
+ {
1354
+ "title": "all Member",
1355
+ "type": "Component",
1356
+ "where": "this Mapping contains some Member",
1357
+ "role_id": "db852122-9eb5-4ef0-9d84-b93e541c4de6",
1358
+ "is_list": true
1359
+ },
1360
+ {
1361
+ "title": "Composite",
1362
+ "type": "Composite",
1363
+ "where": "this Mapping projects one Composite",
1364
+ "role_id": "3f1caa11-b5e3-4323-85d7-5756c8b81ddd"
1365
+ },
1366
+ {
1367
+ "title": "Object Type",
1368
+ "type": "Object Type",
1369
+ "where": "this Mapping represents one Object Type",
1370
+ "role_id": "afdcb944-939f-4033-a94c-5a61590de4eb"
1371
+ }
1372
+ ]
1373
+ },
1374
+ "Model Note Shape": {
1375
+ "is_main": false,
1376
+ "id": "3007f4e5-bf6f-440b-88b5-899dc24fe049",
1377
+ "functions": [
1378
+ {
1379
+ "title": "as Shape",
1380
+ "type": "Shape"
1381
+ },
1382
+ {
1383
+ "title": "Context Note",
1384
+ "type": "Context Note",
1385
+ "where": "this Model Note Shape is for one Context Note",
1386
+ "role_id": "acfc9e14-49e6-4fac-988a-d8aa536dac4b"
1387
+ }
1388
+ ]
1389
+ },
1390
+ "Name": {
1391
+ "is_main": false,
1392
+ "id": "320ec865-6e0a-4513-8895-ec3148348f13",
1393
+ "functions": [
1394
+ {
1395
+ "title": "all Component",
1396
+ "type": "Component",
1397
+ "where": "some Component projects this Name",
1398
+ "role_id": "a3403c99-128c-4aaa-b7bb-162b7bc4441c",
1399
+ "is_list": true
1400
+ },
1401
+ {
1402
+ "title": "Composition",
1403
+ "type": "Composition",
1404
+ "where": "this Name is of one Composition",
1405
+ "role_id": "28eaa94a-7217-4dde-b320-acaa5d78f88e"
1406
+ },
1407
+ {
1408
+ "title": "all Diagram",
1409
+ "type": "Diagram",
1410
+ "where": "this Name is of some Diagram",
1411
+ "role_id": "396fadce-4b46-44cb-90e5-070f98d5dff0",
1412
+ "is_list": true
1413
+ },
1414
+ {
1415
+ "title": "all Constraint",
1416
+ "type": "Constraint",
1417
+ "where": "this Name is of some Constraint",
1418
+ "role_id": "86d7dc07-7722-4424-97b2-d729b526b14a",
1419
+ "is_list": true
1420
+ },
1421
+ {
1422
+ "title": "Unit",
1423
+ "type": "Unit",
1424
+ "where": "this Name is of one Unit",
1425
+ "role_id": "a1bb6429-bca3-46ca-92f5-2a77d065b82a"
1426
+ },
1427
+ {
1428
+ "title": "all Object Type",
1429
+ "type": "Object Type",
1430
+ "where": "some Object Type is called this Name",
1431
+ "role_id": "5f414dbc-743b-453d-91b0-3547fbcfdf04",
1432
+ "is_list": true
1433
+ },
1434
+ {
1435
+ "title": "all Population",
1436
+ "type": "Population",
1437
+ "where": "this Name is of some Population",
1438
+ "role_id": "b822797c-ea5e-403e-a204-5afc04a38e37",
1439
+ "is_list": true
1440
+ },
1441
+ {
1442
+ "title": "all Role",
1443
+ "type": "Role",
1444
+ "where": "this role-Name is name of some Role",
1445
+ "role_id": "dcbabd03-eda1-4f4f-8e7f-c1c5d20a04ce",
1446
+ "is_list": true
1447
+ },
1448
+ {
1449
+ "title": "Topic",
1450
+ "type": "Topic",
1451
+ "where": "this topic-Name is of one Topic",
1452
+ "role_id": "89f3042a-e24f-468c-9795-455880b10521"
1453
+ },
1454
+ {
1455
+ "title": "Plural Named Unit",
1456
+ "type": "Unit",
1457
+ "where": "this plural-Name is of one Plural Named Unit",
1458
+ "role_id": "9b79b3d4-8545-4e55-8dee-086dedbde9d2"
1459
+ },
1460
+ {
1461
+ "title": "all Value Type Parameter",
1462
+ "type": "Value Type Parameter",
1463
+ "where": "this Name is a facet of some Value Type",
1464
+ "role_id": "52b86835-5a35-42de-a914-5551cbead755",
1465
+ "is_list": true
1466
+ },
1467
+ {
1468
+ "title": "all Variable",
1469
+ "type": "Variable",
1470
+ "where": "this Name is of some Variable",
1471
+ "role_id": "2c24fac6-3ea8-4c0a-8c7e-6ee006f023bf",
1472
+ "is_list": true
1473
+ },
1474
+ {
1475
+ "title": "Vocabulary",
1476
+ "type": "Vocabulary",
1477
+ "where": "one Vocabulary is called this Name",
1478
+ "role_id": "89774f35-6f6f-458f-b142-63c84709319a"
1479
+ }
1480
+ ]
1481
+ },
1482
+ "Nesting": {
1483
+ "is_main": false,
1484
+ "id": "6de90212-4c52-4b28-8892-532f28ad621a",
1485
+ "functions": [
1486
+ {
1487
+ "title": "as Component",
1488
+ "type": "Component"
1489
+ },
1490
+ {
1491
+ "title": "as Mapping",
1492
+ "type": "Mapping"
1493
+ }
1494
+ ]
1495
+ },
1496
+ "Numerator": {
1497
+ "is_main": false,
1498
+ "id": "c22bbb35-f44e-41fe-a796-754ff902041a",
1499
+ "functions": [
1500
+ {
1501
+ "title": "all Coefficient",
1502
+ "type": "Coefficient",
1503
+ "where": "some Coefficient has this Numerator",
1504
+ "role_id": "a10da411-ba5e-455c-8ecf-96482a683dbe",
1505
+ "is_list": true
1506
+ }
1507
+ ]
1508
+ },
1509
+ "ORM Diagram": {
1510
+ "is_main": false,
1511
+ "id": "a2fadfe3-eb1f-42ad-8c9c-e3da34bcd1dd",
1512
+ "functions": [
1513
+ {
1514
+ "title": "as Diagram",
1515
+ "type": "Diagram"
1516
+ },
1517
+ {
1518
+ "title": "all Shape",
1519
+ "type": "Shape",
1520
+ "where": "this ORM Diagram includes some Shape",
1521
+ "role_id": "99b4a015-58bc-4ddc-85a4-6ae43586e254",
1522
+ "is_list": true
1523
+ }
1524
+ ]
1525
+ },
1526
+ "Object Type": {
1527
+ "is_main": true,
1528
+ "id": "7f8d48ae-b7ea-4f73-9efb-11bd80a20f7c",
1529
+ "functions": [
1530
+ {
1531
+ "title": "as Domain Object Type",
1532
+ "type": "Domain Object Type"
1533
+ },
1534
+ {
1535
+ "title": "as Entity Type",
1536
+ "type": "Entity Type"
1537
+ },
1538
+ {
1539
+ "title": "as Implicit Boolean Value Type",
1540
+ "type": "Implicit Boolean Value Type"
1541
+ },
1542
+ {
1543
+ "title": "as Value Type",
1544
+ "type": "Value Type"
1545
+ },
1546
+ {
1547
+ "title": "all Instance",
1548
+ "type": "Instance",
1549
+ "where": "some Instance is of this Object Type",
1550
+ "role_id": "5cfbeba9-d601-4b99-a961-38d596dc2462",
1551
+ "is_list": true
1552
+ },
1553
+ {
1554
+ "title": "all Mapping",
1555
+ "type": "Mapping",
1556
+ "where": "some Mapping represents this Object Type",
1557
+ "role_id": "fcb762f6-bc74-4339-b828-cbe4f5e298db",
1558
+ "is_list": true
1559
+ },
1560
+ {
1561
+ "title": "all Object Type Shape",
1562
+ "type": "Object Type Shape",
1563
+ "where": "this Object Type has some Object Type Shape",
1564
+ "role_id": "39dea521-353b-4c62-87ab-36bdd1174304",
1565
+ "is_list": true
1566
+ },
1567
+ {
1568
+ "title": "Vocabulary",
1569
+ "type": "Vocabulary",
1570
+ "where": "this Object Type belongs to one Vocabulary",
1571
+ "role_id": "cbb8af81-e40f-4d48-bd41-8b9ed196105e"
1572
+ },
1573
+ {
1574
+ "title": "Concept",
1575
+ "type": "Concept",
1576
+ "where": "this Object Type is an instance of one Concept",
1577
+ "role_id": "f6fc2148-2c0d-43bf-9e80-ed4d90368905"
1578
+ },
1579
+ {
1580
+ "title": "Name",
1581
+ "type": "Name",
1582
+ "where": "this Object Type is called one Name",
1583
+ "role_id": "b7e9f530-5bd6-416e-921a-f051d4eaf28d"
1584
+ },
1585
+ {
1586
+ "title": "Object Type is independent",
1587
+ "type": "boolean",
1588
+ "where": "this Object Type is independent",
1589
+ "role_id": "95e0c7c1-2c0b-4ad0-96fd-c6ae94423fad"
1590
+ },
1591
+ {
1592
+ "title": "all Role",
1593
+ "type": "Role",
1594
+ "where": "this Object Type plays some Role",
1595
+ "role_id": "e6a2c87f-2157-42a8-9c17-1fe1d8fbff56",
1596
+ "is_list": true
1597
+ },
1598
+ {
1599
+ "title": "Pronoun",
1600
+ "type": "Pronoun",
1601
+ "where": "this Object Type uses one Pronoun",
1602
+ "role_id": "4346b22a-21b4-48e5-8e30-39d908f0818a"
1603
+ },
1604
+ {
1605
+ "title": "all Variable",
1606
+ "type": "Variable",
1607
+ "where": "this Object Type is referenced in some Variable",
1608
+ "role_id": "ead7c4ed-3423-4cd3-80d9-2f377a249d6c",
1609
+ "is_list": true
1610
+ }
1611
+ ]
1612
+ },
1613
+ "Object Type Shape": {
1614
+ "is_main": false,
1615
+ "id": "5768468d-21d9-4d08-b404-b503d7c68358",
1616
+ "functions": [
1617
+ {
1618
+ "title": "as Shape",
1619
+ "type": "Shape"
1620
+ },
1621
+ {
1622
+ "title": "Object Type Shape has expanded reference mode",
1623
+ "type": "boolean",
1624
+ "where": "this Object Type Shape has expanded reference mode",
1625
+ "role_id": "41c592b6-e09d-4b02-9c68-f0d8abdf63c0"
1626
+ },
1627
+ {
1628
+ "title": "Object Type",
1629
+ "type": "Object Type",
1630
+ "where": "this Object Type Shape is for one Object Type",
1631
+ "role_id": "fd68b3c1-e778-44ac-b928-d4ebb69e327f"
1632
+ },
1633
+ {
1634
+ "title": "all Value Constraint Shape",
1635
+ "type": "Value Constraint Shape",
1636
+ "where": "this Object Type Shape has some Value Constraint Shape",
1637
+ "role_id": "a890ab70-f248-434d-8c4b-238774311e4a",
1638
+ "is_list": true
1639
+ }
1640
+ ]
1641
+ },
1642
+ "Objectified Fact Type Name Shape": {
1643
+ "is_main": false,
1644
+ "id": "c58bbc94-06fe-4d7b-88a4-4b7b3d1ca68d",
1645
+ "functions": [
1646
+ {
1647
+ "title": "as Shape",
1648
+ "type": "Shape"
1649
+ },
1650
+ {
1651
+ "title": "Fact Type Shape",
1652
+ "type": "Fact Type Shape",
1653
+ "where": "this Objectified Fact Type Name Shape is for one Fact Type Shape",
1654
+ "role_id": "ec12f9ac-01af-4f4d-a5e9-cbfde5752d47"
1655
+ }
1656
+ ]
1657
+ },
1658
+ "Offset": {
1659
+ "is_main": false,
1660
+ "id": "141d7919-bdbf-44a6-8fc8-913fc3254c07",
1661
+ "functions": [
1662
+ {
1663
+ "title": "all Unit",
1664
+ "type": "Unit",
1665
+ "where": "some Unit has this Offset",
1666
+ "role_id": "c27f0d96-46fe-451a-b001-3ec8da309a26",
1667
+ "is_list": true
1668
+ }
1669
+ ]
1670
+ },
1671
+ "Ordinal": {
1672
+ "is_main": false,
1673
+ "id": "f065d545-e2f4-4588-a946-cc5a00ef5a5c",
1674
+ "functions": [
1675
+ {
1676
+ "title": "all Role Display",
1677
+ "type": "Role Display",
1678
+ "where": "some Fact Type Shape displays some Role in this Ordinal position",
1679
+ "role_id": "ab162fa5-7c73-4d09-9a4c-029cbcead7af",
1680
+ "is_list": true
1681
+ },
1682
+ {
1683
+ "title": "all Reading",
1684
+ "type": "Reading",
1685
+ "where": "this Ordinal reading for fact type is some Reading",
1686
+ "role_id": "4d73e44f-9dc0-4fa2-8854-83de63b9e351",
1687
+ "is_list": true
1688
+ },
1689
+ {
1690
+ "title": "all Role Ref",
1691
+ "type": "Role Ref",
1692
+ "where": "some Role Sequence in this Ordinal position includes some Role",
1693
+ "role_id": "ce6aac26-47e8-4e1c-b7c0-b07ea70cccaf",
1694
+ "is_list": true
1695
+ },
1696
+ {
1697
+ "title": "all Role",
1698
+ "type": "Role",
1699
+ "where": "this Ordinal applies to some Role",
1700
+ "role_id": "d75e577f-ab16-4765-875f-577ee933d40d",
1701
+ "is_list": true
1702
+ },
1703
+ {
1704
+ "title": "all Set Comparison Roles",
1705
+ "type": "Set Comparison Roles",
1706
+ "where": "in this Ordinal position some Set Comparison Constraint has some Role Sequence",
1707
+ "role_id": "a93ef648-0f3e-438c-b8cf-89269c2ea858",
1708
+ "is_list": true
1709
+ },
1710
+ {
1711
+ "title": "all Variable",
1712
+ "type": "Variable",
1713
+ "where": "some Variable has this Ordinal position",
1714
+ "role_id": "620a92ad-8dbf-45dc-a317-80cebd4869bf",
1715
+ "is_list": true
1716
+ }
1717
+ ]
1718
+ },
1719
+ "Play": {
1720
+ "is_main": true,
1721
+ "id": "779c15d4-ad8b-4d89-bb3a-323f802f37b2",
1722
+ "functions": [
1723
+ {
1724
+ "title": "involving Variable",
1725
+ "type": "Variable",
1726
+ "where": "this Variable is restricted by some Role of some Step"
1727
+ },
1728
+ {
1729
+ "title": "involving Role",
1730
+ "type": "Role",
1731
+ "where": "some Variable is restricted by this Role of some Step"
1732
+ },
1733
+ {
1734
+ "title": "involving Step",
1735
+ "type": "Step",
1736
+ "where": "this Step contains some Role restricting some Variable"
1737
+ },
1738
+ {
1739
+ "title": "Play is input",
1740
+ "type": "boolean",
1741
+ "where": "this Play is input",
1742
+ "role_id": "73b36d79-41fd-4f22-b1e1-7b9976b5d357"
1743
+ },
1744
+ {
1745
+ "title": "Role Ref",
1746
+ "type": "Role Ref",
1747
+ "where": "this Play projects one Role Ref",
1748
+ "role_id": "5da08ecf-692d-462e-a7a4-fef1c0dbf723"
1749
+ }
1750
+ ]
1751
+ },
1752
+ "Population": {
1753
+ "is_main": true,
1754
+ "id": "f31db767-97d0-44a0-8de3-db8c493dede2",
1755
+ "functions": [
1756
+ {
1757
+ "title": "Name",
1758
+ "type": "Name",
1759
+ "where": "this Population has one Name",
1760
+ "role_id": "93be9af1-6a61-4ce9-a7ab-818a02f37e68"
1761
+ },
1762
+ {
1763
+ "title": "all Fact",
1764
+ "type": "Fact",
1765
+ "where": "this Population includes some Fact",
1766
+ "role_id": "f87e0ead-2e94-453b-a97d-c990ef0fc163",
1767
+ "is_list": true
1768
+ },
1769
+ {
1770
+ "title": "all Instance",
1771
+ "type": "Instance",
1772
+ "where": "this Population includes some Instance",
1773
+ "role_id": "b5ea1cde-7cec-4c24-bed9-4cbb2302f0f4",
1774
+ "is_list": true
1775
+ },
1776
+ {
1777
+ "title": "all Role Value",
1778
+ "type": "Role Value",
1779
+ "where": "this Population includes some Role Value",
1780
+ "role_id": "839f9356-741e-4a89-b6b5-5a97e0293ad6",
1781
+ "is_list": true
1782
+ },
1783
+ {
1784
+ "title": "Concept",
1785
+ "type": "Concept",
1786
+ "where": "this Population is an instance of one Concept",
1787
+ "role_id": "2a466d8f-3052-4d99-b9b1-e57c8b2ce79c"
1788
+ },
1789
+ {
1790
+ "title": "Vocabulary",
1791
+ "type": "Vocabulary",
1792
+ "where": "this Population belongs to one Vocabulary",
1793
+ "role_id": "79d7e324-92fa-40d4-a1a0-5e02d8a68c1e"
1794
+ }
1795
+ ]
1796
+ },
1797
+ "Presence Constraint": {
1798
+ "is_main": false,
1799
+ "id": "0ec64e91-fc7a-4aa8-8627-e494cb7ed400",
1800
+ "functions": [
1801
+ {
1802
+ "title": "as Constraint",
1803
+ "type": "Constraint"
1804
+ },
1805
+ {
1806
+ "title": "Role Sequence",
1807
+ "type": "Role Sequence",
1808
+ "where": "this Presence Constraint covers one Role Sequence",
1809
+ "role_id": "b282d3dd-466f-4a12-822b-5ce257c69260"
1810
+ },
1811
+ {
1812
+ "title": "Max Frequency",
1813
+ "type": "Frequency",
1814
+ "where": "this Presence Constraint has one max-Frequency",
1815
+ "role_id": "9471def0-db1f-435a-8c30-10e0cf850218"
1816
+ },
1817
+ {
1818
+ "title": "Min Frequency",
1819
+ "type": "Frequency",
1820
+ "where": "this Presence Constraint has one min-Frequency",
1821
+ "role_id": "98ef523a-acb4-4a10-8de1-77e8ecb308ea"
1822
+ },
1823
+ {
1824
+ "title": "Presence Constraint is mandatory",
1825
+ "type": "boolean",
1826
+ "where": "this Presence Constraint is mandatory",
1827
+ "role_id": "d5ed132d-1e13-453e-b60f-3d2e95b9800e"
1828
+ },
1829
+ {
1830
+ "title": "Presence Constraint is preferred identifier",
1831
+ "type": "boolean",
1832
+ "where": "this Presence Constraint is preferred identifier",
1833
+ "role_id": "e0419d92-ee35-4073-887f-287b2feba6db"
1834
+ }
1835
+ ]
1836
+ },
1837
+ "Pronoun": {
1838
+ "is_main": false,
1839
+ "id": "001749cb-6209-4209-be68-b886bbbf6feb",
1840
+ "functions": [
1841
+ {
1842
+ "title": "all Object Type",
1843
+ "type": "Object Type",
1844
+ "where": "some Object Type uses this Pronoun",
1845
+ "role_id": "d535f1a5-514f-443f-b3fe-650656476f12",
1846
+ "is_list": true
1847
+ }
1848
+ ]
1849
+ },
1850
+ "Query": {
1851
+ "is_main": false,
1852
+ "id": "9732cb43-6e2f-486d-a1af-e8a292e73a1c",
1853
+ "functions": [
1854
+ {
1855
+ "title": "all Variable",
1856
+ "type": "Variable",
1857
+ "where": "this Query includes some Variable",
1858
+ "role_id": "688ac693-af08-499d-9561-0d1ade62d71a",
1859
+ "is_list": true
1860
+ },
1861
+ {
1862
+ "title": "Concept",
1863
+ "type": "Concept",
1864
+ "where": "this Query is an instance of one Concept",
1865
+ "role_id": "5ac27b07-3370-4af1-a3bf-b975e155c686"
1866
+ }
1867
+ ]
1868
+ },
1869
+ "Reading": {
1870
+ "is_main": true,
1871
+ "id": "1faa39e8-008b-4667-8e74-496605e8757f",
1872
+ "functions": [
1873
+ {
1874
+ "title": "Fact Type",
1875
+ "type": "Fact Type",
1876
+ "where": "this Reading is for one Fact Type",
1877
+ "role_id": "156b19ac-273b-44cc-908c-de057389927d"
1878
+ },
1879
+ {
1880
+ "title": "all Reading Shape",
1881
+ "type": "Reading Shape",
1882
+ "where": "this Reading has some Reading Shape",
1883
+ "role_id": "1b675fcf-434e-4a3e-8530-ebec1840dca1",
1884
+ "is_list": true
1885
+ },
1886
+ {
1887
+ "title": "Text",
1888
+ "type": "Text",
1889
+ "where": "this Reading has one Text",
1890
+ "role_id": "8f956197-35c5-4177-b611-679974281a7f"
1891
+ },
1892
+ {
1893
+ "title": "Ordinal",
1894
+ "type": "Ordinal",
1895
+ "where": "this Reading is in one Ordinal position",
1896
+ "role_id": "5e70a871-fa96-4799-8256-f437726a2c36"
1897
+ },
1898
+ {
1899
+ "title": "Role Sequence",
1900
+ "type": "Role Sequence",
1901
+ "where": "this Reading is in one Role Sequence",
1902
+ "role_id": "437c9616-621b-4e30-810e-0e5f386dbf42"
1903
+ },
1904
+ {
1905
+ "title": "Reading is negative",
1906
+ "type": "boolean",
1907
+ "where": "this Reading is negative",
1908
+ "role_id": "d1bdaab4-ba40-442b-b1d2-db361b767999"
1909
+ }
1910
+ ]
1911
+ },
1912
+ "Reading Shape": {
1913
+ "is_main": false,
1914
+ "id": "a06ece2e-0a4d-4acd-9ba6-60cc1900411c",
1915
+ "functions": [
1916
+ {
1917
+ "title": "as Shape",
1918
+ "type": "Shape"
1919
+ },
1920
+ {
1921
+ "title": "Fact Type Shape",
1922
+ "type": "Fact Type Shape",
1923
+ "where": "this Reading Shape is for one Fact Type Shape",
1924
+ "role_id": "550a892c-e45e-4bee-94bc-58fda7574e5a"
1925
+ },
1926
+ {
1927
+ "title": "Reading",
1928
+ "type": "Reading",
1929
+ "where": "this Reading Shape is for one Reading",
1930
+ "role_id": "cde58d31-75d5-450e-b008-8232f35eda45"
1931
+ }
1932
+ ]
1933
+ },
1934
+ "Regular Expression": {
1935
+ "is_main": false,
1936
+ "id": "e82610a5-9653-460b-827c-1adc1d53419a",
1937
+ "functions": [
1938
+ {
1939
+ "title": "all Value Constraint",
1940
+ "type": "Value Constraint",
1941
+ "where": "some Value Constraint requires matching this Regular Expression",
1942
+ "role_id": "96ddf914-731d-4298-a8ea-b00434c0e20b",
1943
+ "is_list": true
1944
+ }
1945
+ ]
1946
+ },
1947
+ "Ring Constraint": {
1948
+ "is_main": false,
1949
+ "id": "a64f6413-6412-4b58-95a1-0154831cff17",
1950
+ "functions": [
1951
+ {
1952
+ "title": "as Constraint",
1953
+ "type": "Constraint"
1954
+ },
1955
+ {
1956
+ "title": "Other Role",
1957
+ "type": "Role",
1958
+ "where": "this Ring Constraint has one other-Role",
1959
+ "role_id": "560322ec-f7ad-48bd-b5d9-289663d67941"
1960
+ },
1961
+ {
1962
+ "title": "Ring Type",
1963
+ "type": "Ring Type",
1964
+ "where": "this Ring Constraint is of one Ring Type",
1965
+ "role_id": "a2f63933-d752-4210-a2ad-4247c802fcc8"
1966
+ },
1967
+ {
1968
+ "title": "Role",
1969
+ "type": "Role",
1970
+ "where": "this Ring Constraint has one Role",
1971
+ "role_id": "2c8f062d-5163-4084-b1b4-52f81f018041"
1972
+ }
1973
+ ]
1974
+ },
1975
+ "Ring Constraint Shape": {
1976
+ "is_main": false,
1977
+ "id": "f2ef45f0-5d47-4208-8dcf-b04db4c2abb4",
1978
+ "functions": [
1979
+ {
1980
+ "title": "as Constraint Shape",
1981
+ "type": "Constraint Shape"
1982
+ },
1983
+ {
1984
+ "title": "as Shape",
1985
+ "type": "Shape"
1986
+ },
1987
+ {
1988
+ "title": "Fact Type Shape",
1989
+ "type": "Fact Type Shape",
1990
+ "where": "this Ring Constraint Shape is attached to one Fact Type Shape",
1991
+ "role_id": "e600b1bb-d568-468f-ab57-830f9a19d9ec"
1992
+ }
1993
+ ]
1994
+ },
1995
+ "Ring Type": {
1996
+ "is_main": false,
1997
+ "id": "89b1b13d-9d47-4985-a3e7-7365b49b8c3d",
1998
+ "functions": [
1999
+ {
2000
+ "title": "all Ring Constraint",
2001
+ "type": "Ring Constraint",
2002
+ "where": "some Ring Constraint is of this Ring Type",
2003
+ "role_id": "f9926dab-9ed1-48db-b954-7c5487a38fd4",
2004
+ "is_list": true
2005
+ }
2006
+ ]
2007
+ },
2008
+ "Role": {
2009
+ "is_main": true,
2010
+ "id": "f58bb34d-5644-4f27-bbb7-1f3429e73822",
2011
+ "functions": [
2012
+ {
2013
+ "title": "all Absorption as Index Role",
2014
+ "type": "Absorption",
2015
+ "where": "some Absorption is nested under this index-Role",
2016
+ "role_id": "1ab68095-165b-4da0-8342-41b0447ab5e6",
2017
+ "is_list": true
2018
+ },
2019
+ {
2020
+ "title": "all Absorption as Parent Role",
2021
+ "type": "Absorption",
2022
+ "where": "some Absorption traverses from this parent-Role",
2023
+ "role_id": "fd9400f8-2e8b-42ac-bac4-239a256af3d0",
2024
+ "is_list": true
2025
+ },
2026
+ {
2027
+ "title": "all Absorption as Child Role",
2028
+ "type": "Absorption",
2029
+ "where": "some Absorption traverses to this child-Role",
2030
+ "role_id": "ac27b473-2eb8-4f81-b9ea-cf71d2268f90",
2031
+ "is_list": true
2032
+ },
2033
+ {
2034
+ "title": "all Discriminated Role",
2035
+ "type": "Discriminated Role",
2036
+ "where": "this Role is indicated by some Value for some Discriminator",
2037
+ "role_id": "517500b7-fd4c-40c5-a1a3-4b55817dca44",
2038
+ "is_list": true
2039
+ },
2040
+ {
2041
+ "title": "all Role Display",
2042
+ "type": "Role Display",
2043
+ "where": "some Fact Type Shape displays this Role in some Ordinal position",
2044
+ "role_id": "1eae21c6-31f4-40eb-a78a-6e51228a1593",
2045
+ "is_list": true
2046
+ },
2047
+ {
2048
+ "title": "all Indicator",
2049
+ "type": "Indicator",
2050
+ "where": "some Indicator indicates this Role played",
2051
+ "role_id": "6c225e5b-e2ae-42c9-8417-f86438e75299",
2052
+ "is_list": true
2053
+ },
2054
+ {
2055
+ "title": "Link Fact Type",
2056
+ "type": "Link Fact Type",
2057
+ "where": "this implying-Role implies one Link Fact Type",
2058
+ "role_id": "7819b93c-669d-4182-a85e-42f99cb5924c"
2059
+ },
2060
+ {
2061
+ "title": "Object Type",
2062
+ "type": "Object Type",
2063
+ "where": "this Role is played by one Object Type",
2064
+ "role_id": "2d223606-0dcd-4e52-b57d-4e0e0467adff"
2065
+ },
2066
+ {
2067
+ "title": "all Ring Constraint as Other Role",
2068
+ "type": "Ring Constraint",
2069
+ "where": "this other-Role is of some Ring Constraint",
2070
+ "role_id": "47c27923-c64e-48d5-81a6-75dda9eaa509",
2071
+ "is_list": true
2072
+ },
2073
+ {
2074
+ "title": "all Role Ref",
2075
+ "type": "Role Ref",
2076
+ "where": "this Role is in some Role Sequence in some Ordinal place",
2077
+ "role_id": "37844895-e5d6-4341-b02a-cf2ce573ee41",
2078
+ "is_list": true
2079
+ },
2080
+ {
2081
+ "title": "all Role Value",
2082
+ "type": "Role Value",
2083
+ "where": "some Role Value is of this Role",
2084
+ "role_id": "6a10754d-0cf4-493d-b8bd-9379e815759b",
2085
+ "is_list": true
2086
+ },
2087
+ {
2088
+ "title": "Fact Type",
2089
+ "type": "Fact Type",
2090
+ "where": "this Role belongs to one Fact Type",
2091
+ "role_id": "2f574992-ec9d-463a-b58a-08018c15cd42"
2092
+ },
2093
+ {
2094
+ "title": "Ordinal",
2095
+ "type": "Ordinal",
2096
+ "where": "this Role fills one Ordinal",
2097
+ "role_id": "a3146d70-d950-43d3-a60d-0f511da94511"
2098
+ },
2099
+ {
2100
+ "title": "Role Name",
2101
+ "type": "Name",
2102
+ "where": "this Role has one role-Name",
2103
+ "role_id": "988cf855-be27-4423-8213-6fde8f2ebb51"
2104
+ },
2105
+ {
2106
+ "title": "Role Value Constraint",
2107
+ "type": "Value Constraint",
2108
+ "where": "this Role has one role-Value Constraint",
2109
+ "role_id": "318fba06-4c5a-4c79-8f45-63d37a555dc5"
2110
+ },
2111
+ {
2112
+ "title": "Concept",
2113
+ "type": "Concept",
2114
+ "where": "this Role is an instance of one Concept",
2115
+ "role_id": "e4b19695-37d2-4ed2-8942-e529ae270b13"
2116
+ },
2117
+ {
2118
+ "title": "all Ring Constraint as Role",
2119
+ "type": "Ring Constraint",
2120
+ "where": "this Role is of some Ring Constraint",
2121
+ "role_id": "e21d5bfc-3b19-434b-9328-1b2cb9beb48b",
2122
+ "is_list": true
2123
+ },
2124
+ {
2125
+ "title": "all Play",
2126
+ "type": "Play",
2127
+ "where": "some Variable is restricted by this Role of some Step",
2128
+ "role_id": "8aee901e-637b-4ae2-8903-53e13ce2c4c0",
2129
+ "is_list": true
2130
+ },
2131
+ {
2132
+ "title": "Variable",
2133
+ "type": "Variable",
2134
+ "where": "this Projection is projected from one Variable",
2135
+ "role_id": "20f4b678-8369-4936-a7a9-3e7b79319dcd"
2136
+ }
2137
+ ]
2138
+ },
2139
+ "Role Display": {
2140
+ "is_main": true,
2141
+ "id": "9a885317-7992-4f2b-9df2-e95fb11efba5",
2142
+ "functions": [
2143
+ {
2144
+ "title": "involving Fact Type Shape",
2145
+ "type": "Fact Type Shape",
2146
+ "where": "this Fact Type Shape displays some Role in some Ordinal position"
2147
+ },
2148
+ {
2149
+ "title": "involving Role",
2150
+ "type": "Role",
2151
+ "where": "some Fact Type Shape displays this Role in some Ordinal position"
2152
+ },
2153
+ {
2154
+ "title": "involving Ordinal",
2155
+ "type": "Ordinal",
2156
+ "where": "some Fact Type Shape displays some Role in this Ordinal position"
2157
+ },
2158
+ {
2159
+ "title": "Value Constraint Shape",
2160
+ "type": "Value Constraint Shape",
2161
+ "where": "this Role Display has one Value Constraint Shape",
2162
+ "role_id": "fcc9f7bd-2fc2-4178-982b-108b448c8f12"
2163
+ },
2164
+ {
2165
+ "title": "Role Name Shape",
2166
+ "type": "Role Name Shape",
2167
+ "where": "this Role Display has one Role Name Shape",
2168
+ "role_id": "14ab30a7-7b34-442e-a899-78dcba4802ee"
2169
+ }
2170
+ ]
2171
+ },
2172
+ "Role Name Shape": {
2173
+ "is_main": false,
2174
+ "id": "83e3f51f-e30a-42bc-a9fd-2f65c2c657a4",
2175
+ "functions": [
2176
+ {
2177
+ "title": "as Shape",
2178
+ "type": "Shape"
2179
+ },
2180
+ {
2181
+ "title": "Role Display",
2182
+ "type": "Role Display",
2183
+ "where": "this Role Name Shape is for one Role Display",
2184
+ "role_id": "7abe2868-7cf3-453c-879a-b39820c68f13"
2185
+ }
2186
+ ]
2187
+ },
2188
+ "Role Ref": {
2189
+ "is_main": true,
2190
+ "id": "4b5c4866-a4e9-4ad0-9e74-ee6a49e8458b",
2191
+ "functions": [
2192
+ {
2193
+ "title": "involving Role Sequence",
2194
+ "type": "Role Sequence",
2195
+ "where": "this Role Sequence in some Ordinal position includes some Role"
2196
+ },
2197
+ {
2198
+ "title": "involving Ordinal",
2199
+ "type": "Ordinal",
2200
+ "where": "some Role Sequence in this Ordinal position includes some Role"
2201
+ },
2202
+ {
2203
+ "title": "involving Role",
2204
+ "type": "Role",
2205
+ "where": "this Role is in some Role Sequence in some Ordinal place"
2206
+ },
2207
+ {
2208
+ "title": "Play",
2209
+ "type": "Play",
2210
+ "where": "this Role Ref is projected from one Play",
2211
+ "role_id": "4bd6941a-4dbf-4047-ad21-cfe88ef9fb37"
2212
+ },
2213
+ {
2214
+ "title": "Leading Adjective",
2215
+ "type": "Adjective",
2216
+ "where": "this Role Ref has one leading-Adjective",
2217
+ "role_id": "b2442264-d086-449e-9f97-3d5b57be5a51"
2218
+ },
2219
+ {
2220
+ "title": "Trailing Adjective",
2221
+ "type": "Adjective",
2222
+ "where": "this Role Ref has one trailing-Adjective",
2223
+ "role_id": "43ad26fa-4e5f-4a32-bcd1-26ec2481f176"
2224
+ }
2225
+ ]
2226
+ },
2227
+ "Role Sequence": {
2228
+ "is_main": true,
2229
+ "id": "ca539652-9219-410e-a5ae-3013a5bad526",
2230
+ "functions": [
2231
+ {
2232
+ "title": "all Presence Constraint",
2233
+ "type": "Presence Constraint",
2234
+ "where": "some Presence Constraint covers this Role Sequence",
2235
+ "role_id": "0f319626-5bfd-4702-b413-f79eaee5b98c",
2236
+ "is_list": true
2237
+ },
2238
+ {
2239
+ "title": "all Reading",
2240
+ "type": "Reading",
2241
+ "where": "this Role Sequence is for some Reading",
2242
+ "role_id": "f3d79225-3692-478e-a391-34693c77b353",
2243
+ "is_list": true
2244
+ },
2245
+ {
2246
+ "title": "Guid",
2247
+ "type": "Guid",
2248
+ "where": "this Role Sequence has one Guid",
2249
+ "role_id": "1a0cf528-031b-4354-b4e1-d0f6c727816d"
2250
+ },
2251
+ {
2252
+ "title": "Role Sequence has unused dependency to force table in norma",
2253
+ "type": "boolean",
2254
+ "where": "this Role Sequence has unused dependency to force table in norma",
2255
+ "role_id": "c1125688-5e37-4fc2-99a2-fda1e5878382"
2256
+ },
2257
+ {
2258
+ "title": "all Role Ref",
2259
+ "type": "Role Ref",
2260
+ "where": "this Role Sequence in some Ordinal position includes some Role",
2261
+ "role_id": "21226f5f-8f5b-4d56-bfc0-9672e85f1364",
2262
+ "is_list": true
2263
+ },
2264
+ {
2265
+ "title": "all Set Comparison Roles",
2266
+ "type": "Set Comparison Roles",
2267
+ "where": "this Role Sequence is some Ordinal in some Set Comparison Constraint",
2268
+ "role_id": "610a42c4-8a4b-412b-9c4b-656365e6457f",
2269
+ "is_list": true
2270
+ },
2271
+ {
2272
+ "title": "all Subset Constraint as Subset Role Sequence",
2273
+ "type": "Subset Constraint",
2274
+ "where": "some Subset Constraint covers this subset-Role Sequence",
2275
+ "role_id": "fdaa0b17-4a2c-4ebd-9a89-8326afe78d14",
2276
+ "is_list": true
2277
+ },
2278
+ {
2279
+ "title": "all Subset Constraint as Superset Role Sequence",
2280
+ "type": "Subset Constraint",
2281
+ "where": "some Subset Constraint covers this superset-Role Sequence",
2282
+ "role_id": "b12f0c3e-c40a-44dc-b689-08c6f29ce2d2",
2283
+ "is_list": true
2284
+ }
2285
+ ]
2286
+ },
2287
+ "Role Value": {
2288
+ "is_main": true,
2289
+ "id": "3651a045-f59a-4e20-9987-2088f534184c",
2290
+ "functions": [
2291
+ {
2292
+ "title": "Instance",
2293
+ "type": "Instance",
2294
+ "where": "this Role Value is of one Instance",
2295
+ "role_id": "2bae2347-ab63-4705-ace1-c1134b97014e"
2296
+ },
2297
+ {
2298
+ "title": "Population",
2299
+ "type": "Population",
2300
+ "where": "this Role Value belongs to one Population",
2301
+ "role_id": "4bf1734f-b45c-49a9-b465-eb8368857d9b"
2302
+ },
2303
+ {
2304
+ "title": "Fact",
2305
+ "type": "Fact",
2306
+ "where": "this Role Value fulfils one Fact",
2307
+ "role_id": "1165b54e-f3a9-4099-aa2e-5be3dafd0636"
2308
+ },
2309
+ {
2310
+ "title": "Role",
2311
+ "type": "Role",
2312
+ "where": "this Role Value is of one Role",
2313
+ "role_id": "50bc8851-6911-4043-ad9b-d9e24b160594"
2314
+ }
2315
+ ]
2316
+ },
2317
+ "Rotation Setting": {
2318
+ "is_main": false,
2319
+ "id": "3c871593-963b-4cd3-9c29-f3236a9dd082",
2320
+ "functions": [
2321
+ {
2322
+ "title": "all Fact Type Shape",
2323
+ "type": "Fact Type Shape",
2324
+ "where": "some Fact Type Shape has this Rotation Setting",
2325
+ "role_id": "06956ed9-8cac-4212-a174-b09246f36433",
2326
+ "is_list": true
2327
+ }
2328
+ ]
2329
+ },
2330
+ "Scale": {
2331
+ "is_main": false,
2332
+ "id": "efdfc65b-ae81-4bf9-9079-6f2de71d8c91",
2333
+ "functions": [
2334
+ {
2335
+ "title": "all Value Type",
2336
+ "type": "Value Type",
2337
+ "where": "this Scale is of some Value Type",
2338
+ "role_id": "fdc90240-0757-419e-9931-8e03a4b372d7",
2339
+ "is_list": true
2340
+ }
2341
+ ]
2342
+ },
2343
+ "Set Comparison Constraint": {
2344
+ "is_main": false,
2345
+ "id": "79a5cc99-e0fe-48cb-a910-c0c1a5884fb5",
2346
+ "functions": [
2347
+ {
2348
+ "title": "as Constraint",
2349
+ "type": "Constraint"
2350
+ },
2351
+ {
2352
+ "title": "as Set Constraint",
2353
+ "type": "Set Constraint"
2354
+ },
2355
+ {
2356
+ "title": "as Set Equality Constraint",
2357
+ "type": "Set Equality Constraint"
2358
+ },
2359
+ {
2360
+ "title": "as Set Exclusion Constraint",
2361
+ "type": "Set Exclusion Constraint"
2362
+ },
2363
+ {
2364
+ "title": "all Set Comparison Roles",
2365
+ "type": "Set Comparison Roles",
2366
+ "where": "this Set Comparison Constraint has in some Ordinal position some Role Sequence",
2367
+ "role_id": "8481a26d-2ebe-4eeb-ac7d-a173aaec0fef",
2368
+ "is_list": true
2369
+ }
2370
+ ]
2371
+ },
2372
+ "Set Comparison Roles": {
2373
+ "is_main": true,
2374
+ "id": "26663562-2ff9-4006-8016-2ddd29bbaaff",
2375
+ "functions": [
2376
+ {
2377
+ "title": "involving Set Comparison Constraint",
2378
+ "type": "Set Comparison Constraint",
2379
+ "where": "this Set Comparison Constraint has in some Ordinal position some Role Sequence"
2380
+ },
2381
+ {
2382
+ "title": "involving Ordinal",
2383
+ "type": "Ordinal",
2384
+ "where": "in this Ordinal position some Set Comparison Constraint has some Role Sequence"
2385
+ },
2386
+ {
2387
+ "title": "involving Role Sequence",
2388
+ "type": "Role Sequence",
2389
+ "where": "this Role Sequence is some Ordinal in some Set Comparison Constraint"
2390
+ }
2391
+ ]
2392
+ },
2393
+ "Set Constraint": {
2394
+ "is_main": false,
2395
+ "id": "5b9301e0-7eba-42f9-87fe-f1f1a01d121d",
2396
+ "functions": [
2397
+ {
2398
+ "title": "as Constraint",
2399
+ "type": "Constraint"
2400
+ },
2401
+ {
2402
+ "title": "as Set Comparison Constraint",
2403
+ "type": "Set Comparison Constraint"
2404
+ },
2405
+ {
2406
+ "title": "as Set Equality Constraint",
2407
+ "type": "Set Equality Constraint"
2408
+ },
2409
+ {
2410
+ "title": "as Set Exclusion Constraint",
2411
+ "type": "Set Exclusion Constraint"
2412
+ },
2413
+ {
2414
+ "title": "as Subset Constraint",
2415
+ "type": "Subset Constraint"
2416
+ }
2417
+ ]
2418
+ },
2419
+ "Set Equality Constraint": {
2420
+ "is_main": false,
2421
+ "id": "a526d9aa-15f4-45ff-ba10-6e1e41bb3c13",
2422
+ "functions": [
2423
+ {
2424
+ "title": "as Constraint",
2425
+ "type": "Constraint"
2426
+ },
2427
+ {
2428
+ "title": "as Set Comparison Constraint",
2429
+ "type": "Set Comparison Constraint"
2430
+ },
2431
+ {
2432
+ "title": "as Set Constraint",
2433
+ "type": "Set Constraint"
2434
+ }
2435
+ ]
2436
+ },
2437
+ "Set Exclusion Constraint": {
2438
+ "is_main": false,
2439
+ "id": "1529bc32-41bc-4584-8e59-26725e09f042",
2440
+ "functions": [
2441
+ {
2442
+ "title": "as Constraint",
2443
+ "type": "Constraint"
2444
+ },
2445
+ {
2446
+ "title": "as Set Comparison Constraint",
2447
+ "type": "Set Comparison Constraint"
2448
+ },
2449
+ {
2450
+ "title": "as Set Constraint",
2451
+ "type": "Set Constraint"
2452
+ },
2453
+ {
2454
+ "title": "Set Exclusion Constraint is mandatory",
2455
+ "type": "boolean",
2456
+ "where": "this Set Exclusion Constraint is mandatory",
2457
+ "role_id": "b15c5745-3739-4168-a05e-e8565ba3df9d"
2458
+ }
2459
+ ]
2460
+ },
2461
+ "Shape": {
2462
+ "is_main": true,
2463
+ "id": "bec06f3d-0f9b-4b5d-9cbd-2f2c610c02da",
2464
+ "functions": [
2465
+ {
2466
+ "title": "as Constraint Shape",
2467
+ "type": "Constraint Shape"
2468
+ },
2469
+ {
2470
+ "title": "as Fact Type Shape",
2471
+ "type": "Fact Type Shape"
2472
+ },
2473
+ {
2474
+ "title": "as Model Note Shape",
2475
+ "type": "Model Note Shape"
2476
+ },
2477
+ {
2478
+ "title": "as Object Type Shape",
2479
+ "type": "Object Type Shape"
2480
+ },
2481
+ {
2482
+ "title": "as Objectified Fact Type Name Shape",
2483
+ "type": "Objectified Fact Type Name Shape"
2484
+ },
2485
+ {
2486
+ "title": "as Reading Shape",
2487
+ "type": "Reading Shape"
2488
+ },
2489
+ {
2490
+ "title": "as Ring Constraint Shape",
2491
+ "type": "Ring Constraint Shape"
2492
+ },
2493
+ {
2494
+ "title": "as Role Name Shape",
2495
+ "type": "Role Name Shape"
2496
+ },
2497
+ {
2498
+ "title": "as Value Constraint Shape",
2499
+ "type": "Value Constraint Shape"
2500
+ },
2501
+ {
2502
+ "title": "Guid",
2503
+ "type": "Guid",
2504
+ "where": "this Shape has one Guid",
2505
+ "role_id": "01cb5f7e-65ac-4723-8dc8-9153926883d7"
2506
+ },
2507
+ {
2508
+ "title": "Location",
2509
+ "type": "Location",
2510
+ "where": "this Shape is at one Location",
2511
+ "role_id": "c9c2a033-4283-4054-9d25-44c64808bfd2"
2512
+ },
2513
+ {
2514
+ "title": "Shape is expanded",
2515
+ "type": "boolean",
2516
+ "where": "this Shape is expanded",
2517
+ "role_id": "e9b6faa3-8ede-4db3-9ed0-cba9c3913516"
2518
+ },
2519
+ {
2520
+ "title": "ORM Diagram",
2521
+ "type": "ORM Diagram",
2522
+ "where": "this Shape is in one ORM Diagram",
2523
+ "role_id": "32a95883-c616-4514-ac94-dec1cce72c06"
2524
+ }
2525
+ ]
2526
+ },
2527
+ "Step": {
2528
+ "is_main": true,
2529
+ "id": "124c0f51-2406-4d42-ab22-3d435bda1f1e",
2530
+ "functions": [
2531
+ {
2532
+ "title": "Alternative Set",
2533
+ "type": "Alternative Set",
2534
+ "where": "this Step falls under one Alternative Set",
2535
+ "role_id": "8bd07e89-98c3-423c-b2ba-1fd1febe568f"
2536
+ },
2537
+ {
2538
+ "title": "Guid",
2539
+ "type": "Guid",
2540
+ "where": "this Step has one Guid",
2541
+ "role_id": "fd4b3ae8-0582-465c-a875-60fc24239403"
2542
+ },
2543
+ {
2544
+ "title": "Step is disallowed",
2545
+ "type": "boolean",
2546
+ "where": "this Step is disallowed",
2547
+ "role_id": "6c558d36-5892-47b3-82ab-3419daf96df8"
2548
+ },
2549
+ {
2550
+ "title": "Step is optional",
2551
+ "type": "boolean",
2552
+ "where": "this Step is optional",
2553
+ "role_id": "6b2cbd21-95c0-4f18-846c-dc7e7a1c946d"
2554
+ },
2555
+ {
2556
+ "title": "Fact Type",
2557
+ "type": "Fact Type",
2558
+ "where": "this Step specifies one Fact Type",
2559
+ "role_id": "4c3c961e-ecb3-48de-bdf6-4fa2acbb9724"
2560
+ },
2561
+ {
2562
+ "title": "all Play",
2563
+ "type": "Play",
2564
+ "where": "this Step contains some Role restricting some Variable",
2565
+ "role_id": "d093ad30-b322-4b31-bc07-a3168d0012f5",
2566
+ "is_list": true
2567
+ },
2568
+ {
2569
+ "title": "Objectification Variable",
2570
+ "type": "Variable",
2571
+ "where": "this Step nests as one Objectification Variable",
2572
+ "role_id": "891d1827-b679-4b5e-9cb0-ab885dbe983b"
2573
+ }
2574
+ ]
2575
+ },
2576
+ "Subscript": {
2577
+ "is_main": false,
2578
+ "id": "20a82d67-a92c-4a6c-8019-b76794c93263",
2579
+ "functions": [
2580
+ {
2581
+ "title": "all Variable",
2582
+ "type": "Variable",
2583
+ "where": "this Subscript is of some Variable",
2584
+ "role_id": "3a7d7e7e-b0fa-45d6-8136-5bd442431e1d",
2585
+ "is_list": true
2586
+ }
2587
+ ]
2588
+ },
2589
+ "Subset Constraint": {
2590
+ "is_main": false,
2591
+ "id": "e194ce13-281b-4c3f-9c20-0a3fdd827202",
2592
+ "functions": [
2593
+ {
2594
+ "title": "as Constraint",
2595
+ "type": "Constraint"
2596
+ },
2597
+ {
2598
+ "title": "as Set Constraint",
2599
+ "type": "Set Constraint"
2600
+ },
2601
+ {
2602
+ "title": "Subset Role Sequence",
2603
+ "type": "Role Sequence",
2604
+ "where": "this Subset Constraint covers one subset-Role Sequence",
2605
+ "role_id": "0dbbf774-0558-4274-adde-0703c5e6bae3"
2606
+ },
2607
+ {
2608
+ "title": "Superset Role Sequence",
2609
+ "type": "Role Sequence",
2610
+ "where": "this Subset Constraint covers one superset-Role Sequence",
2611
+ "role_id": "f54d461a-2dfc-406a-95a5-c466ddbb9357"
2612
+ }
2613
+ ]
2614
+ },
2615
+ "Text": {
2616
+ "is_main": false,
2617
+ "id": "7c3dfee1-d47a-42af-a64b-2e68367c697b",
2618
+ "functions": [
2619
+ {
2620
+ "title": "all Reading",
2621
+ "type": "Reading",
2622
+ "where": "some Reading has this Text",
2623
+ "role_id": "65196bad-fca9-4e03-aeac-606435900f61",
2624
+ "is_list": true
2625
+ }
2626
+ ]
2627
+ },
2628
+ "Topic": {
2629
+ "is_main": false,
2630
+ "id": "691a8214-dc83-425d-96f0-cae1b3708138",
2631
+ "functions": [
2632
+ {
2633
+ "title": "all Concept",
2634
+ "type": "Concept",
2635
+ "where": "this Topic contains some Concept",
2636
+ "role_id": "7423b261-c3a5-4f32-a281-cbe3f75b59b0",
2637
+ "is_list": true
2638
+ },
2639
+ {
2640
+ "title": "Topic Name",
2641
+ "type": "Name",
2642
+ "where": "this Topic has one topic-Name",
2643
+ "role_id": "97023222-e8d7-446d-8c88-4e2b04e30c31"
2644
+ }
2645
+ ]
2646
+ },
2647
+ "Transaction Phase": {
2648
+ "is_main": false,
2649
+ "id": "e1d987f8-8ff2-4ee7-bc68-9765d754a74b",
2650
+ "functions": [
2651
+ {
2652
+ "title": "all Value Type",
2653
+ "type": "Value Type",
2654
+ "where": "some Value Type is auto-assigned at this Transaction Phase",
2655
+ "role_id": "472c0b27-74a4-4587-a164-66a785923647",
2656
+ "is_list": true
2657
+ }
2658
+ ]
2659
+ },
2660
+ "Type Inheritance": {
2661
+ "is_main": false,
2662
+ "id": "1ad2accf-70ba-42f5-83a6-f3ec4c092147",
2663
+ "functions": [
2664
+ {
2665
+ "title": "as Fact Type",
2666
+ "type": "Fact Type"
2667
+ },
2668
+ {
2669
+ "title": "involving Subtype",
2670
+ "type": "Entity Type",
2671
+ "where": "this Subtype is subtype of some Supertype"
2672
+ },
2673
+ {
2674
+ "title": "involving Supertype",
2675
+ "type": "Entity Type",
2676
+ "where": "this Supertype is supertype of some Subtype"
2677
+ },
2678
+ {
2679
+ "title": "Assimilation",
2680
+ "type": "Assimilation",
2681
+ "where": "this Type Inheritance uses one Assimilation",
2682
+ "role_id": "209f2518-6336-42ff-9c36-d426242c45f3"
2683
+ },
2684
+ {
2685
+ "title": "Type Inheritance provides identification",
2686
+ "type": "boolean",
2687
+ "where": "this Type Inheritance provides identification",
2688
+ "role_id": "4e2d6c86-d507-4c49-bfd1-715739e0cc46"
2689
+ }
2690
+ ]
2691
+ },
2692
+ "Unit": {
2693
+ "is_main": false,
2694
+ "id": "1afe6069-20ab-413e-8f2b-96855227c5e2",
2695
+ "functions": [
2696
+ {
2697
+ "title": "Ephemera URL",
2698
+ "type": "Ephemera URL",
2699
+ "where": "this Unit uses coefficient from one Ephemera URL",
2700
+ "role_id": "a07efc30-a0b1-49dd-97e8-49629eea328b"
2701
+ },
2702
+ {
2703
+ "title": "Name",
2704
+ "type": "Name",
2705
+ "where": "this Unit is called one Name",
2706
+ "role_id": "4b29eda6-ac25-4e10-a6ba-09c00a531cbd"
2707
+ },
2708
+ {
2709
+ "title": "Coefficient",
2710
+ "type": "Coefficient",
2711
+ "where": "this Unit has one Coefficient",
2712
+ "role_id": "2e201b02-4457-41d5-bdfe-4cffc4d5f698"
2713
+ },
2714
+ {
2715
+ "title": "Offset",
2716
+ "type": "Offset",
2717
+ "where": "this Unit has one Offset",
2718
+ "role_id": "143eda44-9388-4d8b-bb57-5c7fd75e3ac8"
2719
+ },
2720
+ {
2721
+ "title": "Plural Name",
2722
+ "type": "Name",
2723
+ "where": "this Plural Named Unit has one plural-Name",
2724
+ "role_id": "746c76d3-7369-4a6c-b867-4eb8f09a063d"
2725
+ },
2726
+ {
2727
+ "title": "Concept",
2728
+ "type": "Concept",
2729
+ "where": "this Unit is an instance of one Concept",
2730
+ "role_id": "79eccd1e-2a6b-45ea-b453-8cd59deea798"
2731
+ },
2732
+ {
2733
+ "title": "all Derivation",
2734
+ "type": "Derivation",
2735
+ "where": "this Derived Unit is derived from some Base Unit",
2736
+ "role_id": "f21a18a7-ad03-4a58-b79d-d80528edb1ed",
2737
+ "is_list": true
2738
+ },
2739
+ {
2740
+ "title": "all Derivation",
2741
+ "type": "Derivation",
2742
+ "where": "some Derived Unit is derived from this Base Unit",
2743
+ "role_id": "9ac2b019-e521-4fde-b6e2-842ec16b0334",
2744
+ "is_list": true
2745
+ },
2746
+ {
2747
+ "title": "Unit is fundamental",
2748
+ "type": "boolean",
2749
+ "where": "this Unit is fundamental",
2750
+ "role_id": "43843dda-facf-401f-8c8f-4956c61dd843"
2751
+ },
2752
+ {
2753
+ "title": "all Value Type",
2754
+ "type": "Value Type",
2755
+ "where": "some Value Type is of this Unit",
2756
+ "role_id": "e35c1c36-5aa8-4990-991a-28a0be94da3e",
2757
+ "is_list": true
2758
+ },
2759
+ {
2760
+ "title": "all Value",
2761
+ "type": "Value",
2762
+ "where": "this Unit is of some Value",
2763
+ "role_id": "a3949662-2a50-4a9f-a9fc-95f918bbc22f",
2764
+ "is_list": true
2765
+ },
2766
+ {
2767
+ "title": "Vocabulary",
2768
+ "type": "Vocabulary",
2769
+ "where": "this Unit is in one Vocabulary",
2770
+ "role_id": "d86b40ab-d2ee-407c-97b1-5bf86221d2e9"
2771
+ }
2772
+ ]
2773
+ },
2774
+ "Value": {
2775
+ "is_main": true,
2776
+ "id": "f9c1ea1b-0a3c-4722-8a94-158b24eb850d",
2777
+ "functions": [
2778
+ {
2779
+ "title": "all Bound",
2780
+ "type": "Bound",
2781
+ "where": "this Value is of some Bound",
2782
+ "role_id": "0bae377c-de47-44ef-aa53-444f9a6c896c",
2783
+ "is_list": true
2784
+ },
2785
+ {
2786
+ "title": "all Discriminated Role",
2787
+ "type": "Discriminated Role",
2788
+ "where": "some Discriminator distinguishes some Role using this Value",
2789
+ "role_id": "3a104df6-ee0d-4852-a160-f194d760ac64",
2790
+ "is_list": true
2791
+ },
2792
+ {
2793
+ "title": "all Instance",
2794
+ "type": "Instance",
2795
+ "where": "some Instance has this Value",
2796
+ "role_id": "2bf1a874-78dd-41b4-b4a5-ee82da1512ca",
2797
+ "is_list": true
2798
+ },
2799
+ {
2800
+ "title": "all Value Type Parameter Restriction",
2801
+ "type": "Value Type Parameter Restriction",
2802
+ "where": "some Value Type Parameter Restriction has this Value",
2803
+ "role_id": "7da8288c-bcb2-47a8-9e7b-d59c00b5e565",
2804
+ "is_list": true
2805
+ },
2806
+ {
2807
+ "title": "Unit",
2808
+ "type": "Unit",
2809
+ "where": "this Value is in one Unit",
2810
+ "role_id": "329f9f23-90e4-423c-b871-d8a77c12121a"
2811
+ },
2812
+ {
2813
+ "title": "Value is literal string",
2814
+ "type": "boolean",
2815
+ "where": "this Value is literal string",
2816
+ "role_id": "13c47d1d-ec79-449e-b948-1244f19016c2"
2817
+ },
2818
+ {
2819
+ "title": "Value Type",
2820
+ "type": "Value Type",
2821
+ "where": "this Value is of one Value Type",
2822
+ "role_id": "f80b6f3b-d335-42e3-ab43-9f6979ddbaf4"
2823
+ },
2824
+ {
2825
+ "title": "Literal",
2826
+ "type": "Literal",
2827
+ "where": "this Value is represented by one Literal",
2828
+ "role_id": "96b2726e-5f5a-4921-a990-7a2a73dead18"
2829
+ },
2830
+ {
2831
+ "title": "all Variable",
2832
+ "type": "Variable",
2833
+ "where": "some Variable is bound to this Value",
2834
+ "role_id": "fb7b5278-88ac-4b7b-84b2-1623124009df",
2835
+ "is_list": true
2836
+ }
2837
+ ]
2838
+ },
2839
+ "Value Constraint": {
2840
+ "is_main": false,
2841
+ "id": "fbdce19e-5659-429c-b447-11cad89d6817",
2842
+ "functions": [
2843
+ {
2844
+ "title": "as Constraint",
2845
+ "type": "Constraint"
2846
+ },
2847
+ {
2848
+ "title": "Role",
2849
+ "type": "Role",
2850
+ "where": "this Value Constraint applies to one Role",
2851
+ "role_id": "488207e3-5e62-447d-8c11-c9799c000eaf"
2852
+ },
2853
+ {
2854
+ "title": "all Value Range",
2855
+ "type": "Value Range",
2856
+ "where": "this Value Constraint allows some Value Range",
2857
+ "role_id": "26031ad2-b09c-4a0a-b446-3fedbb530ee3",
2858
+ "is_list": true
2859
+ },
2860
+ {
2861
+ "title": "Regular Expression",
2862
+ "type": "Regular Expression",
2863
+ "where": "this Value Constraint requires matching one Regular Expression",
2864
+ "role_id": "757b354c-1277-4126-8957-7047eb4cb236"
2865
+ },
2866
+ {
2867
+ "title": "Value Type",
2868
+ "type": "Value Type",
2869
+ "where": "this Value Constraint constrains one Value Type",
2870
+ "role_id": "c71a8c56-4936-44b2-a028-4e63f7634fa7"
2871
+ }
2872
+ ]
2873
+ },
2874
+ "Value Constraint Shape": {
2875
+ "is_main": false,
2876
+ "id": "53748bc5-79bc-4610-b5cf-62cacce7d1ed",
2877
+ "functions": [
2878
+ {
2879
+ "title": "as Constraint Shape",
2880
+ "type": "Constraint Shape"
2881
+ },
2882
+ {
2883
+ "title": "as Shape",
2884
+ "type": "Shape"
2885
+ },
2886
+ {
2887
+ "title": "Role Display",
2888
+ "type": "Role Display",
2889
+ "where": "this Value Constraint Shape is for one Role Display",
2890
+ "role_id": "4a82e12e-63e6-426f-87f6-6299b9fa37cf"
2891
+ },
2892
+ {
2893
+ "title": "Object Type Shape",
2894
+ "type": "Object Type Shape",
2895
+ "where": "this Value Constraint Shape is for one Object Type Shape",
2896
+ "role_id": "6d990c18-61ad-469d-b434-f9e619b3fa56"
2897
+ }
2898
+ ]
2899
+ },
2900
+ "Value Range": {
2901
+ "is_main": false,
2902
+ "id": "d77f5d72-f9b9-43ae-94d3-293ffc2c375c",
2903
+ "functions": [
2904
+ {
2905
+ "title": "all Value Constraint",
2906
+ "type": "Value Constraint",
2907
+ "where": "some Value Constraint allows this Value Range",
2908
+ "role_id": "f8c27246-9c3c-4fae-8080-0b4f9c4b9c2b",
2909
+ "is_list": true
2910
+ },
2911
+ {
2912
+ "title": "Maximum Bound",
2913
+ "type": "Bound",
2914
+ "where": "this Value Range has one maximum-Bound",
2915
+ "role_id": "54eabab1-c350-4303-ba5d-7886b04dbf7f"
2916
+ },
2917
+ {
2918
+ "title": "Minimum Bound",
2919
+ "type": "Bound",
2920
+ "where": "this Value Range has one minimum-Bound",
2921
+ "role_id": "28fb01bf-61b4-4733-8977-2cde10ae5aa7"
2922
+ }
2923
+ ]
2924
+ },
2925
+ "Value Type": {
2926
+ "is_main": false,
2927
+ "id": "6415d525-441e-4aa5-9aa4-ad8f8f4117ab",
2928
+ "functions": [
2929
+ {
2930
+ "title": "as Domain Object Type",
2931
+ "type": "Domain Object Type"
2932
+ },
2933
+ {
2934
+ "title": "as Object Type",
2935
+ "type": "Object Type"
2936
+ },
2937
+ {
2938
+ "title": "as Implicit Boolean Value Type",
2939
+ "type": "Implicit Boolean Value Type"
2940
+ },
2941
+ {
2942
+ "title": "all Value Type Parameter as Facet Value Type",
2943
+ "type": "Value Type Parameter",
2944
+ "where": "some Value Type Parameter requires value of this facet-Value Type",
2945
+ "role_id": "32afe17d-78c7-4f02-8d31-1976f1381686",
2946
+ "is_list": true
2947
+ },
2948
+ {
2949
+ "title": "Length",
2950
+ "type": "Length",
2951
+ "where": "this Value Type has one Length",
2952
+ "role_id": "99cd49d7-33ab-4a19-b7b1-15c28933f121"
2953
+ },
2954
+ {
2955
+ "title": "Scale",
2956
+ "type": "Scale",
2957
+ "where": "this Value Type has one Scale",
2958
+ "role_id": "dfdc74cd-12df-4fb7-bc77-9b71ec331d5f"
2959
+ },
2960
+ {
2961
+ "title": "Value Constraint",
2962
+ "type": "Value Constraint",
2963
+ "where": "this Value Type has one Value Constraint",
2964
+ "role_id": "cd79d4f9-81f6-4e69-bf70-082f403c7d73"
2965
+ },
2966
+ {
2967
+ "title": "all Value Type Parameter",
2968
+ "type": "Value Type Parameter",
2969
+ "where": "this Value Type has facet called some Name",
2970
+ "role_id": "211ae142-c515-490f-945a-a357ec29a924",
2971
+ "is_list": true
2972
+ },
2973
+ {
2974
+ "title": "Transaction Phase",
2975
+ "type": "Transaction Phase",
2976
+ "where": "this Value Type is auto-assigned at one Transaction Phase",
2977
+ "role_id": "2030a2cc-496b-4e57-bbc0-12f059b2fa3d"
2978
+ },
2979
+ {
2980
+ "title": "Unit",
2981
+ "type": "Unit",
2982
+ "where": "this Value Type is of one Unit",
2983
+ "role_id": "9002a509-6222-4fa7-b700-4f510dc879a0"
2984
+ },
2985
+ {
2986
+ "title": "Supertype",
2987
+ "type": "Value Type",
2988
+ "where": "this Value Type is subtype of one Supertype",
2989
+ "role_id": "62a58365-6808-4857-9a3b-91cfde333fe8"
2990
+ },
2991
+ {
2992
+ "title": "all Value Type",
2993
+ "type": "Value Type",
2994
+ "where": "this Supertype is supertype of some Value Type",
2995
+ "role_id": "447e915a-4e2a-4fe8-9c9e-df1c0605dc27",
2996
+ "is_list": true
2997
+ },
2998
+ {
2999
+ "title": "all Value Type Parameter Restriction",
3000
+ "type": "Value Type Parameter Restriction",
3001
+ "where": "this Value Type receives some Value Type Parameter",
3002
+ "role_id": "9e94326e-8a9e-4964-993a-c28a2d3a068a",
3003
+ "is_list": true
3004
+ },
3005
+ {
3006
+ "title": "all Value",
3007
+ "type": "Value",
3008
+ "where": "this Value Type has some Value",
3009
+ "role_id": "b732a0fc-df76-41a2-90c7-6ec839e7e8af",
3010
+ "is_list": true
3011
+ }
3012
+ ]
3013
+ },
3014
+ "Value Type Parameter": {
3015
+ "is_main": true,
3016
+ "id": "dc27c995-4517-4965-b107-f189a90e65ec",
3017
+ "functions": [
3018
+ {
3019
+ "title": "involving Value Type",
3020
+ "type": "Value Type",
3021
+ "where": "this Value Type has facet called some Name"
3022
+ },
3023
+ {
3024
+ "title": "involving Name",
3025
+ "type": "Name",
3026
+ "where": "this Name is a facet of some Value Type"
3027
+ },
3028
+ {
3029
+ "title": "Facet Value Type",
3030
+ "type": "Value Type",
3031
+ "where": "this Value Type Parameter requires value of one facet-Value Type",
3032
+ "role_id": "56666983-6f82-43bf-95b3-ed5163ddb4ee"
3033
+ },
3034
+ {
3035
+ "title": "all Value Type Parameter Restriction",
3036
+ "type": "Value Type Parameter Restriction",
3037
+ "where": "this Value Type Parameter applies to some Value Type",
3038
+ "role_id": "cc663bc5-28dc-4027-9892-aa8f4e3e5e64",
3039
+ "is_list": true
3040
+ }
3041
+ ]
3042
+ },
3043
+ "Value Type Parameter Restriction": {
3044
+ "is_main": true,
3045
+ "id": "5885954e-102a-46fd-ad6c-8f69dadb65e9",
3046
+ "functions": [
3047
+ {
3048
+ "title": "involving Value Type",
3049
+ "type": "Value Type",
3050
+ "where": "this Value Type receives some Value Type Parameter"
3051
+ },
3052
+ {
3053
+ "title": "involving Value Type Parameter",
3054
+ "type": "Value Type Parameter",
3055
+ "where": "this Value Type Parameter applies to some Value Type"
3056
+ },
3057
+ {
3058
+ "title": "Value",
3059
+ "type": "Value",
3060
+ "where": "this Value Type Parameter Restriction has one Value",
3061
+ "role_id": "cc5d5f9c-b9a8-4309-98ab-6430403a90e6"
3062
+ }
3063
+ ]
3064
+ },
3065
+ "Variable": {
3066
+ "is_main": true,
3067
+ "id": "3b50ca78-8028-4117-800e-8de6d05063fd",
3068
+ "functions": [
3069
+ {
3070
+ "title": "Query",
3071
+ "type": "Query",
3072
+ "where": "this Variable is in one Query",
3073
+ "role_id": "80189f68-962c-4714-979a-d67c67943e1b"
3074
+ },
3075
+ {
3076
+ "title": "Ordinal",
3077
+ "type": "Ordinal",
3078
+ "where": "this Variable has one Ordinal position",
3079
+ "role_id": "dc44d2a0-1d7e-4770-8b65-c73a4c5bc2a0"
3080
+ },
3081
+ {
3082
+ "title": "Subscript",
3083
+ "type": "Subscript",
3084
+ "where": "this Variable has one Subscript",
3085
+ "role_id": "28f96e9d-552f-456a-b1ff-92f0886c3439"
3086
+ },
3087
+ {
3088
+ "title": "Role Name",
3089
+ "type": "Name",
3090
+ "where": "this Variable has one role-Name",
3091
+ "role_id": "40193403-3d86-4423-9a62-281006419f4a"
3092
+ },
3093
+ {
3094
+ "title": "all Aggregation",
3095
+ "type": "Aggregation",
3096
+ "where": "this Variable is bound to some Aggregate over some aggregated-Variable",
3097
+ "role_id": "25ab9ea9-39da-431f-9179-fca1321f49d5",
3098
+ "is_list": true
3099
+ },
3100
+ {
3101
+ "title": "all Aggregation",
3102
+ "type": "Aggregation",
3103
+ "where": "some Variable is bound to some Aggregate over this aggregated-Variable",
3104
+ "role_id": "876c3eb9-7883-4a1d-8556-9ed2a6ca6863",
3105
+ "is_list": true
3106
+ },
3107
+ {
3108
+ "title": "Value",
3109
+ "type": "Value",
3110
+ "where": "this Variable is bound to one Value",
3111
+ "role_id": "038ce0d2-70b9-4c91-a1e2-2eef584b1bd2"
3112
+ },
3113
+ {
3114
+ "title": "Object Type",
3115
+ "type": "Object Type",
3116
+ "where": "this Variable is for one Object Type",
3117
+ "role_id": "ffe064a5-ae8a-459d-98f0-8fc50ad08fe2"
3118
+ },
3119
+ {
3120
+ "title": "all Play",
3121
+ "type": "Play",
3122
+ "where": "this Variable is restricted by some Role of some Step",
3123
+ "role_id": "42c94bcf-f603-491f-8cbd-b77905fcfd48",
3124
+ "is_list": true
3125
+ },
3126
+ {
3127
+ "title": "Step",
3128
+ "type": "Step",
3129
+ "where": "this Objectification Variable matches nesting over one Step",
3130
+ "role_id": "12b9a687-f9de-41de-8a83-de40d07f367b"
3131
+ },
3132
+ {
3133
+ "title": "Projection",
3134
+ "type": "Role",
3135
+ "where": "this Variable projects one Projection",
3136
+ "role_id": "63765445-1926-4312-9d94-0e4841c7c8eb"
3137
+ }
3138
+ ]
3139
+ },
3140
+ "Vocabulary": {
3141
+ "is_main": false,
3142
+ "id": "2f5a7a0f-6cbe-421a-8009-480821925e99",
3143
+ "functions": [
3144
+ {
3145
+ "title": "all Diagram",
3146
+ "type": "Diagram",
3147
+ "where": "this Vocabulary contains some Diagram",
3148
+ "role_id": "2f6883b2-392b-487c-a67b-635da39e2ba8",
3149
+ "is_list": true
3150
+ },
3151
+ {
3152
+ "title": "all Object Type",
3153
+ "type": "Object Type",
3154
+ "where": "some Object Type belongs to this Vocabulary",
3155
+ "role_id": "4d136830-7cdf-48d7-984f-21b99a4ef32e",
3156
+ "is_list": true
3157
+ },
3158
+ {
3159
+ "title": "all Constraint",
3160
+ "type": "Constraint",
3161
+ "where": "this Vocabulary contains some Constraint",
3162
+ "role_id": "c876d0b2-54ee-4807-8dac-0d1a9b14405d",
3163
+ "is_list": true
3164
+ },
3165
+ {
3166
+ "title": "all Population",
3167
+ "type": "Population",
3168
+ "where": "this Vocabulary includes some Population",
3169
+ "role_id": "e3bb5315-2ffd-4bc3-90fd-4abff547ee5f",
3170
+ "is_list": true
3171
+ },
3172
+ {
3173
+ "title": "all Unit",
3174
+ "type": "Unit",
3175
+ "where": "this Vocabulary includes some Unit",
3176
+ "role_id": "19b0a24b-9ae2-418c-8f9e-1b851e0fe9ad",
3177
+ "is_list": true
3178
+ },
3179
+ {
3180
+ "title": "Name",
3181
+ "type": "Name",
3182
+ "where": "this Vocabulary is called one Name",
3183
+ "role_id": "12165c88-a65c-48db-b41e-0b9fa32f1495"
3184
+ }
3185
+ ]
3186
+ },
3187
+ "X": {
3188
+ "is_main": false,
3189
+ "id": "f2358712-0bc0-4d59-ab1e-d29e31eb9e71",
3190
+ "functions": [
3191
+ {
3192
+ "title": "all Location",
3193
+ "type": "Location",
3194
+ "where": "some Location is at this X",
3195
+ "role_id": "7bbbd21b-5561-48bd-8717-40d1466c35dd",
3196
+ "is_list": true
3197
+ }
3198
+ ]
3199
+ },
3200
+ "Y": {
3201
+ "is_main": false,
3202
+ "id": "8a701116-8e14-447e-b5ac-c783c578fba6",
3203
+ "functions": [
3204
+ {
3205
+ "title": "all Location",
3206
+ "type": "Location",
3207
+ "where": "some Location is at this Y",
3208
+ "role_id": "cef2cd06-acfb-4948-aca1-c5aa1eb25dba",
3209
+ "is_list": true
3210
+ }
3211
+ ]
3212
+ }
3213
+ }
3214
+ }