expressir 0.2.7-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. checksums.yaml +7 -0
  2. data/.cross_rubies +30 -0
  3. data/.github/workflows/rake.yml +45 -0
  4. data/.github/workflows/release.yml +84 -0
  5. data/.gitignore +17 -0
  6. data/.gitmodules +3 -0
  7. data/.rspec +2 -0
  8. data/.rubocop.yml +508 -0
  9. data/Gemfile +4 -0
  10. data/README.adoc +147 -0
  11. data/Rakefile +11 -0
  12. data/bin/console +12 -0
  13. data/bin/rspec +29 -0
  14. data/bin/setup +8 -0
  15. data/demo.rb +18 -0
  16. data/docs/development.md +90 -0
  17. data/exe/expressir +20 -0
  18. data/exe/generate-parser +48 -0
  19. data/expressir.gemspec +43 -0
  20. data/lib/expressir.rb +21 -0
  21. data/lib/expressir/cli.rb +27 -0
  22. data/lib/expressir/cli/ui.rb +36 -0
  23. data/lib/expressir/config.rb +23 -0
  24. data/lib/expressir/express.rb +11 -0
  25. data/lib/expressir/express/aggregate_dimension.rb +38 -0
  26. data/lib/expressir/express/attribute.rb +15 -0
  27. data/lib/expressir/express/comment.rb +7 -0
  28. data/lib/expressir/express/defined_type.rb +36 -0
  29. data/lib/expressir/express/derived.rb +65 -0
  30. data/lib/expressir/express/derived_aggregate.rb +43 -0
  31. data/lib/expressir/express/entity.rb +137 -0
  32. data/lib/expressir/express/explicit.rb +70 -0
  33. data/lib/expressir/express/explicit_aggregate.rb +46 -0
  34. data/lib/expressir/express/explicit_or_derived.rb +16 -0
  35. data/lib/expressir/express/global_rule.rb +44 -0
  36. data/lib/expressir/express/interface_specification.rb +51 -0
  37. data/lib/expressir/express/interfaced_item.rb +38 -0
  38. data/lib/expressir/express/inverse.rb +46 -0
  39. data/lib/expressir/express/inverse_aggregate.rb +37 -0
  40. data/lib/expressir/express/model_element.rb +7 -0
  41. data/lib/expressir/express/named_type.rb +19 -0
  42. data/lib/expressir/express/remark.rb +8 -0
  43. data/lib/expressir/express/repository.rb +306 -0
  44. data/lib/expressir/express/schema_definition.rb +96 -0
  45. data/lib/expressir/express/subtype_constraint.rb +14 -0
  46. data/lib/expressir/express/type.rb +26 -0
  47. data/lib/expressir/express/type_aggregate.rb +42 -0
  48. data/lib/expressir/express/type_enum.rb +29 -0
  49. data/lib/expressir/express/type_parser.rb +45 -0
  50. data/lib/expressir/express/type_select.rb +82 -0
  51. data/lib/expressir/express/unique_rule.rb +35 -0
  52. data/lib/expressir/express/where_rule.rb +32 -0
  53. data/lib/expressir/express_exp/2.4/express_parser.so +0 -0
  54. data/lib/expressir/express_exp/2.5/express_parser.so +0 -0
  55. data/lib/expressir/express_exp/2.6/express_parser.so +0 -0
  56. data/lib/expressir/express_exp/2.7/express_parser.so +0 -0
  57. data/lib/expressir/express_exp/3.0/express_parser.so +0 -0
  58. data/lib/expressir/express_exp/formatter.rb +1450 -0
  59. data/lib/expressir/express_exp/parser.rb +41 -0
  60. data/lib/expressir/express_exp/visitor.rb +2464 -0
  61. data/lib/expressir/express_parser.rb +30 -0
  62. data/lib/expressir/model.rb +65 -0
  63. data/lib/expressir/model/attribute.rb +27 -0
  64. data/lib/expressir/model/constant.rb +17 -0
  65. data/lib/expressir/model/entity.rb +46 -0
  66. data/lib/expressir/model/enumeration_item.rb +11 -0
  67. data/lib/expressir/model/expressions/aggregate_initializer.rb +13 -0
  68. data/lib/expressir/model/expressions/aggregate_item.rb +15 -0
  69. data/lib/expressir/model/expressions/attribute_reference.rb +15 -0
  70. data/lib/expressir/model/expressions/binary_expression.rb +40 -0
  71. data/lib/expressir/model/expressions/call.rb +15 -0
  72. data/lib/expressir/model/expressions/entity_constructor.rb +15 -0
  73. data/lib/expressir/model/expressions/group_reference.rb +15 -0
  74. data/lib/expressir/model/expressions/index_reference.rb +17 -0
  75. data/lib/expressir/model/expressions/interval.rb +21 -0
  76. data/lib/expressir/model/expressions/query_expression.rb +26 -0
  77. data/lib/expressir/model/expressions/simple_reference.rb +13 -0
  78. data/lib/expressir/model/expressions/unary_expression.rb +19 -0
  79. data/lib/expressir/model/function.rb +62 -0
  80. data/lib/expressir/model/identifier.rb +10 -0
  81. data/lib/expressir/model/interface.rb +18 -0
  82. data/lib/expressir/model/literals/binary.rb +13 -0
  83. data/lib/expressir/model/literals/integer.rb +13 -0
  84. data/lib/expressir/model/literals/logical.rb +17 -0
  85. data/lib/expressir/model/literals/real.rb +13 -0
  86. data/lib/expressir/model/literals/string.rb +15 -0
  87. data/lib/expressir/model/parameter.rb +17 -0
  88. data/lib/expressir/model/procedure.rb +60 -0
  89. data/lib/expressir/model/renamed_ref.rb +13 -0
  90. data/lib/expressir/model/repository.rb +19 -0
  91. data/lib/expressir/model/rule.rb +62 -0
  92. data/lib/expressir/model/schema.rb +67 -0
  93. data/lib/expressir/model/scope.rb +17 -0
  94. data/lib/expressir/model/statements/alias.rb +26 -0
  95. data/lib/expressir/model/statements/assignment.rb +15 -0
  96. data/lib/expressir/model/statements/call.rb +15 -0
  97. data/lib/expressir/model/statements/case.rb +17 -0
  98. data/lib/expressir/model/statements/case_action.rb +15 -0
  99. data/lib/expressir/model/statements/compound.rb +13 -0
  100. data/lib/expressir/model/statements/escape.rb +8 -0
  101. data/lib/expressir/model/statements/if.rb +17 -0
  102. data/lib/expressir/model/statements/null.rb +8 -0
  103. data/lib/expressir/model/statements/repeat.rb +34 -0
  104. data/lib/expressir/model/statements/return.rb +13 -0
  105. data/lib/expressir/model/statements/skip.rb +8 -0
  106. data/lib/expressir/model/subtype_constraint.rb +27 -0
  107. data/lib/expressir/model/type.rb +24 -0
  108. data/lib/expressir/model/types/aggregate.rb +17 -0
  109. data/lib/expressir/model/types/array.rb +21 -0
  110. data/lib/expressir/model/types/bag.rb +17 -0
  111. data/lib/expressir/model/types/binary.rb +15 -0
  112. data/lib/expressir/model/types/boolean.rb +8 -0
  113. data/lib/expressir/model/types/enumeration.rb +19 -0
  114. data/lib/expressir/model/types/generic.rb +13 -0
  115. data/lib/expressir/model/types/generic_entity.rb +13 -0
  116. data/lib/expressir/model/types/integer.rb +8 -0
  117. data/lib/expressir/model/types/list.rb +19 -0
  118. data/lib/expressir/model/types/logical.rb +8 -0
  119. data/lib/expressir/model/types/number.rb +8 -0
  120. data/lib/expressir/model/types/real.rb +13 -0
  121. data/lib/expressir/model/types/select.rb +21 -0
  122. data/lib/expressir/model/types/set.rb +17 -0
  123. data/lib/expressir/model/types/string.rb +15 -0
  124. data/lib/expressir/model/unique.rb +15 -0
  125. data/lib/expressir/model/variable.rb +17 -0
  126. data/lib/expressir/model/where.rb +15 -0
  127. data/lib/expressir/parser.rb +6 -0
  128. data/lib/expressir/parser/owl_parser.rb +8 -0
  129. data/lib/expressir/version.rb +3 -0
  130. data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.exp +9589 -0
  131. data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.owl +36619 -0
  132. data/original/examples/ap233/ap233e1_arm_lf_stepmod-2010-11-12.xml +13294 -0
  133. data/original/examples/employment/eclipse/.project +17 -0
  134. data/original/examples/employment/eclipse/Export/Employment.png +0 -0
  135. data/original/examples/employment/eclipse/Express/employment_schema.exp +33 -0
  136. data/original/examples/employment/eclipse/Express/employment_schema.xmi +77 -0
  137. data/original/examples/employment/eclipse/Express/employment_schema.xml +93 -0
  138. data/original/examples/employment/eclipse/Models/Employment.uml +4 -0
  139. data/original/examples/employment/eclipse/Models/Employment.umldi +240 -0
  140. data/original/examples/employment/eclipse/readme.txt +7 -0
  141. data/original/examples/employment/employment_schema.exp +33 -0
  142. data/original/examples/employment/employment_schema.rb +232 -0
  143. data/original/examples/employment/employment_schema.xml +93 -0
  144. data/original/examples/employment/employment_schema___module.rb +46 -0
  145. data/original/examples/employment/employment_schema___p28attr.rb +126 -0
  146. data/original/examples/employment/employment_schema___p28inst.rb +26 -0
  147. data/original/examples/employment/example_employment_data.xml +1 -0
  148. data/original/examples/employment/example_employment_data_copy.xml +1 -0
  149. data/original/examples/employment/example_employment_reader.rb +30 -0
  150. data/original/examples/employment/example_employment_writer.rb +51 -0
  151. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.exp +3710 -0
  152. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.owl +35880 -0
  153. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.xmi +15357 -0
  154. data/original/examples/plcs/ap239e1_arm_lf_dexlib_2010-01-06.xml +9468 -0
  155. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.exp +8404 -0
  156. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.owl +43147 -0
  157. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.xmi +18341 -0
  158. data/original/examples/plcs/ap239e2_arm_lf_stepmod-2010-01-25.xml +11632 -0
  159. data/original/examples/syntax/remark.exp +146 -0
  160. data/original/examples/syntax/remark_formatted.exp +175 -0
  161. data/original/examples/syntax/syntax.exp +311 -0
  162. data/original/examples/syntax/syntax_formatted.exp +1191 -0
  163. data/original/exp2ruby.rb +525 -0
  164. data/original/expsm.rb +34 -0
  165. data/original/mapping_owl.rb +1018 -0
  166. data/original/mapping_sysml.rb +2281 -0
  167. data/original/mapping_uml2.rb +599 -0
  168. data/original/mapping_uml2_eclipse.rb +433 -0
  169. data/original/reeper.rb +134 -0
  170. data/rakelib/cross-ruby.rake +308 -0
  171. data/spec/acceptance/express_to_owl_spec.rb +18 -0
  172. data/spec/acceptance/version_spec.rb +12 -0
  173. data/spec/expressir/express/repository_spec.rb +25 -0
  174. data/spec/expressir/express_exp/ap233_spec.rb +22 -0
  175. data/spec/expressir/express_exp/format_remark_spec.rb +28 -0
  176. data/spec/expressir/express_exp/format_syntax_spec.rb +28 -0
  177. data/spec/expressir/express_exp/parse_remark_spec.rb +346 -0
  178. data/spec/expressir/express_exp/parse_syntax_spec.rb +3003 -0
  179. data/spec/expressir/model/find_spec.rb +110 -0
  180. data/spec/expressr_spec.rb +5 -0
  181. data/spec/spec_helper.rb +17 -0
  182. data/spec/support/console_helper.rb +29 -0
  183. metadata +357 -0
@@ -0,0 +1,26 @@
1
+ def read_P28_entity_instances(p28doc,m)
2
+ uos = p28doc.root
3
+ for entity in uos.elements.to_a()
4
+ id = entity.attribute('id')
5
+ if entity.name == 'Person'
6
+ r = EMP::Person.new
7
+ m.model_elements.push r
8
+ r.putP28id(id.to_s)
9
+ end
10
+ if entity.name == 'Organization'
11
+ r = EMP::Organization.new
12
+ m.model_elements.push r
13
+ r.putP28id(id.to_s)
14
+ end
15
+ if entity.name == 'PersonOrganizationRelationship'
16
+ r = EMP::PersonOrganizationRelationship.new
17
+ m.model_elements.push r
18
+ r.putP28id(id.to_s)
19
+ end
20
+ if entity.name == 'Employment'
21
+ r = EMP::Employment.new
22
+ m.model_elements.push r
23
+ r.putP28id(id.to_s)
24
+ end
25
+ end
26
+ end
@@ -0,0 +1 @@
1
+ <?xml version='1.0'?><emp:uos xsi:schemaLocation='urn:iso10303-28:schema/Employment_schema Employment_schema.xsd' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:exp='urn:iso:std:iso:10303:28:ed-2:2005:schema:common' xmlns:ex='urn:iso:std:iso:10303:28:ed-2:2005:schema:common' xmlns:emp='urn:iso10303-28:schema/Employment_schema'><exp:header><time_stamp>2009-09-10T13:43:19+01:00</time_stamp></exp:header><emp:Organization id='id-ORGANIZATION-1'><Name>Acme Plumbing</Name></emp:Organization><emp:Employment id='id-EMPLOYMENT-1'><The_person><emp:Person xsi:nil='true' ref='id-PERSON-1'/></The_person><The_organization><emp:Organization xsi:nil='true' ref='id-ORGANIZATION-1'/></The_organization><Start_date>2008-04-01</Start_date><End_date>2008-06-01</End_date><Job_title>Apprentice</Job_title><Ended_by><emp:Person xsi:nil='true' ref='id-PERSON-1'/></Ended_by><Employment_type>atwill</Employment_type></emp:Employment><emp:Person id='id-PERSON-1'><Names><ex:string-wrapper>Joe</ex:string-wrapper><ex:string-wrapper>Plumber</ex:string-wrapper></Names></emp:Person></emp:uos>
@@ -0,0 +1 @@
1
+ <?xml version='1.0'?><emp:uos xsi:schemaLocation='urn:iso10303-28:schema/Employment_schema Employment_schema.xsd' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:exp='urn:iso:std:iso:10303:28:ed-2:2005:schema:common' xmlns:ex='urn:iso:std:iso:10303:28:ed-2:2005:schema:common' xmlns:emp='urn:iso10303-28:schema/Employment_schema'><exp:header><time_stamp>2009-09-10T12:40:31+01:00</time_stamp></exp:header><emp:Organization id='id-ORGANIZATION-1'><Name>Acme Plumbing</Name></emp:Organization><emp:Employment id='id-EMPLOYMENT-1'><The_person><emp:Person xsi:nil='true' ref='id-PERSON-1'/></The_person><The_organization><emp:Organization xsi:nil='true' ref='id-ORGANIZATION-1'/></The_organization><Start_date>2008-04-01</Start_date><End_date>2008-06-01</End_date><Job_title>Apprentice</Job_title><Ended_by><emp:Person xsi:nil='true' ref='id-PERSON-1'/></Ended_by><Employment_type>atwill</Employment_type></emp:Employment><emp:Person id='id-PERSON-1'><Names><ex:string-wrapper>Joe</ex:string-wrapper><ex:string-wrapper>Plumber</ex:string-wrapper></Names></emp:Person></emp:uos>
@@ -0,0 +1,30 @@
1
+ require 'employment_schema'
2
+ require 'rexml/document'
3
+ include REXML
4
+ include EMP
5
+ $xnspre = "emp"
6
+ ##
7
+ infile = File.new("example_employment_data.xml","r")
8
+ doc = REXML::Document.new infile
9
+ ## create a model container for the data instances
10
+ m = EMP::Model___data.new
11
+ ##
12
+ ## Set the XML Namespace for the P28 E2 file
13
+ m.namespace = $xnspre
14
+ ## Give model a name if you want
15
+ m.model_name = "Test dataset 1"
16
+ m.model_elements = []
17
+ m.readP28e2(doc)
18
+ if m.model_elements.size != 0
19
+ puts "Copied " + m.model_elements.size.to_s
20
+ for e in m.model_elements
21
+ puts "p28id = " + e.getP28id.to_s
22
+ end
23
+ ##
24
+ ## Set up the XML file and write all data in the model container to the file
25
+ datafile = File.new("example_employment_data_copy.xml","w")
26
+ p28file = REXML::Document.new
27
+ m.writeP28e2 p28file
28
+ datafile.puts p28file
29
+ datafile.close
30
+ end
@@ -0,0 +1,51 @@
1
+ require 'employment_schema'
2
+ require 'rexml/document'
3
+ include REXML
4
+ include EMP
5
+ ##
6
+ ## create a model container for the data instances
7
+ ##
8
+ mydata = EMP::Model___data.new
9
+ mydata.model_elements = []
10
+ ##
11
+ ## create an organization
12
+ ##
13
+ org1 = EMP::Organization.new
14
+ ##
15
+ ## check that all mandatory attrs are set
16
+ ##
17
+ puts 'Without name, org1 isValid = ' + org1.isValid.to_s
18
+ org1.name = 'Acme Plumbing'
19
+ ##
20
+ ## check again that all mandatory attrs are set
21
+ ##
22
+ puts 'With name, org1 isValid = ' + org1.isValid.to_s
23
+
24
+ per1 = EMP::Person.new
25
+ per1.names = []
26
+ per1.names.push 'Joe'
27
+ per1.names.push 'Plumber'
28
+
29
+ emp1 = EMP::Employment.new
30
+ emp1.the_person = per1
31
+ emp1.the_organization = org1
32
+ emp1.start_date = '2008-04-01'
33
+ emp1.end_date = '2008-06-01'
34
+ emp1.job_title = 'Apprentice'
35
+ emp1.ended_by = per1
36
+ emp1.employment_type = 'atwill'
37
+
38
+ ##
39
+ ## put all instances in the model container, this is what gets written to XML
40
+ ##
41
+ mydata.model_elements.push org1
42
+ mydata.model_elements.push emp1
43
+ mydata.model_elements.push per1
44
+ ##
45
+ ## Set up the XML file and write all data in the model container to the file
46
+ ##
47
+ datafile = File.new("example_employment_data.xml","w")
48
+ p28file = REXML::Document.new
49
+ mydata.writeP28e2 p28file
50
+ datafile.puts p28file
51
+ datafile.close
@@ -0,0 +1,3710 @@
1
+ (*
2
+ $Id: ap239_arm_lf.exp,v 1.22 2010/01/06 23:07:58 intrepidtim Exp $
3
+ ============================================================
4
+ This file is ARM long form EXPRESS for AP239.
5
+ It is based on the file as published in edition 1 of AP239 and reflects
6
+ the changes that have been made in DEXlib.
7
+ The intent is submit this as a Technical Corrigendum to AP239 at some stage.
8
+
9
+ The short form, from which this is derived, is stored in ap239_arm_sf.exp
10
+
11
+ NOTE TO DEXLib DEVELOPERS
12
+ Make sure that all changes are:
13
+ 1) Recorded as issues in: dexlib/docs/issues/ap239_issues.xml
14
+ 2) Raised as a SEDS against the AP. When the SEDS has been issued a number, record the
15
+ SEDS number in the issue
16
+ 3) Documented as changes in the change log of this file using the format below
17
+ 3) Also made the change to the corresponding short long form
18
+ dexlib/data/schemas/ap239_arm_sf.exp
19
+ 4) That the resulting EXPRESS file compiles (can be checked with EEP: eep.exe -2 -i ap239_arm_lf.exp)
20
+ 5) That corresponding dexlib/data/schemas/ap239_arm_lf.xml has been generated by EEP
21
+ Use eep.exe -2 -x ap239_arm_lf.exp, then copy Model.XML to ap239_arm_lf.xml
22
+ 6) That the P28 XML Schema has been generated.
23
+ Note: Stage 4,5,6 can be done using the dexlib tool.
24
+
25
+ Where the modification is the addition of an entity to a select
26
+ the addition should be the FIRST entry in the select.
27
+
28
+ Where the modification is the creation of a new entity or type
29
+ the addition should be at the end of the file
30
+
31
+ This will make it easier to track the changes.
32
+
33
+ ============================================================
34
+ --------------------------------------------------------------
35
+ Change Log:
36
+ -----------------------------------------------------------
37
+ 2006-06-19, Rob Bodington
38
+ Addressed Issue RBN-1 - added Representation_relationship to the select classification_item
39
+ Addressed Issue RBN-2 - added Approving_person_organization to the select date_or_date_time_item
40
+ --------------------------------------------------------------
41
+ 2006-06-23, Rob Bodington
42
+ Addressed Issue RBN-3 - added Classification_assignment to the select effectivity_item
43
+ --------------------------------------------------------------
44
+ 2007-02-01, Rob Bodington
45
+ Addressed Issue RBN-4 - added TYPE message_content_item and ENTITY Content_item_selected
46
+ Addressed Issue RBN-5 - added Justification to documented_element_select
47
+ Addressed Issue RBN-6 - added Property_value_representation to the select justification_item
48
+ --------------------------------------------------------------
49
+ 2007-03-14, Rob Bodington
50
+ Addressed Issue RBN-7 - added TYPE observation_content_item and ENTITY Observation_item_selected
51
+ --------------------------------------------------------------
52
+ 2007-03-20, Rob Bodington
53
+ Addressed Issue RBN-8 - added State and State_definition to the select affected_item_select
54
+ --------------------------------------------------------------
55
+ 2007-11-22, Rob Bodington
56
+ Addressed Issue RBN-9 - added Resource_item and Resource_event should be added to the message_content_item
57
+ --------------------------------------------------------------
58
+ 2008-01-09, Mike Ward
59
+ Addressed Issue MWD-1 - added Approval to the state_of_item select type
60
+ --------------------------------------------------------------
61
+ 2008-02-18, Johan Nielsen
62
+ Addressed Issue GYL-1 - added Condition_assignment and Condition_parameter to the documented_element_select.
63
+ Addressed Issue GYL-2 - added Condition_assignment and Applied_state_definition_assignment to the justification_item.
64
+ Addressed Issue GYL-3 - added Class to the documented_element_select.
65
+ --------------------------------------------------------------
66
+ 2008-02-19, Johan Nielsen
67
+ Addressed Issue GYL-4 - added Class to the identification_item.
68
+ Addressed Issue GYL-5 - added Independent_property_representation to the effectivity_item.
69
+ Addressed Issue GYL-7 - added Activity_method and Applied_activity_method_assignment to the in_zone_item.
70
+ Addressed Issue GYL-8 - added Document_assignment to the documented_element_select.
71
+ --------------------------------------------------------------
72
+ 2008-02-28, Johan Nielsen
73
+ Addressed Issue GYL-9 - added Activity_property_representation to the effectivity_item.
74
+ Addressed Issue GYL-10 - added Condition_assignment to the effectivity_item.
75
+ Addressed Issue GYL-12 - added Resource_property_representation to the effectivity_item.
76
+ Addressed Issue GYL-13 - added View_definition_usage to the effectivity_item.
77
+ Addressed Issue GYL-14 - added Product_configuration to the condition_parameter_item.
78
+ Addressed Issue GYL-15 - added Organization to the condition_parameter_item.
79
+ --------------------------------------------------------------
80
+ 2008-02-28, Rob Bodington
81
+ Addressed Issue GYL-16 - added Effectivity to the condition_item.
82
+ --------------------------------------------------------------
83
+ 2008-03-11, Rob Bodington
84
+ Addressed Issue GYL-17 - added Organization_type to the condition_parameter_item.
85
+ Addressed Issue GYL-18 - added Activity_method to the condition_item.
86
+ Addressed Issue GYL-19 - added Independent_property to the condition_parameter_item.
87
+ Addressed Issue GYL-20 - added Work_request to the condition_parameter_item.
88
+ --------------------------------------------------------------
89
+ 2008-06-17, Tim Turner
90
+ Addressed Issue TJT-01 - added External_source_identification to the identification_item select type.
91
+ Addressed Issue TJT-02 - added Work_request to the requirement_assignment_item select type.
92
+ ----------------------------------------------------------------
93
+ 2008-10-23, Tim Turner
94
+ Addressed Issue TJT-03 - added Qualification_assignment to the effectivity_item select type.
95
+ ----------------------------------------------------------------
96
+ 2009-1-05, Tim Turner
97
+ Addressed Issue TJT-04 - added Product_group_membership to the classification_item select type.
98
+ --------------------------------------------------------------
99
+ 2009-01-21, Mike Ward
100
+ Addressed Issue MWD-2 - added Product_group_membership to the activity_item select type.
101
+ --------------------------------------------------------------
102
+ 2009-01-21, Mike Ward
103
+ Addressed Issue PHX-1 - added Work_request to property_assignment_select type.
104
+ --------------------------------------------------------------
105
+ 2009-01-23, Mike Ward
106
+ Addressed Issue TRO-1 - added Type_of_person_definition to identification_item select type.
107
+ --------------------------------------------------------------
108
+ 2009-2-16, Tim Turner
109
+ Addressed Issue TJT-05 - added Document_definition_relationship to the identification_item select type.
110
+ --------------------------------------------------------------
111
+ 2009-2-16, Tim Turner
112
+ Addressed Issue TJT-06 - added Document_definition_relationship to the documented_element_select select type.
113
+ --------------------------------------------------------------
114
+ 2009-2-16, Tim Turner
115
+ Addressed Issue TJT-07 - added Product_group_membership to the activity_method_item select type.
116
+ --------------------------------------------------------------
117
+ 2009-2-17, Tim Turner
118
+ Addressed Issue TJT-08 - added Activity_method_relationship to the property_assignment_select select type
119
+ --------------------------------------------------------------
120
+ 2009-2-18, Tim Turner
121
+ Addressed Issue TJT-09 - added State_transition_definition to the documented_element_select select type
122
+ --------------------------------------------------------------
123
+ 2009-3-09, Tim Turner
124
+ Addressed Issue TJT-10 - added Activity_relationship to the identification_item select type
125
+ --------------------------------------------------------------
126
+ 2010-01-06, Tim Turner
127
+ Addressed Issue TJT-11 - added Product_group and Product_group_membership to the requirement_assignment_item select type.
128
+
129
+ $CVS id of published file: arm_lf.exp,v 1.19 2005/03/02 12:34:18 robbod Exp $
130
+ ISO TC184/SC4/WG3 N1560 - ISO/TS 10303-439 AP239 product life cycle support - EXPRESS ARM Long form
131
+ Supersedes ISO TC184/SC4/WG3 N1400
132
+ =====================================================================================
133
+ Long form schema generated by PDTec LongformGenerator V 3.1-15
134
+ generated at 2005-01-17 15:51:29
135
+ =====================================================================================
136
+
137
+ Original schemas:
138
+ schema = Activity_arm ;
139
+ schema = Activity_as_realized_arm ;
140
+ schema = Activity_characterized_arm ;
141
+ schema = Activity_method_arm ;
142
+ schema = Activity_method_assignment_arm ;
143
+ schema = Activity_method_characterized_arm ;
144
+ schema = Activity_method_implementation_arm ;
145
+ schema = Alias_identification_arm ;
146
+ schema = Ap239_activity_recording_arm ;
147
+ schema = Ap239_document_management_arm ;
148
+ schema = Ap239_management_resource_information_arm ;
149
+ schema = Ap239_part_definition_information_arm ;
150
+ schema = Ap239_product_definition_information_arm ;
151
+ schema = Ap239_product_life_cycle_support_arm ;
152
+ schema = Ap239_product_status_recording_arm ;
153
+ schema = Ap239_properties_arm ;
154
+ schema = Ap239_task_specification_resourced_arm ;
155
+ schema = Ap239_work_definition_arm ;
156
+ schema = Approval_arm ;
157
+ schema = Assembly_structure_arm ;
158
+ schema = Attachment_slot_arm ;
159
+ schema = Attribute_classification_arm ;
160
+ schema = Certification_arm ;
161
+ schema = Class_arm ;
162
+ schema = Classification_assignment_arm ;
163
+ schema = Condition_arm ;
164
+ schema = Condition_characterized_arm ;
165
+ schema = Condition_evaluation_arm ;
166
+ schema = Condition_evaluation_characterized_arm ;
167
+ schema = Configuration_effectivity_arm ;
168
+ schema = Configuration_item_arm ;
169
+ schema = Contextual_shape_positioning_arm ;
170
+ schema = Contract_arm ;
171
+ schema = Date_time_arm ;
172
+ schema = Date_time_assignment_arm ;
173
+ schema = Document_and_version_identification_arm ;
174
+ schema = Document_assignment_arm ;
175
+ schema = Document_definition_arm ;
176
+ schema = Document_management_arm ;
177
+ schema = Document_properties_arm ;
178
+ schema = Document_structure_arm ;
179
+ schema = Effectivity_application_arm ;
180
+ schema = Effectivity_arm ;
181
+ schema = Elemental_geometric_shape_arm ;
182
+ schema = Envelope_arm ;
183
+ schema = Event_arm ;
184
+ schema = Event_assignment_arm ;
185
+ schema = Experience_arm ;
186
+ schema = Extended_measure_representation_arm ;
187
+ schema = External_class_arm ;
188
+ schema = External_item_identification_assignment_arm ;
189
+ schema = External_model_arm ;
190
+ schema = File_identification_arm ;
191
+ schema = Foundation_representation_arm ;
192
+ schema = Functional_breakdown_arm ;
193
+ schema = Group_arm ;
194
+ schema = Hybrid_breakdown_arm ;
195
+ schema = Identification_assignment_arm ;
196
+ schema = Independent_property_arm ;
197
+ schema = Independent_property_representation_arm ;
198
+ schema = Information_rights_arm ;
199
+ schema = Interface_arm ;
200
+ schema = Interface_lifecycle_arm ;
201
+ schema = Justification_arm ;
202
+ schema = Location_arm ;
203
+ schema = Location_assignment_arm ;
204
+ schema = Location_assignment_characterized_arm ;
205
+ schema = Management_resource_information_arm ;
206
+ schema = Measure_representation_arm ;
207
+ schema = Message_arm ;
208
+ schema = Multi_linguism_arm ;
209
+ schema = Name_assignment_arm ;
210
+ schema = Observation_arm ;
211
+ schema = Organization_type_arm ;
212
+ schema = Part_and_version_identification_arm ;
213
+ schema = Part_definition_relationship_arm ;
214
+ schema = Part_view_definition_arm ;
215
+ schema = Person_organization_arm ;
216
+ schema = Person_organization_assignment_arm ;
217
+ schema = Physical_breakdown_arm ;
218
+ schema = Plib_class_reference_arm ;
219
+ schema = Position_in_organization_arm ;
220
+ schema = Probability_arm ;
221
+ schema = Probability_distribution_arm ;
222
+ schema = Process_property_assignment_arm ;
223
+ schema = Product_as_individual_arm ;
224
+ schema = Product_breakdown_arm ;
225
+ schema = Product_categorization_arm ;
226
+ schema = Product_concept_identification_arm ;
227
+ schema = Product_group_arm ;
228
+ schema = Product_identification_arm ;
229
+ schema = Product_relationship_arm ;
230
+ schema = Product_replacement_arm ;
231
+ schema = Product_structure_arm ;
232
+ schema = Product_version_arm ;
233
+ schema = Product_version_relationship_arm ;
234
+ schema = Product_view_definition_arm ;
235
+ schema = Product_view_definition_properties_arm ;
236
+ schema = Product_view_definition_relationship_arm ;
237
+ schema = Project_arm ;
238
+ schema = Property_assignment_arm ;
239
+ schema = Qualifications_arm ;
240
+ schema = Required_resource_arm ;
241
+ schema = Required_resource_characterized_arm ;
242
+ schema = Requirement_assignment_arm ;
243
+ schema = Requirement_identification_and_version_arm ;
244
+ schema = Requirement_management_arm ;
245
+ schema = Requirement_view_definition_arm ;
246
+ schema = Requirement_view_definition_relationship_arm ;
247
+ schema = Resource_as_realized_arm ;
248
+ schema = Resource_as_realized_characterized_arm ;
249
+ schema = Resource_item_arm ;
250
+ schema = Resource_item_characterized_arm ;
251
+ schema = Resource_management_arm ;
252
+ schema = Resource_management_characterized_arm ;
253
+ schema = Resource_property_assignment_arm ;
254
+ schema = Scheme_arm ;
255
+ schema = Security_classification_arm ;
256
+ schema = Selected_item_arm ;
257
+ schema = Set_theory_arm ;
258
+ schema = Shape_property_assignment_arm ;
259
+ schema = Single_part_representation_arm ;
260
+ schema = State_characterized_arm ;
261
+ schema = State_definition_arm ;
262
+ schema = State_observed_arm ;
263
+ schema = System_breakdown_arm ;
264
+ schema = Task_specification_arm ;
265
+ schema = Time_interval_arm ;
266
+ schema = Time_interval_assignment_arm ;
267
+ schema = Type_of_person_arm ;
268
+ schema = Value_with_unit_arm ;
269
+ schema = Work_order_arm ;
270
+ schema = Work_order_characterized_arm ;
271
+ schema = Work_output_arm ;
272
+ schema = Work_output_characterized_arm ;
273
+ schema = Work_request_arm ;
274
+ schema = Work_request_characterized_arm ;
275
+ schema = Zonal_breakdown_arm ;
276
+ *)
277
+
278
+ SCHEMA AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF;
279
+ TYPE activity_item = SELECT (Product_group_membership, Activity, Activity_method, Activity_property, Applied_activity_assignment, Applied_state_assignment, Applied_state_definition_assignment, Assigned_document_property, Assigned_property, Contract, Descriptive_document_property, Document, Document_definition, Document_version, Effectivity, Envelope, Event, File, Independent_property, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Location, Location_representation, Managed_resource, Message, Numerical_document_property, Observation_consequence, Organization, Person, Person_in_organization, Position, Position_group, Product, Product_concept, Product_configuration, Product_group, Product_version, Product_version_relationship, Product_view_definition, Project, Resource_as_realized, Resource_event, Resource_item, Resource_property, Scheme, Scheme_entry, Scheme_version, State, State_assertion, State_assessment, State_relationship, Task_element, Task_method, Task_method_version, View_definition_relationship);
280
+ END_TYPE;
281
+
282
+ TYPE activity_method_item = SELECT (Product_group_membership, Activity, Activity_method, Activity_property, Applied_activity_assignment, Assigned_document_property, Assigned_property, Breakdown_element, Breakdown_element_definition, Breakdown_element_usage, Breakdown_element_version, Contract, Document, Document_version, Envelope, Event, File, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Location, Managed_resource, Message, Observation_consequence, Organization, Organization_type, Part, Part_version, Part_view_definition, Person, Person_in_organization, Position, Position_group, Position_type, Product, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_based_location_identification, Product_concept, Product_configuration, Product_group, Product_version, Product_version_relationship, Product_view_definition, Project, Required_resource, Required_resource_assignment, Resource_as_realized, Resource_event, Resource_item, Resource_property, Scheme_entry, State_relationship, Task_method, Task_method_version, Type_of_person, Type_of_person_definition, View_definition_relationship, Work_output, Work_output_assignment);
283
+ END_TYPE;
284
+
285
+ TYPE activity_realization_select = SELECT (Scheme, Scheme_version, Task_element, Task_method, Task_method_version);
286
+ END_TYPE;
287
+
288
+ TYPE affected_item_select = SELECT (State, State_definition, Activity_method, Activity_property, Assigned_property, Contract, Document, Document_definition, Document_version, File, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Organization, Person, Person_in_organization, Product, Product_group, Product_version, Product_view_definition, Resource_item, Resource_property, View_definition_relationship);
289
+ END_TYPE;
290
+
291
+ TYPE alias_identification_item = SELECT (Address, Approval, Approval_status, Attachment_slot, Attachment_slot_definition, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_element_version, Breakdown_version, Certification, Contract, Digital_document_definition, Digital_file, Document, Document_assignment, Document_version, Event, External_class_library, Hardcopy, Identification_assignment, Interface_connection, Interface_connector, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Interface_specification, Interface_specification_definition, Interface_specification_version, Item_shape, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Organization, Organization_or_person_in_organization_assignment, Part, Part_version, Part_view_definition, Person, Person_in_organization, Physical_document_definition, Product_as_individual, Product_as_individual_view, Product_as_planned, Product_as_realized, Product_concept, Product_configuration, Product_relationship, Project, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version_relationship, Security_classification, Security_classification_assignment, Shape_element_relationship, Tracing_relationship, View_definition_relationship);
292
+ END_TYPE;
293
+
294
+ TYPE any_number_value = NUMBER;
295
+ END_TYPE;
296
+
297
+ TYPE any_string_value = STRING;
298
+ END_TYPE;
299
+
300
+ TYPE approval_item = SELECT (Activity, Activity_method, Activity_method_assignment, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Address_assignment, Affected_items_assignment, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Applied_information_usage_right, Applied_state_assignment, Applied_state_definition_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Assigned_property, Attachment_slot_as_planned, Attachment_slot_as_realized, Attachment_slot_design, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Breakdown_version, Certification, Certification_assignment, Classification_assignment, Condition, Condition_assignment, Condition_evaluation, Condition_evaluation_assignment, Contract, Contract_assignment, Date_or_date_time_assignment, Descriptive_document_property, Digital_document_definition, Directed_activity, Document_assignment, Document_definition_relationship, Document_version, Effectivity, Effectivity_assignment, Envelope, Event, Event_assignment, Experience_gained, Experience_type, Identification_assignment, In_zone, Independent_property, Independent_property_relationship, Information_usage_right, Interface_connection, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_design_to_planned, Interface_connector_design_to_realized, Interface_connector_occurrence, Interface_connector_planned_to_realized, Interface_connector_version, Interface_definition_for, Interface_specification, Interface_specification_definition, Interface_specification_version, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Location_assignment, Managed_resource, Managed_resource_relationship, Message, Numerical_document_property, Observation, Organization_or_person_in_organization_assignment, Organization_organization_type_relationship, Organization_relationship, Part, Part_version, Part_view_definition, Person_in_organization, Person_or_organization_or_person_in_organization_in_position, Person_or_organization_or_person_in_organization_in_position_relationship, Physical_document_definition, Position, Position_assignment, Position_group_assignment, Position_position_type_assignment, Position_type, Position_type_assignment, Product_as_individual, Product_as_planned, Product_as_realized, Product_category_assignment, Product_concept, Product_configuration, Product_definition_element_relationship, Product_design_to_individual, Product_design_version_to_individual, Product_group, Product_group_membership, Product_group_relationship, Product_in_attachment_slot, Product_planned_to_realized, Product_relationship, Product_version_relationship, Product_view_definition, Project, Project_assignment, Qualification_assignment, Qualification_type, Required_resource, Required_resource_assignment, Required_resource_relationship, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_as_realized_assignment, Resource_event, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, Security_classification, Security_classification_assignment, Selected_item_assignment, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_state_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, Tracing_relationship, Type_of_person, Type_of_person_assignment, View_definition_context, View_definition_relationship, Work_order, Work_output, Work_request);
301
+ END_TYPE;
302
+
303
+ TYPE assigned_document_select = SELECT (Document, Document_definition, Document_version, File);
304
+ END_TYPE;
305
+
306
+ TYPE assigned_name_select = SELECT (External_class_library);
307
+ END_TYPE;
308
+
309
+ TYPE breakdown_item = SELECT (Breakdown_element_definition, Breakdown_element_usage);
310
+ END_TYPE;
311
+
312
+ TYPE cartesian_transformation = SELECT (Cartesian_transformation_2d, Cartesian_transformation_3d);
313
+ END_TYPE;
314
+
315
+ TYPE certification_item = SELECT (Activity, Activity_method, Applied_activity_method_assignment, Breakdown, Document, Document_version, Interface_connection, Interface_connector_version, Interface_definition_connection, Interface_specification_version, Part, Part_version, Product_as_individual, Product_as_planned, Product_as_realized, Product_configuration, Product_group, Product_group_relationship, Product_version_relationship, Project, Qualification_assignment, Resource_item, Task_element, Task_method, Task_method_version, Task_objective, View_definition_relationship, Work_output);
316
+ END_TYPE;
317
+
318
+ TYPE characterized_activity_definition = SELECT (Activity, Activity_method, Activity_method_relationship, Condition, Condition_evaluation, Condition_relationship, Required_resource_assignment, Resource_as_realized_assignment, Resource_event, Resource_item_assignment, Task_objective, Work_output);
319
+ END_TYPE;
320
+
321
+ TYPE characterized_resource_select = SELECT (Managed_resource, Required_resource, Resource_as_realized, Resource_item, Resource_item_relationship);
322
+ END_TYPE;
323
+
324
+ TYPE classification_item = SELECT (Product_group_membership, Representation_relationship, Activity, Activity_method, Activity_method_assignment, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Activity_property_representation, Activity_relationship, Activity_status, Address, Address_assignment, Affected_items_assignment, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Applied_information_usage_right, Applied_state_assignment, Applied_state_definition_assignment, Approval, Approval_assignment, Approval_relationship, Approval_status, Approving_person_organization, Assembly_relationship_substitution, Assigned_property, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Attribute_translation_assignment, Breakdown, Breakdown_context, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Breakdown_of, Calendar_date, Certification, Certification_assignment, Characterizable_object, Class, Condition, Condition_assignment, Condition_evaluation, Condition_evaluation_assignment, Condition_evaluation_parameter, Condition_parameter, Condition_relationship, Content_item, Context_dependent_unit, Contract, Contract_assignment, Date_or_date_time_assignment, Date_time, Defined_state_relationship, Descriptive_document_property, Digital_document_definition, Digital_file, Directed_activity, Document, Document_assignment, Document_definition_relationship, Document_location_identification, Document_property_representation, Document_version, Effectivity, Effectivity_assignment, Effectivity_relationship, Envelope, Envelope_relationship, Event, Event_assignment, Event_relationship, Experience_gained, Experience_instance, Experience_type, External_class_library, External_item_identification, External_source_identification, File_location_identification, File_relationship, Hardcopy, Identification_assignment, In_zone, Independent_property, Independent_property_relationship, Independent_property_representation, Information_right, Information_usage_right, Information_usage_right_relationship, Interface_connection, Interface_connector, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_design_to_planned, Interface_connector_design_to_realized, Interface_connector_occurrence, Interface_connector_planned_to_realized, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Interface_specification, Interface_specification_definition, Interface_specification_version, Item_design_association, Item_shape, Item_usage_effectivity, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Language, Language_indication, Local_time, Location, Location_assignment, Location_relationship, Location_representation, Managed_resource, Managed_resource_relationship, Market, Message, Message_relationship, Numerical_document_property, Observation, Observation_consequence, Observation_item, Observation_relationship, Organization, Organization_or_person_in_organization_assignment, Organization_relationship, Organization_type, Organizational_location_identification, Part, Part_version, Part_view_definition, Partial_document_assignment, Person, Person_in_organization, Person_or_organization_or_person_in_organization_in_position, Person_or_organization_or_person_in_organization_in_position_relationship, Physical_document_definition, Position, Position_assignment, Position_group, Position_group_assignment, Position_group_relationship, Position_position_type_assignment, Position_relationship, Position_type, Position_type_assignment, Probability_distribution, Product, Product_as_planned, Product_as_realized, Product_category, Product_concept, Product_configuration, Product_design_to_individual, Product_design_version_to_individual, Product_group, Product_group_relationship, Product_planned_to_realized, Product_relationship, Product_version, Product_version_relationship, Product_view_definition, Project, Project_assignment, Project_relationship, Property_representation, Qualification_assignment, Qualification_type, Qualification_type_relationship, Regional_coordinate, Related_condition_parameter, Representation, Representation_context, Representation_item, Required_resource, Required_resource_assignment, Required_resource_relationship, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_as_realized_assignment, Resource_as_realized_relationship, Resource_event, Resource_event_correspondence_relationship, Resource_event_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, Resource_property_representation, Security_classification, Security_classification_assignment, Selected_item, Selected_item_assignment, State, State_assertion, State_assessment, State_definition, State_definition_relationship, State_relationship, State_role, Supplied_part_relationship, Task_element_state_relationship, Task_method, Task_method_state_relationship, Task_objective, Task_objective_state_relationship, Time_interval_relationship, Tracing_relationship, Type_of_person, Type_of_person_assignment, Type_of_person_definition, Type_of_person_definition_relationship, Type_of_person_definition_required_attributes_relationship, Uncertainty_with_unit, Unit, Value_with_unit, View_definition_context, View_definition_relationship, Work_order, Work_output, Work_output_assignment, Work_output_relationship, Work_request, Work_request_status);
325
+ END_TYPE;
326
+
327
+ TYPE classified_attribute_select = SELECT (Activity, Activity_method, Activity_method_assignment, Activity_property, Activity_property_representation, Activity_relationship, Address_assignment, Affected_items_assignment, Alternate_part_relationship, Applied_activity_assignment, Applied_state_assignment, Applied_state_definition_assignment, Approval, Approval_assignment, Approval_relationship, Approval_status, Approving_person_organization, Assigned_property, Breakdown_context, Breakdown_element_realization, Breakdown_element_usage, Certification, Certification_assignment, Condition, Condition_evaluation, Condition_evaluation_parameter, Condition_parameter, Condition_relationship, Content_item, Context_dependent_unit, Contract, Date_or_date_time_assignment, Descriptive_document_property, Digital_file, Document_assignment, Document_definition_relationship, Document_location_identification, Document_property_representation, Effectivity, Effectivity_assignment, Envelope, Envelope_relationship, Event_assignment, Event_relationship, External_item_identification, External_source_identification, File_location_identification, File_relationship, Global_location_representation, Hardcopy, Identification_assignment, Independent_property, Independent_property_relationship, Independent_property_representation, Information_right, Information_usage_right, Information_usage_right_relationship, Interface_connection, Interface_connector_definition, Interface_definition_connection, Interface_specification_definition, Justification, Justification_assignment, Justification_support_assignment, Language, Location, Location_relationship, Managed_resource, Managed_resource_relationship, Market, Message, Message_relationship, Numerical_document_property, Organization_or_person_in_organization_assignment, Organization_relationship, Organizational_location_identification, Part_view_definition, Partial_document_assignment, Person_in_organization, Product, Product_based_location_identification, Product_category, Product_concept, Product_relationship, Product_version_relationship, Product_view_definition, Project_assignment, Project_relationship, Property_representation, Regional_coordinate, Regional_grid_location_representation, Related_condition_parameter, Representation, Representation_context, Representation_item, Required_resource, Required_resource_relationship, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_as_realized_relationship, Resource_event, Resource_event_correspondence_relationship, Resource_event_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, Resource_property_representation, Security_classification, State, State_definition, State_definition_relationship, State_relationship, Time_interval_relationship, Uncertainty_with_unit, Unit, Value_with_unit, View_definition_context, View_definition_relationship, Work_order, Work_output, Work_output_relationship, Work_request, Work_request_status);
328
+ END_TYPE;
329
+
330
+ TYPE condition_evaluation_item = SELECT (Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Approval, Approval_assignment, Assigned_property, Document_assignment, Hierarchical_interface_connection, Interface_connection, Interface_definition_connection, Managed_resource, Product_definition_element_relationship, Product_group, Product_group_membership, Product_group_relationship, Resource_as_realized, Resource_as_realized_assignment, Resource_as_realized_relationship, Resource_event, Resource_event_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, State_assertion, State_assessment, View_definition_relationship);
331
+ END_TYPE;
332
+
333
+ TYPE condition_evaluation_parameter_item = SELECT (Activity, Activity_method, Activity_property, Activity_property_representation, Approval, Approval_assignment, Assigned_property, Calendar_date, Certification_assignment, Classification_assignment, Contract_assignment, Date_or_date_time_assignment, Date_time, Document_assignment, Hierarchical_interface_connection, Identification_assignment, Independent_property_representation, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Managed_resource, Organization_or_person_in_organization_assignment, Product, Product_as_individual, Product_category_assignment, Product_concept, Product_definition_element_relationship, Product_version, Product_view_definition, Property_representation, Representation, Required_resource, Resource_as_realized, Resource_as_realized_relationship, Resource_event, Resource_property, Resource_property_representation, State, State_definition, View_definition_relationship);
334
+ END_TYPE;
335
+
336
+ TYPE condition_item = SELECT (Activity_method, Effectivity, Activity, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Applied_activity_assignment, Applied_activity_method_assignment, Approval, Approval_assignment, Assigned_property, Document_assignment, Hierarchical_interface_connection, Interface_connection, Interface_definition_connection, Managed_resource, Managed_resource_relationship, Product_definition_element_relationship, Product_group, Product_group_membership, Product_group_relationship, Required_resource, Required_resource_assignment, Required_resource_relationship, Resource_event, Resource_event_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, State_definition, State_definition_relationship, Task_element_relationship, Task_method_assignment, Task_method_relationship, Task_method_version_assignment, Task_method_version_relationship, View_definition_relationship);
337
+ END_TYPE;
338
+
339
+ TYPE condition_parameter_item = SELECT (Independent_property, Organization_type, Work_request, Organization, Product_configuration, Activity, Activity_method, Activity_property, Activity_property_representation, Approval, Approval_assignment, Assigned_property, Calendar_date, Certification_assignment, Classification_assignment, Condition_relationship, Contract_assignment, Date_or_date_time_assignment, Date_time, Document_assignment, Hierarchical_interface_connection, Identification_assignment, Independent_property_representation, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Managed_resource, Organization_or_person_in_organization_assignment, Product, Product_as_individual, Product_category_assignment, Product_concept, Product_definition_element_relationship, Product_version, Product_view_definition, Property_representation, Representation, Required_resource, Resource_as_realized, Resource_as_realized_relationship, Resource_event, Resource_property, Resource_property_representation, State, State_definition, View_definition_relationship);
340
+ END_TYPE;
341
+
342
+ TYPE connection_definition_items = SELECT (Interface_connector_definition, Product_view_definition);
343
+ END_TYPE;
344
+
345
+ TYPE connection_items = SELECT (connection_definition_items, Interface_connector_occurrence, View_definition_relationship);
346
+ END_TYPE;
347
+
348
+ TYPE connector_on_item = SELECT (Product_view_definition, View_definition_relationship);
349
+ END_TYPE;
350
+
351
+ TYPE constraint_context = SELECT (Task_element, Task_method_version);
352
+ END_TYPE;
353
+
354
+ TYPE contract_item = SELECT (Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Breakdown, Breakdown_element, Breakdown_version, Document, Document_version, External_class, External_class_library, Information_usage_right, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_design, Interface_connector_version, Interface_specification_version, Managed_resource, Message, Part, Part_version, Product_as_individual, Product_as_planned, Product_as_realized, Product_configuration, Product_group, Product_group_relationship, Project, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_event, Resource_item, Security_classification, Task_element, Task_element_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Tracing_relationship);
355
+ END_TYPE;
356
+
357
+ TYPE date_or_date_time_item = SELECT (Approving_person_organization, Activity, Activity_method, Activity_method_assignment, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Activity_property_representation, Activity_relationship, Address_assignment, Affected_items_assignment, Alias_identification, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Applied_information_usage_right, Applied_state_assignment, Applied_state_definition_assignment, Approval, Assembly_component_relationship, Assembly_relationship_substitution, Assigned_property, Attachment_slot, Attachment_slot_definition, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_planned_to_realized, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_version, Certification, Certification_assignment, Classification_assignment, Condition, Condition_assignment, Condition_evaluation, Condition_evaluation_assignment, Contract, Contract_assignment, Date_or_date_time_assignment, Descriptive_document_property, Digital_document_definition, Digital_file, Directed_activity, Document, Document_assignment, Document_definition_relationship, Document_version, Effectivity, Effectivity_assignment, Envelope, Event_assignment, Experience_instance, Hardcopy, Hierarchical_interface_connection, Identification_assignment, Independent_property, Independent_property_relationship, Independent_property_representation, Information_usage_right, Interface_connection, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design_to_planned, Interface_connector_design_to_realized, Interface_connector_occurrence, Interface_connector_planned_to_realized, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Interface_specification_definition, Interface_specification_version, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Location_assignment, Location_representation, Managed_resource, Managed_resource_relationship, Message, Numerical_document_property, Observation, Organization_or_person_in_organization_assignment, Organization_organization_type_relationship, Organization_relationship, Part, Part_version, Part_view_definition, Person, Person_in_organization, Person_or_organization_or_person_in_organization_in_position, Person_or_organization_or_person_in_organization_in_position_relationship, Physical_document_definition, Position_assignment, Position_group_assignment, Position_position_type_assignment, Position_type_assignment, Product_as_planned, Product_as_realized, Product_category_assignment, Product_concept, Product_configuration, Product_design_to_individual, Product_design_version_to_individual, Product_group, Product_group_membership, Product_group_relationship, Product_in_attachment_slot, Product_planned_to_realized, Product_relationship, Product_version, Product_version_relationship, Product_view_definition, Project, Project_assignment, Property_representation, Qualification_assignment, Representation, Required_resource, Required_resource_assignment, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_as_realized_assignment, Resource_event, Resource_item, Resource_item_assignment, Resource_property, Resource_property_representation, Scheme_entry, Security_classification, Security_classification_assignment, Selected_item, Selected_item_assignment, State, State_assertion, State_assessment, State_definition, State_definition_relationship, State_relationship, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_state_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, Tracing_relationship, Type_of_person_assignment, View_definition_context, Work_order, Work_output, Work_request);
358
+ END_TYPE;
359
+
360
+ TYPE date_or_date_time_select = SELECT (Calendar_date, Date_time);
361
+ END_TYPE;
362
+
363
+ TYPE date_or_event = SELECT (Calendar_date, Date_time, Event);
364
+ END_TYPE;
365
+
366
+ TYPE day_in_month_number = INTEGER;
367
+ WHERE
368
+ WR1: {1 <= SELF <= 31};
369
+ END_TYPE;
370
+
371
+ TYPE defined_activities = SELECT (Activity_actual, Resource_as_realized);
372
+ END_TYPE;
373
+
374
+ TYPE defined_attributes = SELECT (Experience_type, Qualification_type);
375
+ END_TYPE;
376
+
377
+ TYPE defined_methods = SELECT (Activity, Activity_method, Required_resource);
378
+ END_TYPE;
379
+
380
+ TYPE descriptive_or_numerical = SELECT (Descriptive_document_property, Numerical_document_property);
381
+ END_TYPE;
382
+
383
+ TYPE document_property_item = property_assignment_select;
384
+ WHERE
385
+ wr1: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ADDRESS' IN TYPEOF(SELF));
386
+ wr2: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.APPLIED_ACTIVITY_ASSIGNMENT' IN TYPEOF(SELF));
387
+ wr3: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.APPLIED_ACTIVITY_METHOD_ASSIGNMENT' IN TYPEOF(SELF));
388
+ wr4: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.APPLIED_STATE_ASSIGNMENT' IN TYPEOF(SELF));
389
+ wr5: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.APPLIED_STATE_DEFINITION_ASSIGNMENT' IN TYPEOF(SELF));
390
+ wr6: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_REALIZATION' IN TYPEOF(SELF));
391
+ wr7: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_USAGE' IN TYPEOF(SELF));
392
+ wr8: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.DOCUMENT_ASSIGNMENT' IN TYPEOF(SELF));
393
+ wr9: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ENVELOPE' IN TYPEOF(SELF));
394
+ wr10: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.EXPERIENCE_INSTANCE' IN TYPEOF(SELF));
395
+ wr11: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.HIERARCHICAL_INTERFACE_CONNECTION' IN TYPEOF(SELF));
396
+ wr12: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTION' IN TYPEOF(SELF));
397
+ wr13: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTOR_OCCURRENCE' IN TYPEOF(SELF));
398
+ wr14: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_DEFINITION_CONNECTION' IN TYPEOF(SELF));
399
+ wr15: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.LOCATION_ASSIGNMENT' IN TYPEOF(SELF));
400
+ wr16: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ORGANIZATION_OR_PERSON_IN_ORGANIZATION_ASSIGNMENT' IN TYPEOF(SELF));
401
+ wr17: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VIEW_DEFINITION' IN TYPEOF(SELF));
402
+ wr18: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PERSON' IN TYPEOF(SELF));
403
+ wr19: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PERSON_IN_ORGANIZATION' IN TYPEOF(SELF));
404
+ wr20: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_GROUP_MEMBERSHIP' IN TYPEOF(SELF));
405
+ wr21: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_VIEW_DEFINITION' IN TYPEOF(SELF));
406
+ wr22: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PROJECT' IN TYPEOF(SELF));
407
+ wr23: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE' IN TYPEOF(SELF));
408
+ wr24: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE_DEFINITION' IN TYPEOF(SELF));
409
+ wr25: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE_DEFINITION_RELATIONSHIP' IN TYPEOF(SELF));
410
+ wr26: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE_RELATIONSHIP' IN TYPEOF(SELF));
411
+ wr27: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD_STATE_RELATIONSHIP' IN TYPEOF(SELF));
412
+ wr28: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_OBJECTIVE_STATE_RELATIONSHIP' IN TYPEOF(SELF));
413
+ wr29: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TYPE_OF_PERSON_DEFINITION' IN TYPEOF(SELF));
414
+ wr30: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.VIEW_DEFINITION_RELATIONSHIP' IN TYPEOF(SELF));
415
+ END_TYPE;
416
+
417
+ TYPE documented_element_select = SELECT (State_transition_definition, Document_definition_relationship, Document_assignment, Class, Condition_parameter, Condition_assignment, Justification, Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Activity_property_representation, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Approval, Approval_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Assigned_property, Attachment_slot, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_planned_to_realized, Attachment_slot_version, Breakdown, Breakdown_context, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_version, Certification, Certification_assignment, Condition, Condition_evaluation, Contract, Contract_assignment, Document, Document_definition, Document_version, Effectivity, Effectivity_assignment, Experience_instance, Experience_type, Identification_assignment, Independent_property, Independent_property_relationship, Independent_property_representation, Information_right, Information_usage_right, Interface_connection, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_design, Interface_connector_design_to_planned, Interface_connector_design_to_realized, Interface_connector_occurrence, Interface_connector_planned_to_realized, Interface_connector_version, Interface_definition_connection, Interface_specification, Interface_specification_version, Location, Location_assignment, Location_representation, Managed_resource, Market, Message, Observation, Observation_consequence, Organization, Organization_or_person_in_organization_assignment, Organization_type, Organizational_location_identification, Part, Part_version, Part_view_definition, Person, Person_or_organization_or_person_in_organization_in_position, Person_or_organization_or_person_in_organization_in_position_relationship, Position, Position_group, Position_type, Position_type_assignment, Probability_distribution, Product, Product_as_planned, Product_as_realized, Product_concept, Product_configuration, Product_design_to_individual, Product_design_version_to_individual, Product_group, Product_group_membership, Product_group_relationship, Product_planned_to_realized, Product_relationship, Product_version, Product_version_relationship, Product_view_definition, Project, Property_representation, Qualification_type, Regional_grid_location_representation, Representation, Representation_item, Required_resource, Required_resource_assignment, Required_resource_relationship, Requirement, Requirement_assignment, Requirement_source, Requirement_version, Resource_as_realized, Resource_event, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, Resource_property_representation, Security_classification, Security_classification_assignment, Selected_item, Shape_element, Shape_element_relationship, State, State_assertion, State_assessment, State_definition, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_state_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, Type_of_person, Type_of_person_definition, View_definition_relationship, Work_order, Work_request);
418
+ END_TYPE;
419
+
420
+ TYPE effectivity_item = SELECT (Qualification_assignment, View_definition_usage, Resource_property_representation, Condition_assignment, Activity_property_representation, Independent_property_representation, Classification_assignment, Activity, Activity_method, Activity_property, Address_assignment, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Applied_information_usage_right, Applied_state_definition_assignment, Approval_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Assigned_property, Attachment_slot, Attachment_slot_as_planned, Attachment_slot_as_realized, Attachment_slot_definition, Attachment_slot_design, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Attachment_slot_version, Attribute_translation_assignment, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Breakdown_of, Breakdown_version, Certification_assignment, Contract_assignment, Date_or_date_time_assignment, Document, Document_assignment, Document_definition, Document_definition_relationship, Document_location_identification, Document_version, Effectivity_assignment, File, File_relationship, Identification_assignment, Interface_connection, Interface_connector_design_to_planned, Interface_connector_design_to_realized, Interface_connector_occurrence, Interface_connector_planned_to_realized, Interface_definition_for, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Location_assignment, Make_from_relationship, Managed_resource_relationship, Organization_or_person_in_organization_assignment, Organization_relationship, Part, Part_version, Part_view_definition, Person_in_organization, Person_or_organization_or_person_in_organization_in_position_relationship, Position_assignment, Position_group_assignment, Position_position_type_assignment, Position_type_assignment, Product, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_configuration, Product_design_to_individual, Product_design_version_to_individual, Product_group, Product_group_membership, Product_group_relationship, Product_in_attachment_slot, Product_planned_to_realized, Product_relationship, Product_version, Product_version_relationship, Product_view_definition, Project_assignment, Required_resource_assignment, Required_resource_relationship, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_item_assignment, Resource_item_relationship, Resource_property, Security_classification_assignment, Selected_item_assignment, State_definition_relationship, Type_of_person_assignment, Type_of_person_definition_relationship, Work_order, Work_output_assignment, Work_output_relationship);
421
+ END_TYPE;
422
+
423
+ TYPE event_item = SELECT (Certification, Project);
424
+ END_TYPE;
425
+
426
+ TYPE external_identification_item = SELECT (Document_definition, File);
427
+ END_TYPE;
428
+
429
+ TYPE geometric_mapping_target = SELECT (Axis_placement, cartesian_transformation);
430
+ END_TYPE;
431
+
432
+ TYPE hour_in_day = INTEGER;
433
+ WHERE
434
+ WR1: {0 <= SELF < 24};
435
+ END_TYPE;
436
+
437
+ TYPE identification_item = SELECT (Activity_relationship, Document_definition_relationship, Type_of_person_definition, Class, Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Address, Affected_items_assignment, Applied_activity_assignment, Applied_activity_method_assignment, Applied_state_assignment, Applied_state_definition_assignment, Approval, Approval_status, Assigned_property, Attachment_slot, Attachment_slot_definition, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_element_version, Breakdown_version, Certification, Condition, Condition_evaluation, Contract, Defined_state_relationship, Descriptive_document_property, Digital_document_definition, Digital_file, Directed_activity, Document, Document_assignment, Document_version, Effectivity, Event, Experience_instance, Experience_type, External_class_library, External_source_identification, Hardcopy, Independent_property, Independent_property_relationship, Information_right, Information_usage_right, Interface_connection, Interface_connector, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_specification, Interface_specification_definition, Interface_specification_version, Item_shape, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Location, Location_representation, Managed_resource, Market, Message, Numerical_document_property, Observation, Observation_consequence, Organization, Organization_or_person_in_organization_assignment, Organization_type, Organizational_location_identification, Part, Part_version, Part_view_definition, Person, Person_in_organization, Person_or_organization_or_person_in_organization_in_position, Person_or_organization_or_person_in_organization_in_position_relationship, Physical_document_definition, Position, Position_group, Probability_distribution, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_as_planned, Product_as_realized, Product_concept, Product_configuration, Product_group, Product_group_membership, Product_group_relationship, Product_relationship, Project, Qualification_assignment, Qualification_type, Required_resource, Required_resource_relationship, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_event, Resource_item, Resource_property, Security_classification, Security_classification_assignment, Shape_element_relationship, State, State_assertion, State_assessment, State_definition, State_definition_relationship, State_relationship, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_state_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, Tracing_relationship, Type_of_person, View_definition_relationship, Work_order, Work_output, Work_request);
438
+ END_TYPE;
439
+
440
+ TYPE in_zone_item = SELECT (Activity_method, Applied_activity_method_assignment, Hierarchical_interface_connection, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Product_view_definition);
441
+ END_TYPE;
442
+
443
+ TYPE information_usage_right_item = SELECT (Alternate_part_relationship, Applied_information_usage_right, Assembly_component_relationship, Assembly_relationship_substitution, Attachment_slot_definition, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_version, Certification, Certification_assignment, Digital_document_definition, Digital_file, Document, Document_definition_relationship, Document_version, File_relationship, Hardcopy, Interface_connection, Interface_connector, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Interface_specification, Interface_specification_definition, Interface_specification_version, Message, Part, Part_version, Part_view_definition, Physical_document_definition, Product_as_individual, Product_as_individual_view, Product_as_planned, Product_as_realized, Product_configuration, Requirement, Requirement_assignment, Requirement_version, Requirement_view_definition, Security_classification, Security_classification_assignment, Supplied_part_relationship, Task_element, Task_method, Task_method_version, Task_objective);
444
+ END_TYPE;
445
+
446
+ TYPE interface_definition_item = SELECT (Interface_connector_occurrence, Product_view_definition);
447
+ END_TYPE;
448
+
449
+ TYPE justification_item = SELECT (Condition_assignment, Applied_state_definition_assignment, Property_value_representation, Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Applied_activity_assignment, Applied_activity_method_assignment, Applied_state_assignment, Approval, Approval_assignment, Assigned_property, Classification_assignment, Descriptive_document_property, Document_assignment, Document_definition, Document_definition_relationship, Effectivity, File_relationship, Independent_property, Independent_property_relationship, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Location_assignment, Managed_resource_relationship, Message, Numerical_document_property, Product, Product_version, Product_version_relationship, Product_view_definition, Required_resource, Required_resource_assignment, Required_resource_relationship, Resource_as_realized, Resource_event, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, State_assertion, State_assessment, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_state_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, View_definition_relationship);
450
+ END_TYPE;
451
+
452
+ TYPE justification_support_item = SELECT (Activity, Activity_method, Activity_method_assignment, Activity_property, Applied_activity_assignment, Applied_activity_method_assignment, Applied_state_assignment, Applied_state_definition_assignment, Approval, Assigned_property, Certification, Contract, Descriptive_document_property, Document, Document_definition, Document_definition_relationship, Document_version, Effectivity, Event, File_relationship, Independent_property, Independent_property_relationship, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Location, Location_assignment, Message, Numerical_document_property, Observation, Product, Product_version, Product_version_relationship, Product_view_definition, Project, Resource_property, State, State_definition, State_definition_relationship, State_relationship, View_definition_relationship, Work_order, Work_request);
453
+ END_TYPE;
454
+
455
+ TYPE length_measure = REAL;
456
+ END_TYPE;
457
+
458
+ TYPE limit_qualifier_list = ENUMERATION OF (minimum, maximum);
459
+ END_TYPE;
460
+
461
+ TYPE location_assignment_select = SELECT (Activity, Activity_method_assignment, Applied_activity_assignment, Applied_activity_method_assignment, Attachment_slot, Attachment_slot_definition, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_version, Document, Document_definition, Document_version, File, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Managed_resource, Organization, Organization_type, Person, Person_in_organization, Position, Position_type, Product, Product_group, Product_version, Product_view_definition, Project, Required_resource, Required_resource_assignment, Resource_item, Resource_item_assignment, Task_element, Task_method, Task_method_assignment, Task_method_version, Task_method_version_assignment, Type_of_person, View_definition_relationship);
462
+ END_TYPE;
463
+
464
+ TYPE measure_value = SELECT (any_number_value, any_string_value, length_measure, plane_angle_measure);
465
+ END_TYPE;
466
+
467
+ TYPE message_definer_select = SELECT (Organization, Person_in_organization);
468
+ END_TYPE;
469
+
470
+ TYPE method_or_method_version = SELECT (Task_method, Task_method_version);
471
+ END_TYPE;
472
+
473
+ TYPE minute_in_hour = INTEGER;
474
+ WHERE
475
+ WR1: {0 <= SELF <= 59};
476
+ END_TYPE;
477
+
478
+ TYPE month_in_year_number = INTEGER;
479
+ WHERE
480
+ WR1: {1 <= SELF <= 12};
481
+ END_TYPE;
482
+
483
+ TYPE observation_recorder = SELECT (Product_as_realized);
484
+ END_TYPE;
485
+
486
+ TYPE observed_context = SELECT (Activity, Activity_method, Applied_activity_assignment, Attachment_slot, Attachment_slot_definition, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_version, Interface_connector_occurrence, Product, Product_group, Product_version, Product_view_definition, Required_resource, Resource_as_realized, Resource_item, Scheme, Scheme_entry, Scheme_version, Task_element, Task_method, Task_method_version, View_definition_relationship, Work_order, Work_output, Work_request);
487
+ END_TYPE;
488
+
489
+ TYPE offset_orientation = ENUMERATION OF (ahead, exact, behind);
490
+ END_TYPE;
491
+
492
+ TYPE organization_or_person_in_organization_item = SELECT (Activity, Activity_method, Activity_method_assignment, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Activity_property_representation, Activity_relationship, Address_assignment, Affected_items_assignment, Alias_identification, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Applied_independent_resource_property, Applied_state_assignment, Applied_state_definition_assignment, Approval, Assembly_component_relationship, Assembly_relationship_substitution, Assigned_property, Breakdown, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_version, Certification, Certification_assignment, Classification_assignment, Condition, Condition_assignment, Condition_evaluation, Condition_evaluation_assignment, Contract, Contract_assignment, Date_or_date_time_assignment, Descriptive_document_property, Digital_document_definition, Digital_file, Directed_activity, Document, Document_assignment, Document_definition, Document_version, Effectivity, Effectivity_assignment, Envelope, Event, Event_assignment, Hardcopy, Identification_assignment, Independent_property, Independent_property_relationship, Independent_property_representation, Information_usage_right, Interface_connection, Interface_connector, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Interface_specification, Interface_specification_definition, Interface_specification_version, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Location_assignment, Managed_resource, Managed_resource_relationship, Message, Numerical_document_property, Observation, Organization_or_person_in_organization_assignment, Part, Part_version, Part_view_definition, Person_in_organization, Physical_document_definition, Position_assignment, Position_group_assignment, Position_position_type_assignment, Position_type, Position_type_assignment, Product_as_individual, Product_as_planned, Product_as_realized, Product_category, Product_category_assignment, Product_configuration, Product_group, Product_group_membership, Product_group_relationship, Product_relationship, Product_version, Product_view_definition, Project, Project_assignment, Property_representation, Qualification_assignment, Qualification_type, Representation, Required_resource, Required_resource_assignment, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_as_realized_assignment, Resource_event, Resource_item, Resource_item_assignment, Resource_property, Resource_property_representation, Scheme, Scheme_entry, Security_classification, Security_classification_assignment, Selected_item, Selected_item_assignment, State, State_assertion, State_assessment, State_definition, State_definition_relationship, State_relationship, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_state_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, Tracing_relationship, Type_of_person_assignment, View_definition_context, Work_order, Work_output, Work_request);
493
+ END_TYPE;
494
+
495
+ TYPE organization_or_person_in_organization_select = SELECT (Organization, Person_in_organization);
496
+ END_TYPE;
497
+
498
+ TYPE person_or_organization_or_person_in_organization_select = SELECT (Organization, Person, Person_in_organization);
499
+ END_TYPE;
500
+
501
+ TYPE plane_angle_measure = REAL;
502
+ END_TYPE;
503
+
504
+ TYPE position_context_item = SELECT (Organization, Position_group, Project);
505
+ END_TYPE;
506
+
507
+ TYPE position_group_item = SELECT (Approving_person_organization, Document_definition, Organization_or_person_in_organization_assignment, Product, Product_version, Product_view_definition);
508
+ END_TYPE;
509
+
510
+ TYPE position_item = SELECT (Approving_person_organization, Document_definition, Organization_or_person_in_organization_assignment, Product, Product_version, Product_view_definition);
511
+ END_TYPE;
512
+
513
+ TYPE position_person_or_organization_or_person_in_organization_select = SELECT (Organization, Person, Person_in_organization);
514
+ END_TYPE;
515
+
516
+ TYPE position_type_item = SELECT (Approving_person_organization, Document_definition, Organization_or_person_in_organization_assignment, Product, Product_version, Product_view_definition);
517
+ END_TYPE;
518
+
519
+ TYPE product_based_location_representation = SELECT (Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Product, Product_version);
520
+ END_TYPE;
521
+
522
+ TYPE product_item = SELECT (Interface_connector_occurrence, Product_group, Product_view_definition, View_definition_usage);
523
+ END_TYPE;
524
+
525
+ TYPE product_select = SELECT (Product, Product_as_individual, Product_concept, Product_group, Product_version);
526
+ END_TYPE;
527
+
528
+ TYPE project_item = SELECT (Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Breakdown, Independent_property, Product, Product_concept, Product_configuration, Product_group, Product_group_membership, Product_group_relationship, Product_version, Task_element, Task_method, Task_method_assignment, Task_method_version, Task_method_version_assignment, Task_objective);
529
+ END_TYPE;
530
+
531
+ TYPE property_assignment_select = SELECT (Activity_method_relationship, Work_request, Address, Applied_activity_assignment, Applied_activity_method_assignment, Applied_state_assignment, Applied_state_definition_assignment, Breakdown_element_realization, Breakdown_element_usage, Document_assignment, Document_definition, Envelope, Experience_instance, File, Hierarchical_interface_connection, Interface_connection, Interface_connector_occurrence, Interface_definition_connection, Location_assignment, Organization_or_person_in_organization_assignment, Part_view_definition, Person, Person_in_organization, Product_group_membership, Product_view_definition, Project, State, State_definition, State_definition_relationship, State_relationship, Task_method_state_relationship, Task_objective_state_relationship, Type_of_person_definition, View_definition_relationship);
532
+ END_TYPE;
533
+
534
+ TYPE qualifications_select = SELECT (Organization, Person, Person_in_organization);
535
+ END_TYPE;
536
+
537
+ TYPE required_resource_item = SELECT (Activity, Activity_method, Applied_activity_assignment, Event, Position, Position_type, Scheme, Scheme_entry, Scheme_version, Task_element, Task_method, Task_method_assignment, Task_method_version, Task_method_version_assignment, Type_of_person);
538
+ END_TYPE;
539
+
540
+ TYPE requirement_assignment_item = SELECT (Product_group, Product_group_membership, Activity_method, Alternate_part_relationship, Applied_activity_method_assignment, Applied_state_assignment, Applied_state_definition_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Attachment_slot, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Breakdown_version, Document_version, Interface_connector_occurrence, Interface_specification, Part_version, Product_as_individual_version, Product_as_planned, Product_as_realized, Product_configuration, Product_in_attachment_slot, Product_view_definition, Project, Required_resource_by_specification, State, State_definition, Work_request);
541
+ END_TYPE;
542
+
543
+ TYPE requirement_source_item = SELECT (Activity_method, Applied_activity_method_assignment, Applied_state_assignment, Applied_state_definition_assignment, Document_version, Interface_connector_occurrence, Part_version, Product_as_individual_version, Product_view_definition, State, State_definition);
544
+ END_TYPE;
545
+
546
+ TYPE resource_as_realized_item = SELECT (Activity_actual, Applied_activity_assignment, Event);
547
+ END_TYPE;
548
+
549
+ TYPE resource_as_realized_relationship_select = SELECT (Required_resource, Resource_event);
550
+ END_TYPE;
551
+
552
+ TYPE resource_assignment_item = SELECT (Contract, Location, Part, Part_version, Part_view_definition, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_group, Project);
553
+ END_TYPE;
554
+
555
+ TYPE resource_item_select = SELECT (Document, Document_definition, Document_version, File, Location, Organization, Organization_type, Part, Part_version, Part_view_definition, Person, Person_in_organization, Position, Position_type, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_group, Type_of_person);
556
+ END_TYPE;
557
+
558
+ TYPE scheme_entry_item_select = activity_method_item;
559
+ WHERE
560
+ wr1: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ACTIVITY_METHOD' IN TYPEOF(SELF));
561
+ wr2: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ACTIVITY_PROPERTY' IN TYPEOF(SELF));
562
+ wr3: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_DOCUMENT_PROPERTY' IN TYPEOF(SELF));
563
+ wr4: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_PROPERTY' IN TYPEOF(SELF));
564
+ wr5: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT' IN TYPEOF(SELF));
565
+ wr6: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_DEFINITION' IN TYPEOF(SELF));
566
+ wr7: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_USAGE' IN TYPEOF(SELF));
567
+ wr8: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_VERSION' IN TYPEOF(SELF));
568
+ wr9: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.CONTRACT' IN TYPEOF(SELF));
569
+ wr10: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.DOCUMENT' IN TYPEOF(SELF));
570
+ wr11: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.DOCUMENT_VERSION' IN TYPEOF(SELF));
571
+ wr12: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ENVELOPE' IN TYPEOF(SELF));
572
+ wr13: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.FILE' IN TYPEOF(SELF));
573
+ wr14: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTION' IN TYPEOF(SELF));
574
+ wr15: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTOR_OCCURRENCE' IN TYPEOF(SELF));
575
+ wr16: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_DEFINITION_CONNECTION' IN TYPEOF(SELF));
576
+ wr17: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.LOCATION' IN TYPEOF(SELF));
577
+ wr18: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.MANAGED_RESOURCE' IN TYPEOF(SELF));
578
+ wr19: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.MESSAGE' IN TYPEOF(SELF));
579
+ wr20: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.OBSERVATION_CONSEQUENCE' IN TYPEOF(SELF));
580
+ wr21: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ORGANIZATION' IN TYPEOF(SELF));
581
+ wr22: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ORGANIZATION_TYPE' IN TYPEOF(SELF));
582
+ wr23: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART' IN TYPEOF(SELF));
583
+ wr24: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VERSION' IN TYPEOF(SELF));
584
+ wr25: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VIEW_DEFINITION' IN TYPEOF(SELF));
585
+ wr26: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PERSON' IN TYPEOF(SELF));
586
+ wr27: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PERSON_IN_ORGANIZATION' IN TYPEOF(SELF));
587
+ wr28: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION' IN TYPEOF(SELF));
588
+ wr29: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION_GROUP' IN TYPEOF(SELF));
589
+ wr30: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION_TYPE' IN TYPEOF(SELF));
590
+ wr31: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT' IN TYPEOF(SELF));
591
+ wr32: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_AS_INDIVIDUAL' IN TYPEOF(SELF));
592
+ wr33: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_AS_INDIVIDUAL_VERSION' IN TYPEOF(SELF));
593
+ wr34: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_AS_INDIVIDUAL_VIEW' IN TYPEOF(SELF));
594
+ wr35: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_BASED_LOCATION_IDENTIFICATION' IN TYPEOF(SELF));
595
+ wr36: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CONCEPT' IN TYPEOF(SELF));
596
+ wr37: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CONFIGURATION' IN TYPEOF(SELF));
597
+ wr38: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_GROUP' IN TYPEOF(SELF));
598
+ wr39: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_VERSION' IN TYPEOF(SELF));
599
+ wr40: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_VERSION_RELATIONSHIP' IN TYPEOF(SELF));
600
+ wr41: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_VIEW_DEFINITION' IN TYPEOF(SELF));
601
+ wr42: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PROJECT' IN TYPEOF(SELF));
602
+ wr43: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.REQUIRED_RESOURCE' IN TYPEOF(SELF));
603
+ wr44: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.REQUIRED_RESOURCE_ASSIGNMENT' IN TYPEOF(SELF));
604
+ wr45: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_AS_REALIZED' IN TYPEOF(SELF));
605
+ wr46: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_ITEM' IN TYPEOF(SELF));
606
+ wr47: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_PROPERTY' IN TYPEOF(SELF));
607
+ wr48: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.SCHEME_ENTRY' IN TYPEOF(SELF));
608
+ wr49: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE_RELATIONSHIP' IN TYPEOF(SELF));
609
+ wr50: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD' IN TYPEOF(SELF));
610
+ wr51: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD_VERSION' IN TYPEOF(SELF));
611
+ wr52: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TYPE_OF_PERSON' IN TYPEOF(SELF));
612
+ wr53: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TYPE_OF_PERSON_DEFINITION' IN TYPEOF(SELF));
613
+ wr54: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.VIEW_DEFINITION_RELATIONSHIP' IN TYPEOF(SELF));
614
+ wr55: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.WORK_OUTPUT' IN TYPEOF(SELF));
615
+ wr56: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.WORK_OUTPUT_ASSIGNMENT' IN TYPEOF(SELF));
616
+ END_TYPE;
617
+
618
+ TYPE scheme_subject_select = activity_method_item;
619
+ WHERE
620
+ wr1: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ACTIVITY_PROPERTY' IN TYPEOF(SELF));
621
+ wr2: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_DOCUMENT_PROPERTY' IN TYPEOF(SELF));
622
+ wr3: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_PROPERTY' IN TYPEOF(SELF));
623
+ wr4: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT' IN TYPEOF(SELF));
624
+ wr5: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_DEFINITION' IN TYPEOF(SELF));
625
+ wr6: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_USAGE' IN TYPEOF(SELF));
626
+ wr7: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_VERSION' IN TYPEOF(SELF));
627
+ wr8: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ENVELOPE' IN TYPEOF(SELF));
628
+ wr9: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.EVENT' IN TYPEOF(SELF));
629
+ wr10: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.FILE' IN TYPEOF(SELF));
630
+ wr11: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTION' IN TYPEOF(SELF));
631
+ wr12: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTOR_OCCURRENCE' IN TYPEOF(SELF));
632
+ wr13: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_DEFINITION_CONNECTION' IN TYPEOF(SELF));
633
+ wr14: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.MESSAGE' IN TYPEOF(SELF));
634
+ wr15: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.OBSERVATION_CONSEQUENCE' IN TYPEOF(SELF));
635
+ wr16: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART' IN TYPEOF(SELF));
636
+ wr17: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VERSION' IN TYPEOF(SELF));
637
+ wr18: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VIEW_DEFINITION' IN TYPEOF(SELF));
638
+ wr19: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION' IN TYPEOF(SELF));
639
+ wr20: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION_GROUP' IN TYPEOF(SELF));
640
+ wr21: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION_TYPE' IN TYPEOF(SELF));
641
+ wr22: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_BASED_LOCATION_IDENTIFICATION' IN TYPEOF(SELF));
642
+ wr23: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CONCEPT' IN TYPEOF(SELF));
643
+ wr24: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CONFIGURATION' IN TYPEOF(SELF));
644
+ wr25: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_VERSION_RELATIONSHIP' IN TYPEOF(SELF));
645
+ wr26: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.REQUIRED_RESOURCE_ASSIGNMENT' IN TYPEOF(SELF));
646
+ wr27: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_EVENT' IN TYPEOF(SELF));
647
+ wr28: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_PROPERTY' IN TYPEOF(SELF));
648
+ wr29: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE_RELATIONSHIP' IN TYPEOF(SELF));
649
+ wr30: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD' IN TYPEOF(SELF));
650
+ wr31: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD_VERSION' IN TYPEOF(SELF));
651
+ wr32: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TYPE_OF_PERSON_DEFINITION' IN TYPEOF(SELF));
652
+ wr33: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.VIEW_DEFINITION_RELATIONSHIP' IN TYPEOF(SELF));
653
+ wr34: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.WORK_OUTPUT' IN TYPEOF(SELF));
654
+ wr35: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.WORK_OUTPUT_ASSIGNMENT' IN TYPEOF(SELF));
655
+ END_TYPE;
656
+
657
+ TYPE scheme_version_select = activity_method_item;
658
+ WHERE
659
+ wr1: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ACTIVITY_PROPERTY' IN TYPEOF(SELF));
660
+ wr2: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_DOCUMENT_PROPERTY' IN TYPEOF(SELF));
661
+ wr3: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_PROPERTY' IN TYPEOF(SELF));
662
+ wr4: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT' IN TYPEOF(SELF));
663
+ wr5: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_DEFINITION' IN TYPEOF(SELF));
664
+ wr6: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_USAGE' IN TYPEOF(SELF));
665
+ wr7: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.BREAKDOWN_ELEMENT_VERSION' IN TYPEOF(SELF));
666
+ wr8: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ENVELOPE' IN TYPEOF(SELF));
667
+ wr9: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.EVENT' IN TYPEOF(SELF));
668
+ wr10: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.FILE' IN TYPEOF(SELF));
669
+ wr11: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTION' IN TYPEOF(SELF));
670
+ wr12: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_CONNECTOR_OCCURRENCE' IN TYPEOF(SELF));
671
+ wr13: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.INTERFACE_DEFINITION_CONNECTION' IN TYPEOF(SELF));
672
+ wr14: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.MESSAGE' IN TYPEOF(SELF));
673
+ wr15: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.OBSERVATION_CONSEQUENCE' IN TYPEOF(SELF));
674
+ wr16: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART' IN TYPEOF(SELF));
675
+ wr17: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VERSION' IN TYPEOF(SELF));
676
+ wr18: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PART_VIEW_DEFINITION' IN TYPEOF(SELF));
677
+ wr19: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION' IN TYPEOF(SELF));
678
+ wr20: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION_GROUP' IN TYPEOF(SELF));
679
+ wr21: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.POSITION_TYPE' IN TYPEOF(SELF));
680
+ wr22: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_BASED_LOCATION_IDENTIFICATION' IN TYPEOF(SELF));
681
+ wr23: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CONCEPT' IN TYPEOF(SELF));
682
+ wr24: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CONFIGURATION' IN TYPEOF(SELF));
683
+ wr25: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_VERSION_RELATIONSHIP' IN TYPEOF(SELF));
684
+ wr26: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.REQUIRED_RESOURCE_ASSIGNMENT' IN TYPEOF(SELF));
685
+ wr27: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_EVENT' IN TYPEOF(SELF));
686
+ wr28: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_PROPERTY' IN TYPEOF(SELF));
687
+ wr29: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.STATE_RELATIONSHIP' IN TYPEOF(SELF));
688
+ wr30: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD' IN TYPEOF(SELF));
689
+ wr31: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TASK_METHOD_VERSION' IN TYPEOF(SELF));
690
+ wr32: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.TYPE_OF_PERSON_DEFINITION' IN TYPEOF(SELF));
691
+ wr33: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.VIEW_DEFINITION_RELATIONSHIP' IN TYPEOF(SELF));
692
+ wr34: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.WORK_OUTPUT' IN TYPEOF(SELF));
693
+ wr35: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.WORK_OUTPUT_ASSIGNMENT' IN TYPEOF(SELF));
694
+ END_TYPE;
695
+
696
+ TYPE second_in_minute = REAL;
697
+ WHERE
698
+ WR1: {0 <= SELF <= 60.000000};
699
+ END_TYPE;
700
+
701
+ TYPE security_classification_item = SELECT (Activity, Activity_method, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Attachment_slot_version, Breakdown, Breakdown_element_definition, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Digital_document_definition, Digital_file, Document, Document_assignment, Document_version, Hardcopy, Hierarchical_interface_connection, Interface_connection, Interface_connector, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Interface_specification_definition, Interface_specification_version, Message, Part, Part_version, Part_view_definition, Physical_document_definition, Product_as_individual, Product_as_individual_view, Product_as_planned, Product_as_realized, Product_configuration, Product_design_to_individual, Product_design_version_to_individual, Product_group, Product_group_membership, Product_group_relationship, Product_relationship, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_item, Task_element, Task_element_relationship, Task_element_state_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Task_objective_state_relationship, Tracing_relationship, Work_output);
702
+ END_TYPE;
703
+
704
+ TYPE selected_item_context_items = SELECT (Breakdown, Contract, Part, Part_version, Product_as_individual, Product_as_individual_version, Product_concept, Product_configuration, Project);
705
+ END_TYPE;
706
+
707
+ TYPE selected_item_select = SELECT (Interface_connection, Interface_connector_definition, Interface_connector_occurrence, Interface_definition_connection, Product, Product_version);
708
+ END_TYPE;
709
+
710
+ TYPE shape_dependent_select = SELECT (Item_shape, Shape_element);
711
+ END_TYPE;
712
+
713
+ TYPE shape_model = SELECT (External_geometric_model, Geometric_model);
714
+ END_TYPE;
715
+
716
+ TYPE shape_select = SELECT (Item_shape, Shape_element, Shape_element_relationship);
717
+ END_TYPE;
718
+
719
+ TYPE shapeable_item = SELECT (Characterizable_object, Product_view_definition, View_definition_usage);
720
+ END_TYPE;
721
+
722
+ TYPE state_definition_of_item = SELECT (Activity, Activity_method, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Attachment_slot, Attachment_slot_definition, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Breakdown_version, Certification, Contract, Digital_document_definition, Digital_file, Document, Document_version, File_location_identification, Hardcopy, Interface_connection, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_specification, Interface_specification_definition, Interface_specification_version, Location, Managed_resource, Organization, Part, Part_version, Part_view_definition, Person_in_organization, Physical_document_definition, Product, Product_as_individual, Product_as_individual_view, Product_as_planned, Product_as_realized, Product_category, Product_concept, Product_configuration, Product_group, Product_in_attachment_slot, Product_version, Project, Resource_as_realized, Resource_as_realized_assignment, Resource_as_realized_relationship, Resource_as_realized_resource_item, Resource_event, Resource_event_correspondence_relationship, Resource_event_relationship, Resource_group_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, Scheme, Scheme_version, Security_classification, View_definition_relationship, Work_order, Work_request);
723
+ END_TYPE;
724
+
725
+ TYPE state_of_item = SELECT (Approval, Activity, Activity_method, Alternate_part_relationship, Applied_activity_assignment, Assembly_component_relationship, Assembly_relationship_substitution, Attachment_slot, Attachment_slot_definition, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_definition, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Breakdown_version, Certification, Contract, Digital_document_definition, Digital_file, Document, Document_version, File_location_identification, Hardcopy, Interface_connection, Interface_connector_as_planned, Interface_connector_as_realized, Interface_connector_definition, Interface_connector_design, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_specification, Interface_specification_definition, Interface_specification_version, Location, Managed_resource, Message, Organization, Part, Part_version, Part_view_definition, Person_in_organization, Physical_document_definition, Product, Product_as_individual, Product_as_individual_view, Product_as_planned, Product_as_realized, Product_concept, Product_configuration, Product_group, Product_in_attachment_slot, Product_version, Project, Resource_as_realized, Resource_as_realized_assignment, Resource_as_realized_relationship, Resource_as_realized_resource_item, Resource_event, Resource_event_correspondence_relationship, Resource_event_relationship, Resource_group_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, Scheme, Scheme_version, Security_classification, Task_method_version, View_definition_relationship, Work_order, Work_request);
726
+ END_TYPE;
727
+
728
+ TYPE state_or_state_definition_select = SELECT (Applied_state_assignment, Applied_state_definition_assignment, State, State_definition);
729
+ END_TYPE;
730
+
731
+ TYPE string_select = SELECT (Activity, Activity_method, Activity_method_assignment, Activity_method_realization, Activity_method_realization_relationship, Activity_method_relationship, Activity_property, Activity_relationship, Alternate_part_relationship, Applied_activity_assignment, Applied_activity_method_assignment, Approval, Approval_relationship, Approval_status, Assembly_component_relationship, Assembly_relationship_substitution, Assigned_property, Attachment_slot, Attachment_slot_definition, Attachment_slot_design_to_planned, Attachment_slot_design_to_realized, Attachment_slot_on_product, Attachment_slot_planned_to_realized, Attachment_slot_version, Breakdown, Breakdown_element, Breakdown_element_realization, Breakdown_element_usage, Breakdown_element_version, Certification, Condition, Condition_evaluation, Condition_evaluation_parameter, Condition_parameter, Condition_relationship, Contract, Date_or_date_time_assignment, Digital_document_definition, Document, Document_assignment, Document_definition_relationship, Document_version, Envelope, Envelope_relationship, Event, Experience_gained, Experience_type, External_item_identification, External_source_identification, File_relationship, Global_location_representation, Identification_assignment, Independent_property, Independent_property_relationship, Information_right, Information_usage_right, Interface_connection, Interface_connector, Interface_connector_definition, Interface_connector_occurrence, Interface_connector_version, Interface_definition_connection, Interface_definition_for, Justification, Justification_assignment, Justification_relationship, Justification_support_assignment, Location, Location_assignment, Location_relationship, Managed_resource, Managed_resource_relationship, Message, Message_relationship, Observation, Observation_consequence, Organization_relationship, Organization_type, Organizational_location_identification, Part, Part_version, Part_view_definition, Person_in_organization, Physical_document_definition, Position, Position_group, Position_relationship, Position_role, Position_type, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_based_location_identification, Product_category, Product_configuration, Product_group, Product_group_relationship, Product_relationship, Project, Project_assignment, Project_relationship, Qualification_type, Regional_coordinate, Regional_grid_location_representation, Related_condition_parameter, Representation_item, Required_resource, Required_resource_relationship, Requirement, Requirement_assignment, Requirement_collection_relationship, Requirement_source, Requirement_version, Requirement_version_relationship, Requirement_view_definition, Resource_as_realized, Resource_as_realized_relationship, Resource_event, Resource_event_correspondence_relationship, Resource_event_relationship, Resource_item, Resource_item_assignment, Resource_item_relationship, Resource_property, State, State_definition, State_definition_relationship, State_relationship, Task_element, Task_element_relationship, Task_method, Task_method_assignment, Task_method_relationship, Task_method_version, Task_method_version_assignment, Task_method_version_relationship, Task_objective, Tracing_relationship, Type_of_person, Type_of_person_assignment, Type_of_person_definition, Type_of_person_definition_relationship, Work_order, Work_output, Work_output_relationship);
732
+ END_TYPE;
733
+
734
+ TYPE task_item = activity_method_item;
735
+ WHERE
736
+ wr1: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ACTIVITY' IN TYPEOF(SELF));
737
+ wr2: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ACTIVITY_METHOD' IN TYPEOF(SELF));
738
+ wr3: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.APPLIED_ACTIVITY_ASSIGNMENT' IN TYPEOF(SELF));
739
+ wr4: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.CONTRACT' IN TYPEOF(SELF));
740
+ wr5: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.EVENT' IN TYPEOF(SELF));
741
+ wr6: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.MANAGED_RESOURCE' IN TYPEOF(SELF));
742
+ wr7: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PERSON' IN TYPEOF(SELF));
743
+ wr8: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PERSON_IN_ORGANIZATION' IN TYPEOF(SELF));
744
+ wr9: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PROJECT' IN TYPEOF(SELF));
745
+ wr10: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_AS_REALIZED' IN TYPEOF(SELF));
746
+ wr11: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.RESOURCE_EVENT' IN TYPEOF(SELF));
747
+ wr12: NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.SCHEME_ENTRY' IN TYPEOF(SELF));
748
+ END_TYPE;
749
+
750
+ TYPE template_instance = SELECT (Mapping_based_template_instance, Transformation_based_template_instance);
751
+ END_TYPE;
752
+
753
+ TYPE type_of_person_item_select = SELECT (Person, Person_in_organization, Position, Position_group, Position_type);
754
+ END_TYPE;
755
+
756
+ TYPE version_or_definition = SELECT (Product_version, Product_view_definition);
757
+ END_TYPE;
758
+
759
+ TYPE work_item = SELECT (Activity, Activity_method, Applied_activity_assignment, Applied_activity_method_assignment, Event, Scheme, Scheme_entry, Scheme_version, Task_element, Task_method, Task_method_version);
760
+ END_TYPE;
761
+
762
+ TYPE work_output_item = SELECT (Breakdown, Breakdown_version, Contract, Document, Document_definition, Document_version, Envelope, File, Location, Managed_resource, Message, Organization, Organization_type, Part, Part_version, Part_view_definition, Person, Person_in_organization, Position, Position_type, Product, Product_as_individual, Product_as_individual_version, Product_as_individual_view, Product_group, Product_version, Product_view_definition, Resource_as_realized, Resource_item, Type_of_person);
763
+ END_TYPE;
764
+
765
+ TYPE year_number = INTEGER;
766
+ END_TYPE;
767
+
768
+ TYPE message_content_item = SELECT (Product, Product_version, Activity, Activity_method, Work_order, Work_request, External_class_library, Resource_event, Resource_item);
769
+ END_TYPE;
770
+
771
+ TYPE observation_content_item = SELECT (Product, Product_version, Activity, State);
772
+ END_TYPE;
773
+
774
+ ENTITY Activity;
775
+ id : STRING;
776
+ name : STRING;
777
+ description : OPTIONAL STRING;
778
+ chosen_method : Activity_method;
779
+ END_ENTITY;
780
+
781
+ ENTITY Activity_actual
782
+ SUBTYPE OF (Activity);
783
+ END_ENTITY;
784
+
785
+ ENTITY Activity_happening
786
+ SUBTYPE OF (Activity_relationship);
787
+ SELF\Activity_relationship.relating_activity : Activity_actual;
788
+ DERIVE
789
+ actual : Activity_actual := SELF\Activity_relationship.relating_activity;
790
+ predicted : Activity := SELF\Activity_relationship.related_activity;
791
+ WHERE
792
+ WR1: NOT ('ACTIVITY_AS_REALIZED.ACTIVITY_ACTUAL' IN TYPEOF(predicted));
793
+ END_ENTITY;
794
+
795
+ ENTITY Activity_method
796
+ SUPERTYPE OF (ONEOF(Task_element, Task_method, Task_method_version));
797
+ name : STRING;
798
+ description : OPTIONAL STRING;
799
+ consequence : OPTIONAL STRING;
800
+ purpose : STRING;
801
+ END_ENTITY;
802
+
803
+ ENTITY Activity_method_assignment;
804
+ relation_type : STRING;
805
+ assigned_method : Activity_method;
806
+ associated_request : Work_request;
807
+ END_ENTITY;
808
+
809
+ ENTITY Activity_method_realization;
810
+ id : STRING;
811
+ name : STRING;
812
+ description : OPTIONAL STRING;
813
+ activity_method : Activity_method;
814
+ realized_by : activity_realization_select;
815
+ END_ENTITY;
816
+
817
+ ENTITY Activity_method_realization_relationship;
818
+ id : STRING;
819
+ name : STRING;
820
+ description : OPTIONAL STRING;
821
+ relating : Activity_method_realization;
822
+ related : Activity_method_realization;
823
+ END_ENTITY;
824
+
825
+ ENTITY Activity_method_relationship
826
+ SUPERTYPE OF (ONEOF(Task_element_relationship, Task_method_relationship, Task_method_version_relationship));
827
+ name : STRING;
828
+ description : OPTIONAL STRING;
829
+ relating_method : Activity_method;
830
+ related_method : Activity_method;
831
+ END_ENTITY;
832
+
833
+ ENTITY Activity_property;
834
+ name : STRING;
835
+ description : STRING;
836
+ described_element : characterized_activity_definition;
837
+ END_ENTITY;
838
+
839
+ ENTITY Activity_property_representation;
840
+ description : OPTIONAL STRING;
841
+ property : Activity_property;
842
+ rep : Representation;
843
+ role : STRING;
844
+ END_ENTITY;
845
+
846
+ ENTITY Activity_relationship;
847
+ name : STRING;
848
+ description : OPTIONAL STRING;
849
+ relating_activity : Activity;
850
+ related_activity : Activity;
851
+ END_ENTITY;
852
+
853
+ ENTITY Activity_status;
854
+ assigned_activity : Activity;
855
+ status : STRING;
856
+ END_ENTITY;
857
+
858
+ ENTITY Address;
859
+ name : OPTIONAL STRING;
860
+ street_number : OPTIONAL STRING;
861
+ street : OPTIONAL STRING;
862
+ postal_box : OPTIONAL STRING;
863
+ town : OPTIONAL STRING;
864
+ region : OPTIONAL STRING;
865
+ postal_code : OPTIONAL STRING;
866
+ country : OPTIONAL STRING;
867
+ internal_location : OPTIONAL STRING;
868
+ facsimile_number : OPTIONAL STRING;
869
+ telephone_number : OPTIONAL STRING;
870
+ electronic_mail_address : OPTIONAL STRING;
871
+ telex_number : OPTIONAL STRING;
872
+ url : OPTIONAL STRING;
873
+ WHERE
874
+ WR1: EXISTS(street_number) OR EXISTS(street) OR EXISTS(postal_box) OR EXISTS(town) OR EXISTS(region) OR EXISTS(postal_code) OR EXISTS(country) OR EXISTS(internal_location) OR EXISTS(facsimile_number) OR EXISTS(telephone_number) OR EXISTS(electronic_mail_address) OR EXISTS(telex_number);
875
+ END_ENTITY;
876
+
877
+ ENTITY Address_assignment;
878
+ address_type : OPTIONAL STRING;
879
+ assigned_address : Address;
880
+ located_person_organizations : SET [1:?] OF organization_or_person_in_organization_select;
881
+ END_ENTITY;
882
+
883
+ ENTITY Address_based_location_representation
884
+ SUBTYPE OF (Location_representation);
885
+ postal_address : Address;
886
+ END_ENTITY;
887
+
888
+ ENTITY Advisory_task_step
889
+ SUBTYPE OF (Task_step);
890
+ END_ENTITY;
891
+
892
+ ENTITY Affected_items_assignment;
893
+ assigned_work_request : Work_request;
894
+ items : SET [1:?] OF affected_item_select;
895
+ END_ENTITY;
896
+
897
+ ENTITY Alias_identification
898
+ SUBTYPE OF (Identification_assignment);
899
+ DERIVE
900
+ SELF\Identification_assignment.role : STRING := 'alias';
901
+ WHERE
902
+ WR1: SIZEOF(QUERY(item <* SELF\Identification_assignment.items | NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ALIAS_IDENTIFICATION_ITEM' IN TYPEOF(item)))) = 0;
903
+ END_ENTITY;
904
+
905
+ ENTITY Alternate_part_relationship
906
+ SUBTYPE OF (Alternate_product_relationship);
907
+ SELF\Alternate_product_relationship.alternate_product : Part;
908
+ SELF\Alternate_product_relationship.base_product : Part;
909
+ END_ENTITY;
910
+
911
+ ENTITY Alternate_product_relationship;
912
+ name : OPTIONAL STRING;
913
+ description : OPTIONAL STRING;
914
+ alternate_product : Product;
915
+ base_product : Product;
916
+ criteria : STRING;
917
+ UNIQUE
918
+ UR1: alternate_product, base_product;
919
+ WHERE
920
+ WR1: alternate_product :<>: base_product;
921
+ END_ENTITY;
922
+
923
+ ENTITY Amount_of_substance_unit
924
+ SUBTYPE OF (Unit);
925
+ END_ENTITY;
926
+
927
+ ENTITY And_state_cause_effect_definition
928
+ SUBTYPE OF (State_cause_effect_definition);
929
+ END_ENTITY;
930
+
931
+ ENTITY Applied_activity_assignment;
932
+ assigned_activity : Activity;
933
+ items : SET [1:?] OF activity_item;
934
+ role : STRING;
935
+ END_ENTITY;
936
+
937
+ ENTITY Applied_activity_method_assignment;
938
+ assigned_activity_method : Activity_method;
939
+ items : SET [1:?] OF activity_method_item;
940
+ role : STRING;
941
+ END_ENTITY;
942
+
943
+ ENTITY Applied_independent_activity_property
944
+ SUBTYPE OF (Activity_property);
945
+ base_element_property : Independent_property;
946
+ DERIVE
947
+ SELF\Activity_property.name : STRING := base_element_property.property_type;
948
+ END_ENTITY;
949
+
950
+ ENTITY Applied_independent_property
951
+ SUBTYPE OF (Assigned_property);
952
+ base_independent_property : Independent_property;
953
+ DERIVE
954
+ SELF\Assigned_property.name : STRING := base_independent_property.property_type;
955
+ END_ENTITY;
956
+
957
+ ENTITY Applied_independent_resource_property
958
+ SUBTYPE OF (Resource_property);
959
+ base_element_property : Independent_property;
960
+ DERIVE
961
+ SELF\Resource_property.name : STRING := base_element_property.property_type;
962
+ END_ENTITY;
963
+
964
+ ENTITY Applied_information_usage_right;
965
+ item : SET [1:?] OF information_usage_right_item;
966
+ right_applied : Information_usage_right;
967
+ END_ENTITY;
968
+
969
+ ENTITY Applied_state_assignment;
970
+ described_state : State;
971
+ assigned_to : state_of_item;
972
+ role : State_role;
973
+ END_ENTITY;
974
+
975
+ ENTITY Applied_state_definition_assignment;
976
+ described_state_definition : State_definition;
977
+ assigned_to : state_definition_of_item;
978
+ role : State_definition_role;
979
+ END_ENTITY;
980
+
981
+ ENTITY Approval;
982
+ status : Approval_status;
983
+ purpose : STRING;
984
+ planned_date : OPTIONAL date_or_date_time_select;
985
+ actual_date : OPTIONAL date_or_date_time_select;
986
+ END_ENTITY;
987
+
988
+ ENTITY Approval_assignment;
989
+ assigned_approval : Approval;
990
+ items : SET [1:?] OF approval_item;
991
+ role : OPTIONAL STRING;
992
+ END_ENTITY;
993
+
994
+ ENTITY Approval_relationship;
995
+ relation_type : STRING;
996
+ description : OPTIONAL STRING;
997
+ relating_approval : Approval;
998
+ related_approval : Approval;
999
+ END_ENTITY;
1000
+
1001
+ ENTITY Approval_status;
1002
+ status_name : STRING;
1003
+ END_ENTITY;
1004
+
1005
+ ENTITY Approving_person_organization;
1006
+ person_organization : organization_or_person_in_organization_select;
1007
+ approval_date : OPTIONAL date_or_date_time_select;
1008
+ authorized_approval : Approval;
1009
+ role : OPTIONAL STRING;
1010
+ END_ENTITY;
1011
+
1012
+ ENTITY Assembly_component_relationship
1013
+ ABSTRACT SUPERTYPE OF (ONEOF(Next_assembly_usage, Promissory_usage, Component_upper_level_identification))
1014
+ SUBTYPE OF (View_definition_usage);
1015
+ quantity : OPTIONAL Value_with_unit;
1016
+ location_indicator : OPTIONAL STRING;
1017
+ WHERE
1018
+ WR1: NOT (EXISTS(quantity)) OR ((NOT ('NUMBER' IN TYPEOF(quantity.value_component))) XOR (quantity.value_component > 0));
1019
+ END_ENTITY;
1020
+
1021
+ ENTITY Assembly_relationship_substitution;
1022
+ name : OPTIONAL STRING;
1023
+ description : OPTIONAL STRING;
1024
+ base_relationship : Assembly_component_relationship;
1025
+ substitute_relationship : Assembly_component_relationship;
1026
+ UNIQUE
1027
+ UR1: base_relationship, substitute_relationship;
1028
+ WHERE
1029
+ WR1: base_relationship.relating_view :=: substitute_relationship.relating_view;
1030
+ WR2: base_relationship :<>: substitute_relationship;
1031
+ END_ENTITY;
1032
+
1033
+ ENTITY Assigned_document_property
1034
+ SUBTYPE OF (Assigned_property);
1035
+ SELF\Assigned_property.described_element : document_property_item;
1036
+ DERIVE
1037
+ SELF\Assigned_property.name : STRING := 'document property';
1038
+ UNIQUE
1039
+ UR1: SELF\Assigned_property.described_element;
1040
+ WHERE
1041
+ WR1: SIZEOF(['AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.DOCUMENT_DEFINITION', 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.FILE'] * TYPEOF(SELF\Assigned_property.described_element)) = 1;
1042
+ END_ENTITY;
1043
+
1044
+ ENTITY Assigned_property;
1045
+ id : OPTIONAL STRING;
1046
+ name : STRING;
1047
+ description : OPTIONAL STRING;
1048
+ described_element : property_assignment_select;
1049
+ END_ENTITY;
1050
+
1051
+ ENTITY Attachment_slot
1052
+ SUBTYPE OF (Product);
1053
+ END_ENTITY;
1054
+
1055
+ ENTITY Attachment_slot_as_planned
1056
+ SUBTYPE OF (Attachment_slot_version);
1057
+ END_ENTITY;
1058
+
1059
+ ENTITY Attachment_slot_as_realized
1060
+ SUBTYPE OF (Attachment_slot_version);
1061
+ END_ENTITY;
1062
+
1063
+ ENTITY Attachment_slot_definition
1064
+ SUBTYPE OF (Product_view_definition);
1065
+ SELF\Product_view_definition.defined_version : Attachment_slot_version;
1066
+ END_ENTITY;
1067
+
1068
+ ENTITY Attachment_slot_design
1069
+ SUBTYPE OF (Attachment_slot_version);
1070
+ END_ENTITY;
1071
+
1072
+ ENTITY Attachment_slot_design_to_planned;
1073
+ id : STRING;
1074
+ name : STRING;
1075
+ description : OPTIONAL STRING;
1076
+ design : Attachment_slot_design;
1077
+ planned : Attachment_slot_as_planned;
1078
+ WHERE
1079
+ WR1: SELF.design.of_product :=: SELF.planned.of_product;
1080
+ END_ENTITY;
1081
+
1082
+ ENTITY Attachment_slot_design_to_realized;
1083
+ id : STRING;
1084
+ name : STRING;
1085
+ description : OPTIONAL STRING;
1086
+ design : Attachment_slot_design;
1087
+ realized : Attachment_slot_as_realized;
1088
+ WHERE
1089
+ WR1: SELF.design.of_product :=: SELF.realized.of_product;
1090
+ END_ENTITY;
1091
+
1092
+ ENTITY Attachment_slot_on_product;
1093
+ id : STRING;
1094
+ name : STRING;
1095
+ description : OPTIONAL STRING;
1096
+ product : Product_view_definition;
1097
+ attachment_slot : Attachment_slot_definition;
1098
+ END_ENTITY;
1099
+
1100
+ ENTITY Attachment_slot_planned_to_realized;
1101
+ id : STRING;
1102
+ name : STRING;
1103
+ description : OPTIONAL STRING;
1104
+ planned : Attachment_slot_as_planned;
1105
+ realized : Attachment_slot_as_realized;
1106
+ WHERE
1107
+ WR1: SELF.planned.of_product :=: SELF.realized.of_product;
1108
+ END_ENTITY;
1109
+
1110
+ ENTITY Attachment_slot_version
1111
+ SUPERTYPE OF (ONEOF(Attachment_slot_as_planned, Attachment_slot_as_realized, Attachment_slot_design))
1112
+ SUBTYPE OF (Product_version);
1113
+ SELF\Product_version.of_product : Attachment_slot;
1114
+ END_ENTITY;
1115
+
1116
+ ENTITY Attribute_classification;
1117
+ allowed_value : Class;
1118
+ attribute_name : STRING;
1119
+ classified_entity : SET [1:?] OF classified_attribute_select;
1120
+ END_ENTITY;
1121
+
1122
+ ENTITY Attribute_translation_assignment;
1123
+ considered_instance : string_select;
1124
+ considered_attribute : STRING;
1125
+ translation_text : STRING;
1126
+ translation_language : Language;
1127
+ UNIQUE
1128
+ UR1: considered_instance, considered_attribute, translation_language;
1129
+ END_ENTITY;
1130
+
1131
+ ENTITY Axis_placement
1132
+ SUBTYPE OF (Detailed_geometric_model_element);
1133
+ origin : Cartesian_point;
1134
+ x_axis : Direction;
1135
+ y_axis : Direction;
1136
+ DERIVE
1137
+ dim : INTEGER := SIZEOF(origin.coordinates);
1138
+ WHERE
1139
+ WR1: dim > 1;
1140
+ WR2: dim = SIZEOF(x_axis.coordinates);
1141
+ WR3: dim = SIZEOF(y_axis.coordinates);
1142
+ END_ENTITY;
1143
+
1144
+ ENTITY Axis_placement_mapping;
1145
+ source : Axis_placement;
1146
+ target : Axis_placement;
1147
+ WHERE
1148
+ WR1: source\Axis_placement.dim = target\Axis_placement.dim;
1149
+ END_ENTITY;
1150
+
1151
+ ENTITY Axis_placement_transformation_mapping;
1152
+ source : Axis_placement;
1153
+ target : cartesian_transformation;
1154
+ WHERE
1155
+ WR1: source\Axis_placement.dim = SIZEOF(target.translation\Cartesian_point.coordinates);
1156
+ END_ENTITY;
1157
+
1158
+ ENTITY Breakdown
1159
+ SUPERTYPE OF (ONEOF(Functional_breakdown, Hybrid_breakdown, Physical_breakdown, System_breakdown, Zone_breakdown))
1160
+ SUBTYPE OF (Product);
1161
+ END_ENTITY;
1162
+
1163
+ ENTITY Breakdown_context
1164
+ SUPERTYPE OF (ONEOF(Functional_breakdown_context, Hybrid_breakdown_context, Physical_breakdown_context, System_breakdown_context, Zone_breakdown_context));
1165
+ id : STRING;
1166
+ name : STRING;
1167
+ description : OPTIONAL STRING;
1168
+ breakdown : Breakdown_version;
1169
+ breakdown_element : Breakdown_element_definition;
1170
+ END_ENTITY;
1171
+
1172
+ ENTITY Breakdown_element
1173
+ SUPERTYPE OF (ONEOF(Functional_element, Physical_element, System_element, Zone_element))
1174
+ SUBTYPE OF (Product);
1175
+ END_ENTITY;
1176
+
1177
+ ENTITY Breakdown_element_definition
1178
+ SUPERTYPE OF (ONEOF(Functional_element_definition, Physical_element_definition, System_element_definition, Zone_element_definition))
1179
+ SUBTYPE OF (Product_view_definition);
1180
+ SELF\Product_view_definition.defined_version : Breakdown_element_version;
1181
+ END_ENTITY;
1182
+
1183
+ ENTITY Breakdown_element_realization
1184
+ SUBTYPE OF (Product_definition_element_relationship);
1185
+ END_ENTITY;
1186
+
1187
+ ENTITY Breakdown_element_usage
1188
+ SUPERTYPE OF (ONEOF(Functional_element_usage, Hybrid_element_usage, Physical_element_usage, System_element_usage, Zone_element_usage))
1189
+ SUBTYPE OF (View_definition_usage);
1190
+ name : STRING;
1191
+ SELF\View_definition_relationship.relating_view : Breakdown_element_definition;
1192
+ SELF\View_definition_relationship.related_view : Breakdown_element_definition;
1193
+ DERIVE
1194
+ parent_element : Breakdown_element_definition := SELF\View_definition_relationship.relating_view;
1195
+ child_element : Breakdown_element_definition := SELF\View_definition_relationship.related_view;
1196
+ END_ENTITY;
1197
+
1198
+ ENTITY Breakdown_element_version
1199
+ SUPERTYPE OF (ONEOF(Functional_element_version, Physical_element_version, System_element_version, Zone_element_version))
1200
+ SUBTYPE OF (Product_version);
1201
+ SELF\Product_version.of_product : Breakdown_element;
1202
+ END_ENTITY;
1203
+
1204
+ ENTITY Breakdown_of;
1205
+ id : STRING;
1206
+ name : STRING;
1207
+ description : OPTIONAL STRING;
1208
+ breakdown : Breakdown_version;
1209
+ of_view : Product_view_definition;
1210
+ END_ENTITY;
1211
+
1212
+ ENTITY Breakdown_version
1213
+ SUPERTYPE OF (ONEOF(Functional_breakdown_version, Hybrid_breakdown_version, Physical_breakdown_version, System_breakdown_version, Zone_breakdown_version))
1214
+ SUBTYPE OF (Product_version);
1215
+ SELF\Product_version.of_product : Breakdown;
1216
+ INVERSE
1217
+ breakdown_of : SET [1:?] OF Breakdown_of FOR breakdown;
1218
+ END_ENTITY;
1219
+
1220
+ ENTITY Calendar_date;
1221
+ year_component : year_number;
1222
+ month_component : month_in_year_number;
1223
+ day_component : day_in_month_number;
1224
+ END_ENTITY;
1225
+
1226
+ ENTITY Cartesian_point
1227
+ SUBTYPE OF (Detailed_geometric_model_element);
1228
+ coordinates : LIST [1:3] OF length_measure;
1229
+ END_ENTITY;
1230
+
1231
+ ENTITY Cartesian_transformation_2d
1232
+ SUBTYPE OF (Detailed_geometric_model_element);
1233
+ multiplication_matrix : ARRAY [1:2] OF Direction;
1234
+ translation : Cartesian_point;
1235
+ WHERE
1236
+ WR1: SIZEOF(multiplication_matrix[1]\Direction.coordinates) = 2;
1237
+ WR2: SIZEOF(multiplication_matrix[2]\Direction.coordinates) = 2;
1238
+ WR3: SIZEOF(translation.coordinates) = 2;
1239
+ END_ENTITY;
1240
+
1241
+ ENTITY Cartesian_transformation_3d
1242
+ SUBTYPE OF (Detailed_geometric_model_element);
1243
+ multiplication_matrix : ARRAY [1:3] OF Direction;
1244
+ translation : Cartesian_point;
1245
+ WHERE
1246
+ WR1: SIZEOF(multiplication_matrix[1]\Direction.coordinates) = 3;
1247
+ WR2: SIZEOF(multiplication_matrix[2]\Direction.coordinates) = 3;
1248
+ WR3: SIZEOF(multiplication_matrix[3]\Direction.coordinates) = 3;
1249
+ WR4: SIZEOF(translation.coordinates) = 3;
1250
+ END_ENTITY;
1251
+
1252
+ ENTITY Certification;
1253
+ name : STRING;
1254
+ description : OPTIONAL STRING;
1255
+ kind : STRING;
1256
+ END_ENTITY;
1257
+
1258
+ ENTITY Certification_assignment;
1259
+ assigned_certification : Certification;
1260
+ items : SET [1:?] OF certification_item;
1261
+ role : STRING;
1262
+ END_ENTITY;
1263
+
1264
+ ENTITY Characterizable_object;
1265
+ name : STRING;
1266
+ description : OPTIONAL STRING;
1267
+ END_ENTITY;
1268
+
1269
+ ENTITY Class
1270
+ SUPERTYPE OF (ONEOF(Class_by_extension, Class_by_intension));
1271
+ id : STRING;
1272
+ name : STRING;
1273
+ description : OPTIONAL STRING;
1274
+ END_ENTITY;
1275
+
1276
+ ENTITY Class_by_extension
1277
+ SUBTYPE OF (Class);
1278
+ END_ENTITY;
1279
+
1280
+ ENTITY Class_by_intension
1281
+ SUBTYPE OF (Class);
1282
+ END_ENTITY;
1283
+
1284
+ ENTITY Classification_assignment;
1285
+ assigned_class : Class;
1286
+ items : SET [1:?] OF classification_item;
1287
+ role : OPTIONAL STRING;
1288
+ END_ENTITY;
1289
+
1290
+ ENTITY Complement;
1291
+ id : STRING;
1292
+ name : STRING;
1293
+ description : STRING;
1294
+ set_1 : Class;
1295
+ set_2 : Class;
1296
+ universe : Class;
1297
+ END_ENTITY;
1298
+
1299
+ ENTITY Component_upper_level_identification
1300
+ SUBTYPE OF (Assembly_component_relationship);
1301
+ upper_assembly_relationship : Assembly_component_relationship;
1302
+ sub_assembly_relationship : Next_assembly_usage;
1303
+ UNIQUE
1304
+ UR1: upper_assembly_relationship, sub_assembly_relationship;
1305
+ WHERE
1306
+ WR1: SELF :<>: upper_assembly_relationship;
1307
+ WR2: SELF\View_definition_relationship.relating_view :=: upper_assembly_relationship\View_definition_relationship.relating_view;
1308
+ WR3: SELF\View_definition_relationship.related_view :=: sub_assembly_relationship\View_definition_relationship.related_view;
1309
+ WR4: (upper_assembly_relationship\View_definition_relationship.related_view :=: sub_assembly_relationship\View_definition_relationship.relating_view) OR (SIZEOF(QUERY(pdr <* USEDIN(upper_assembly_relationship\View_definition_relationship.related_view, 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.VIEW_DEFINITION_RELATIONSHIP.RELATED_VIEW') | pdr.relating_view :=: sub_assembly_relationship\View_definition_relationship.relating_view)) = 1);
1310
+ WR5: SIZEOF(['AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.NEXT_ASSEMBLY_USAGE', 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.COMPONENT_UPPER_LEVEL_IDENTIFICATION'] * TYPEOF(upper_assembly_relationship)) = 1;
1311
+ END_ENTITY;
1312
+
1313
+ ENTITY Composition_of_state
1314
+ SUBTYPE OF (State_relationship);
1315
+ DERIVE
1316
+ whole : SET [1:?] OF State := SELF\State_relationship.relating;
1317
+ part : SET [1:?] OF State := SELF\State_relationship.related;
1318
+ END_ENTITY;
1319
+
1320
+ ENTITY Composition_of_state_definition
1321
+ SUBTYPE OF (State_definition_relationship);
1322
+ DERIVE
1323
+ whole : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
1324
+ part : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
1325
+ END_ENTITY;
1326
+
1327
+ ENTITY Concurrent_elements
1328
+ SUBTYPE OF (Structured_task_element);
1329
+ elements : SET [2:?] OF Task_element;
1330
+ END_ENTITY;
1331
+
1332
+ ENTITY Condition;
1333
+ name : STRING;
1334
+ description : OPTIONAL STRING;
1335
+ END_ENTITY;
1336
+
1337
+ ENTITY Condition_assignment;
1338
+ assigned_condition : Condition;
1339
+ item : condition_item;
1340
+ END_ENTITY;
1341
+
1342
+ ENTITY Condition_evaluation;
1343
+ name : STRING;
1344
+ description : OPTIONAL STRING;
1345
+ result : LOGICAL;
1346
+ condition : Condition;
1347
+ END_ENTITY;
1348
+
1349
+ ENTITY Condition_evaluation_assignment;
1350
+ assigned_condition_evaluation : Condition_evaluation;
1351
+ item : condition_evaluation_item;
1352
+ END_ENTITY;
1353
+
1354
+ ENTITY Condition_evaluation_parameter;
1355
+ name : STRING;
1356
+ description : OPTIONAL STRING;
1357
+ condition_evaluation : Condition_evaluation;
1358
+ evaluation_parameter : condition_evaluation_parameter_item;
1359
+ END_ENTITY;
1360
+
1361
+ ENTITY Condition_parameter;
1362
+ name : STRING;
1363
+ description : OPTIONAL STRING;
1364
+ condition : Condition;
1365
+ parameter : OPTIONAL condition_parameter_item;
1366
+ END_ENTITY;
1367
+
1368
+ ENTITY Condition_relationship;
1369
+ name : STRING;
1370
+ description : OPTIONAL STRING;
1371
+ relating_condition : Condition;
1372
+ related_condition : Condition;
1373
+ END_ENTITY;
1374
+
1375
+ ENTITY Content_item;
1376
+ item_identifier : STRING;
1377
+ item_type : STRING;
1378
+ access_comment : OPTIONAL STRING;
1379
+ END_ENTITY;
1380
+
1381
+ ENTITY Context_dependent_unit
1382
+ SUBTYPE OF (Unit);
1383
+ WHERE
1384
+ WR1: EXISTS(SELF\Unit.name);
1385
+ END_ENTITY;
1386
+
1387
+ ENTITY Contextual_item_shape
1388
+ SUBTYPE OF (Item_shape);
1389
+ SELF\Item_shape.described_element : View_definition_usage;
1390
+ DERIVE
1391
+ shaped_product : Product_view_definition := described_element\View_definition_relationship.related_view;
1392
+ END_ENTITY;
1393
+
1394
+ ENTITY Contextual_shape_representation_inclusion;
1395
+ contextual_shape : Contextual_item_shape;
1396
+ context_representation : Geometric_model;
1397
+ positioned_representation : template_instance;
1398
+ END_ENTITY;
1399
+
1400
+ ENTITY Contract;
1401
+ id : STRING;
1402
+ purpose : STRING;
1403
+ kind : STRING;
1404
+ END_ENTITY;
1405
+
1406
+ ENTITY Contract_assignment;
1407
+ assigned_contract : Contract;
1408
+ items : SET [1:?] OF contract_item;
1409
+ END_ENTITY;
1410
+
1411
+ ENTITY Conversion_based_unit
1412
+ SUBTYPE OF (Unit);
1413
+ conversion_factor : Value_with_unit;
1414
+ WHERE
1415
+ WR1: EXISTS(SELF\Unit.name);
1416
+ END_ENTITY;
1417
+
1418
+ ENTITY Date_or_date_time_assignment;
1419
+ assigned_date : date_or_date_time_select;
1420
+ role : STRING;
1421
+ items : SET [1:?] OF date_or_date_time_item;
1422
+ END_ENTITY;
1423
+
1424
+ ENTITY Date_time;
1425
+ date_component : Calendar_date;
1426
+ time_component : Local_time;
1427
+ END_ENTITY;
1428
+
1429
+ ENTITY Dated_effectivity
1430
+ SUBTYPE OF (Effectivity);
1431
+ start_bound : date_or_event;
1432
+ end_bound : OPTIONAL date_or_event;
1433
+ END_ENTITY;
1434
+
1435
+ ENTITY Decision_point
1436
+ SUBTYPE OF (Structured_task_element);
1437
+ condition : Condition;
1438
+ true_case_element : OPTIONAL Task_element;
1439
+ false_case_element : OPTIONAL Task_element;
1440
+ unknown_case_element : OPTIONAL Task_element;
1441
+ END_ENTITY;
1442
+
1443
+ ENTITY Decreasing_resource_event
1444
+ SUBTYPE OF (Resource_event);
1445
+ END_ENTITY;
1446
+
1447
+ ENTITY Defined_state_relationship;
1448
+ name : STRING;
1449
+ description : OPTIONAL STRING;
1450
+ definitive_state : State_assertion;
1451
+ defined_state : State_assessment;
1452
+ END_ENTITY;
1453
+
1454
+ ENTITY Derived_unit
1455
+ SUBTYPE OF (Unit);
1456
+ elements : SET [1:?] OF Derived_unit_element;
1457
+ END_ENTITY;
1458
+
1459
+ ENTITY Derived_unit_element;
1460
+ base_unit : Unit;
1461
+ exponent : REAL;
1462
+ END_ENTITY;
1463
+
1464
+ ENTITY Descriptive_document_property
1465
+ SUBTYPE OF (String_representation_item);
1466
+ INVERSE
1467
+ valued_characteristic : SET [1:1] OF Document_property_representation FOR items;
1468
+ END_ENTITY;
1469
+
1470
+ ENTITY Detailed_geometric_model_element
1471
+ ABSTRACT SUPERTYPE OF (ONEOF(Cartesian_point, Direction, Axis_placement, Cartesian_transformation_2d, Cartesian_transformation_3d))
1472
+ SUBTYPE OF (Representation_item);
1473
+ END_ENTITY;
1474
+
1475
+ ENTITY Digital_document_definition
1476
+ SUBTYPE OF (Document_definition);
1477
+ files : SET OF Digital_file;
1478
+ END_ENTITY;
1479
+
1480
+ ENTITY Digital_file
1481
+ SUBTYPE OF (File);
1482
+ END_ENTITY;
1483
+
1484
+ ENTITY Directed_activity
1485
+ SUBTYPE OF (Activity);
1486
+ directive : Work_order;
1487
+ END_ENTITY;
1488
+
1489
+ ENTITY Direction
1490
+ SUBTYPE OF (Detailed_geometric_model_element);
1491
+ coordinates : LIST [2:3] OF length_measure;
1492
+ END_ENTITY;
1493
+
1494
+ ENTITY Distribution_by_value
1495
+ SUBTYPE OF (Probability_distribution);
1496
+ defined_function : Value_function;
1497
+ distribution_function : STRING;
1498
+ END_ENTITY;
1499
+
1500
+ ENTITY Document
1501
+ SUBTYPE OF (Product);
1502
+ END_ENTITY;
1503
+
1504
+ ENTITY Document_assignment;
1505
+ assigned_document : assigned_document_select;
1506
+ is_assigned_to : documented_element_select;
1507
+ role : STRING;
1508
+ END_ENTITY;
1509
+
1510
+ ENTITY Document_definition
1511
+ SUPERTYPE OF (ONEOF(Digital_document_definition, Physical_document_definition))
1512
+ SUBTYPE OF (Product_view_definition);
1513
+ SELF\Product_view_definition.defined_version : Document_version;
1514
+ DERIVE
1515
+ description : STRING := SELF\Product_view_definition.name;
1516
+ associated_document_version : Document_version := SELF\Product_view_definition.defined_version;
1517
+ END_ENTITY;
1518
+
1519
+ ENTITY Document_definition_relationship;
1520
+ relation_type : STRING;
1521
+ description : OPTIONAL STRING;
1522
+ relating_document_definition : Document_definition;
1523
+ related_document_definition : Document_definition;
1524
+ WHERE
1525
+ WR1: relating_document_definition :<>: related_document_definition;
1526
+ END_ENTITY;
1527
+
1528
+ ENTITY Document_location_identification
1529
+ SUBTYPE OF (External_source_identification);
1530
+ WHERE
1531
+ WR1: 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.DOCUMENT_DEFINITION' IN TYPEOF(SELF\External_source_identification.item);
1532
+ END_ENTITY;
1533
+
1534
+ ENTITY Document_property_representation
1535
+ SUBTYPE OF (Representation);
1536
+ SELF\Representation.items : SET [1:?] OF descriptive_or_numerical;
1537
+ WHERE
1538
+ WR1: SIZEOF(QUERY(pr <* USEDIN(SELF, 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PROPERTY_REPRESENTATION.REP') | 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.ASSIGNED_PROPERTY' IN TYPEOF(pr.property))) > 0;
1539
+ WR2: SELF\Representation.context_of_items.kind = 'document parameters';
1540
+ WR3: valid_document_property_representation(SELF);
1541
+ WR4: SIZEOF(QUERY(it1 <* SELF\Representation.items | SIZEOF(QUERY(it2 <* SELF\Representation.items | it1.name = it2.name)) > 1)) = 0;
1542
+ END_ENTITY;
1543
+
1544
+ ENTITY Document_version
1545
+ SUBTYPE OF (Product_version);
1546
+ SELF\Product_version.of_product : Document;
1547
+ END_ENTITY;
1548
+
1549
+ ENTITY Duration
1550
+ SUBTYPE OF (Value_with_unit);
1551
+ WHERE
1552
+ WR1: 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'TIME_UNIT' IN TYPEOF(SELF\Value_with_unit.unit);
1553
+ END_ENTITY;
1554
+
1555
+ ENTITY Effectivity
1556
+ SUPERTYPE OF (ONEOF(Serial_effectivity, Dated_effectivity, Lot_effectivity, Time_interval_effectivity));
1557
+ id : STRING;
1558
+ name : STRING;
1559
+ description : OPTIONAL STRING;
1560
+ END_ENTITY;
1561
+
1562
+ ENTITY Effectivity_assignment;
1563
+ assigned_effectivity : Effectivity;
1564
+ role : STRING;
1565
+ items : SET [1:?] OF effectivity_item;
1566
+ END_ENTITY;
1567
+
1568
+ ENTITY Effectivity_relationship;
1569
+ relation_type : STRING;
1570
+ description : OPTIONAL STRING;
1571
+ relating_effectivity : Effectivity;
1572
+ related_effectivity : Effectivity;
1573
+ END_ENTITY;
1574
+
1575
+ ENTITY Electric_current_unit
1576
+ SUBTYPE OF (Unit);
1577
+ END_ENTITY;
1578
+
1579
+ ENTITY Element_constraint
1580
+ SUBTYPE OF (Task_element_relationship);
1581
+ applies_in : OPTIONAL constraint_context;
1582
+ END_ENTITY;
1583
+
1584
+ ENTITY End_task
1585
+ SUBTYPE OF (Task_element);
1586
+ END_ENTITY;
1587
+
1588
+ ENTITY Envelope;
1589
+ id : STRING;
1590
+ acknowledge : OPTIONAL STRING;
1591
+ wrapping : OPTIONAL Message;
1592
+ END_ENTITY;
1593
+
1594
+ ENTITY Envelope_relationship;
1595
+ relating : Envelope;
1596
+ related : Envelope;
1597
+ relation_type : OPTIONAL STRING;
1598
+ END_ENTITY;
1599
+
1600
+ ENTITY Event;
1601
+ id : STRING;
1602
+ name : STRING;
1603
+ description : OPTIONAL STRING;
1604
+ actual_start_date : OPTIONAL date_or_date_time_select;
1605
+ planned_start_date : OPTIONAL date_or_date_time_select;
1606
+ END_ENTITY;
1607
+
1608
+ ENTITY Event_assignment;
1609
+ assigned_event : Event;
1610
+ items : SET [1:?] OF event_item;
1611
+ role : STRING;
1612
+ END_ENTITY;
1613
+
1614
+ ENTITY Event_relationship;
1615
+ relation_type : STRING;
1616
+ description : OPTIONAL STRING;
1617
+ relating_event : Event;
1618
+ related_event : Event;
1619
+ END_ENTITY;
1620
+
1621
+ ENTITY Exit_loop
1622
+ SUBTYPE OF (Task_element);
1623
+ END_ENTITY;
1624
+
1625
+ ENTITY Experience_gained;
1626
+ experience_of : Experience_instance;
1627
+ gained_by : person_or_organization_or_person_in_organization_select;
1628
+ role : OPTIONAL STRING;
1629
+ END_ENTITY;
1630
+
1631
+ ENTITY Experience_instance;
1632
+ description : OPTIONAL STRING;
1633
+ is_defined_by : Experience_type;
1634
+ consists_of : OPTIONAL defined_activities;
1635
+ END_ENTITY;
1636
+
1637
+ ENTITY Experience_type;
1638
+ name : STRING;
1639
+ description : OPTIONAL STRING;
1640
+ consists_of : OPTIONAL defined_methods;
1641
+ END_ENTITY;
1642
+
1643
+ ENTITY Experience_type_relationship;
1644
+ compound_experience : Experience_type;
1645
+ component_experience : Experience_type;
1646
+ END_ENTITY;
1647
+
1648
+ ENTITY External_class
1649
+ SUBTYPE OF (Class);
1650
+ external_source : External_class_library;
1651
+ END_ENTITY;
1652
+
1653
+ ENTITY External_class_library;
1654
+ id : STRING;
1655
+ description : OPTIONAL STRING;
1656
+ END_ENTITY;
1657
+
1658
+ ENTITY External_geometric_model
1659
+ SUBTYPE OF (Geometric_model);
1660
+ SELF\Representation.items : SET [1:1] OF Axis_placement;
1661
+ external_file : Digital_file;
1662
+ WHERE
1663
+ WR1: SELF\Representation.context_of_items.dimension_count = 3;
1664
+ WR2: SELF\Representation.context_of_items.kind = 'external';
1665
+ END_ENTITY;
1666
+
1667
+ ENTITY External_item_identification
1668
+ SUBTYPE OF (External_source_identification);
1669
+ external_id : STRING;
1670
+ END_ENTITY;
1671
+
1672
+ ENTITY External_source_identification;
1673
+ source_id : STRING;
1674
+ source_type : STRING;
1675
+ item : external_identification_item;
1676
+ description : OPTIONAL STRING;
1677
+ END_ENTITY;
1678
+
1679
+ ENTITY File
1680
+ ABSTRACT SUPERTYPE OF (ONEOF(Digital_file, Hardcopy));
1681
+ id : STRING;
1682
+ version : OPTIONAL STRING;
1683
+ contained_data_type : OPTIONAL STRING;
1684
+ END_ENTITY;
1685
+
1686
+ ENTITY File_location_identification
1687
+ SUBTYPE OF (External_item_identification);
1688
+ WHERE
1689
+ WR1: 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.FILE' IN TYPEOF(SELF\External_source_identification.item);
1690
+ END_ENTITY;
1691
+
1692
+ ENTITY File_relationship;
1693
+ relation_type : STRING;
1694
+ description : OPTIONAL STRING;
1695
+ relating_document_file : File;
1696
+ related_document_file : File;
1697
+ WHERE
1698
+ WR1: relating_document_file :<>: related_document_file;
1699
+ END_ENTITY;
1700
+
1701
+ ENTITY Function_value_pair;
1702
+ function_value : Probability_function_value;
1703
+ variable_value : Random_variable;
1704
+ END_ENTITY;
1705
+
1706
+ ENTITY Functional_breakdown
1707
+ SUBTYPE OF (Breakdown);
1708
+ END_ENTITY;
1709
+
1710
+ ENTITY Functional_breakdown_context
1711
+ SUBTYPE OF (Breakdown_context);
1712
+ SELF\Breakdown_context.breakdown : Functional_breakdown_version;
1713
+ SELF\Breakdown_context.breakdown_element : Functional_element_definition;
1714
+ END_ENTITY;
1715
+
1716
+ ENTITY Functional_breakdown_version
1717
+ SUBTYPE OF (Breakdown_version);
1718
+ SELF\Breakdown_version.of_product : Functional_breakdown;
1719
+ END_ENTITY;
1720
+
1721
+ ENTITY Functional_element
1722
+ SUBTYPE OF (Breakdown_element);
1723
+ END_ENTITY;
1724
+
1725
+ ENTITY Functional_element_definition
1726
+ SUBTYPE OF (Breakdown_element_definition);
1727
+ SELF\Breakdown_element_definition.defined_version : Functional_element_version;
1728
+ END_ENTITY;
1729
+
1730
+ ENTITY Functional_element_usage
1731
+ SUBTYPE OF (Breakdown_element_usage);
1732
+ SELF\View_definition_relationship.relating_view : Functional_element_definition;
1733
+ SELF\View_definition_relationship.related_view : Functional_element_definition;
1734
+ END_ENTITY;
1735
+
1736
+ ENTITY Functional_element_version
1737
+ SUBTYPE OF (Breakdown_element_version);
1738
+ SELF\Breakdown_element_version.of_product : Functional_element;
1739
+ END_ENTITY;
1740
+
1741
+ ENTITY Geometric_coordinate_space
1742
+ SUBTYPE OF (Numerical_representation_context);
1743
+ dimension_count : INTEGER;
1744
+ WHERE
1745
+ WR1: dimension_count > 0;
1746
+ END_ENTITY;
1747
+
1748
+ ENTITY Geometric_model
1749
+ SUBTYPE OF (Representation);
1750
+ version_id : OPTIONAL STRING;
1751
+ model_extent : OPTIONAL length_measure;
1752
+ SELF\Representation.context_of_items : Geometric_coordinate_space;
1753
+ SELF\Representation.items : SET [1:?] OF Detailed_geometric_model_element;
1754
+ END_ENTITY;
1755
+
1756
+ ENTITY Global_location_representation
1757
+ SUBTYPE OF (Location_representation);
1758
+ altitude : OPTIONAL Value_with_unit;
1759
+ geographical_area : OPTIONAL STRING;
1760
+ latitude : Value_with_unit;
1761
+ longitude : Value_with_unit;
1762
+ END_ENTITY;
1763
+
1764
+ ENTITY Hardcopy
1765
+ SUBTYPE OF (File);
1766
+ END_ENTITY;
1767
+
1768
+ ENTITY Hierarchical_interface_connection
1769
+ SUBTYPE OF (Interface_connection);
1770
+ END_ENTITY;
1771
+
1772
+ ENTITY Hybrid_breakdown
1773
+ SUBTYPE OF (Breakdown);
1774
+ END_ENTITY;
1775
+
1776
+ ENTITY Hybrid_breakdown_context
1777
+ SUBTYPE OF (Breakdown_context);
1778
+ SELF\Breakdown_context.breakdown : Hybrid_breakdown_version;
1779
+ END_ENTITY;
1780
+
1781
+ ENTITY Hybrid_breakdown_version
1782
+ SUBTYPE OF (Breakdown_version);
1783
+ SELF\Breakdown_version.of_product : Hybrid_breakdown;
1784
+ END_ENTITY;
1785
+
1786
+ ENTITY Hybrid_element_usage
1787
+ SUBTYPE OF (Breakdown_element_usage);
1788
+ END_ENTITY;
1789
+
1790
+ ENTITY Identification_assignment;
1791
+ identifier : STRING;
1792
+ role : STRING;
1793
+ description : OPTIONAL STRING;
1794
+ items : SET [1:?] OF identification_item;
1795
+ END_ENTITY;
1796
+
1797
+ ENTITY In_zone;
1798
+ id : STRING;
1799
+ name : STRING;
1800
+ description : OPTIONAL STRING;
1801
+ located_item : in_zone_item;
1802
+ zone : Zone_element_definition;
1803
+ END_ENTITY;
1804
+
1805
+ ENTITY Increasing_resource_event
1806
+ SUBTYPE OF (Resource_event);
1807
+ END_ENTITY;
1808
+
1809
+ ENTITY Independent_property;
1810
+ id : STRING;
1811
+ property_type : STRING;
1812
+ description : OPTIONAL STRING;
1813
+ END_ENTITY;
1814
+
1815
+ ENTITY Independent_property_relationship;
1816
+ relation_type : STRING;
1817
+ description : OPTIONAL STRING;
1818
+ relating : Independent_property;
1819
+ related : Independent_property;
1820
+ END_ENTITY;
1821
+
1822
+ ENTITY Independent_property_representation;
1823
+ description : OPTIONAL STRING;
1824
+ property : Independent_property;
1825
+ rep : Representation;
1826
+ role : OPTIONAL STRING;
1827
+ END_ENTITY;
1828
+
1829
+ ENTITY Information_right;
1830
+ id : STRING;
1831
+ name : STRING;
1832
+ description : OPTIONAL STRING;
1833
+ restriction : OPTIONAL STRING;
1834
+ END_ENTITY;
1835
+
1836
+ ENTITY Information_usage_right;
1837
+ id : STRING;
1838
+ name : STRING;
1839
+ comment : OPTIONAL STRING;
1840
+ grants_right : SET [1:?] OF Information_right;
1841
+ END_ENTITY;
1842
+
1843
+ ENTITY Information_usage_right_relationship;
1844
+ relating : Information_usage_right;
1845
+ related : Information_usage_right;
1846
+ relation_type : STRING;
1847
+ END_ENTITY;
1848
+
1849
+ ENTITY Interface_connection;
1850
+ id : STRING;
1851
+ description : OPTIONAL STRING;
1852
+ connection_type : STRING;
1853
+ connecting : connection_items;
1854
+ connected : connection_items;
1855
+ END_ENTITY;
1856
+
1857
+ ENTITY Interface_connector
1858
+ SUBTYPE OF (Product);
1859
+ END_ENTITY;
1860
+
1861
+ ENTITY Interface_connector_as_planned
1862
+ SUBTYPE OF (Interface_connector_version);
1863
+ END_ENTITY;
1864
+
1865
+ ENTITY Interface_connector_as_realized
1866
+ SUBTYPE OF (Interface_connector_version);
1867
+ END_ENTITY;
1868
+
1869
+ ENTITY Interface_connector_definition
1870
+ SUBTYPE OF (Product_view_definition);
1871
+ connector_on : Product_view_definition;
1872
+ SELF\Product_view_definition.defined_version : Interface_connector_version;
1873
+ END_ENTITY;
1874
+
1875
+ ENTITY Interface_connector_design
1876
+ SUBTYPE OF (Interface_connector_version);
1877
+ END_ENTITY;
1878
+
1879
+ ENTITY Interface_connector_design_to_planned;
1880
+ id : STRING;
1881
+ name : STRING;
1882
+ description : OPTIONAL STRING;
1883
+ design : Interface_connector_design;
1884
+ planned : Interface_connector_as_planned;
1885
+ END_ENTITY;
1886
+
1887
+ ENTITY Interface_connector_design_to_realized;
1888
+ id : STRING;
1889
+ name : STRING;
1890
+ description : OPTIONAL STRING;
1891
+ design : Interface_connector_design;
1892
+ realized : Interface_connector_as_realized;
1893
+ END_ENTITY;
1894
+
1895
+ ENTITY Interface_connector_occurrence;
1896
+ id : STRING;
1897
+ name : STRING;
1898
+ description : OPTIONAL STRING;
1899
+ occurrence_of : Interface_connector_definition;
1900
+ connector_on : connector_on_item;
1901
+ END_ENTITY;
1902
+
1903
+ ENTITY Interface_connector_planned_to_realized;
1904
+ id : STRING;
1905
+ name : STRING;
1906
+ description : OPTIONAL STRING;
1907
+ planned : Interface_connector_as_planned;
1908
+ realized : Interface_connector_as_realized;
1909
+ END_ENTITY;
1910
+
1911
+ ENTITY Interface_connector_version
1912
+ SUBTYPE OF (Product_version);
1913
+ SELF\Product_version.of_product : Interface_connector;
1914
+ END_ENTITY;
1915
+
1916
+ ENTITY Interface_definition_connection;
1917
+ id : STRING;
1918
+ description : OPTIONAL STRING;
1919
+ connection_type : STRING;
1920
+ connecting : connection_definition_items;
1921
+ connected : connection_definition_items;
1922
+ END_ENTITY;
1923
+
1924
+ ENTITY Interface_definition_for;
1925
+ id : STRING;
1926
+ name : STRING;
1927
+ description : OPTIONAL STRING;
1928
+ interface : Interface_specification_definition;
1929
+ interface_component : interface_definition_item;
1930
+ END_ENTITY;
1931
+
1932
+ ENTITY Interface_specification
1933
+ SUBTYPE OF (Product);
1934
+ END_ENTITY;
1935
+
1936
+ ENTITY Interface_specification_definition
1937
+ SUBTYPE OF (Product_view_definition);
1938
+ SELF\Product_view_definition.defined_version : Interface_specification_version;
1939
+ END_ENTITY;
1940
+
1941
+ ENTITY Interface_specification_version
1942
+ SUBTYPE OF (Product_version);
1943
+ SELF\Product_version.of_product : Interface_specification;
1944
+ END_ENTITY;
1945
+
1946
+ ENTITY Intersection;
1947
+ id : STRING;
1948
+ name : STRING;
1949
+ description : OPTIONAL STRING;
1950
+ operand : SET [2:?] OF Class;
1951
+ resultant : Class;
1952
+ END_ENTITY;
1953
+
1954
+ ENTITY Item_design_association;
1955
+ configuration : Product_configuration;
1956
+ design : version_or_definition;
1957
+ UNIQUE
1958
+ UR1: configuration, design;
1959
+ END_ENTITY;
1960
+
1961
+ ENTITY Item_shape;
1962
+ id : OPTIONAL STRING;
1963
+ description : OPTIONAL STRING;
1964
+ described_element : shapeable_item;
1965
+ END_ENTITY;
1966
+
1967
+ ENTITY Item_usage_effectivity;
1968
+ effectivity_domain : Effectivity;
1969
+ item_usage_relationship : View_definition_usage;
1970
+ resolved_configuration : Item_design_association;
1971
+ END_ENTITY;
1972
+
1973
+ ENTITY Justification;
1974
+ id : STRING;
1975
+ name : OPTIONAL STRING;
1976
+ description : STRING;
1977
+ context_description : OPTIONAL STRING;
1978
+ END_ENTITY;
1979
+
1980
+ ENTITY Justification_assignment;
1981
+ justification : Justification;
1982
+ description : OPTIONAL STRING;
1983
+ item : justification_item;
1984
+ role : STRING;
1985
+ END_ENTITY;
1986
+
1987
+ ENTITY Justification_relationship;
1988
+ name : STRING;
1989
+ description : OPTIONAL STRING;
1990
+ relating_justification : Justification;
1991
+ related_justification : Justification;
1992
+ END_ENTITY;
1993
+
1994
+ ENTITY Justification_support_assignment;
1995
+ justification : Justification;
1996
+ description : OPTIONAL STRING;
1997
+ support_item : justification_support_item;
1998
+ role : STRING;
1999
+ END_ENTITY;
2000
+
2001
+ ENTITY Language;
2002
+ language_code : STRING;
2003
+ country_code : OPTIONAL STRING;
2004
+ UNIQUE
2005
+ UR1: language_code;
2006
+ END_ENTITY;
2007
+
2008
+ ENTITY Language_indication;
2009
+ considered_instance : string_select;
2010
+ considered_attribute : STRING;
2011
+ used_language : Language;
2012
+ END_ENTITY;
2013
+
2014
+ ENTITY Length_unit
2015
+ SUBTYPE OF (Unit);
2016
+ END_ENTITY;
2017
+
2018
+ ENTITY Local_time;
2019
+ hour_component : hour_in_day;
2020
+ minute_component : OPTIONAL minute_in_hour;
2021
+ second_component : OPTIONAL second_in_minute;
2022
+ zone : Time_offset;
2023
+ END_ENTITY;
2024
+
2025
+ ENTITY Location;
2026
+ name : STRING;
2027
+ description : OPTIONAL STRING;
2028
+ alternative_location_representations : SET OF Location_representation;
2029
+ END_ENTITY;
2030
+
2031
+ ENTITY Location_assignment;
2032
+ description : OPTIONAL STRING;
2033
+ role : OPTIONAL STRING;
2034
+ entity_for_location : location_assignment_select;
2035
+ location_for_assignment : Location;
2036
+ END_ENTITY;
2037
+
2038
+ ENTITY Location_relationship;
2039
+ name : STRING;
2040
+ description : OPTIONAL STRING;
2041
+ relating : Location;
2042
+ related : Location;
2043
+ END_ENTITY;
2044
+
2045
+ ENTITY Location_representation
2046
+ ABSTRACT SUPERTYPE OF (ONEOF(Address_based_location_representation, Global_location_representation, Organization_based_location_representation, Product_based_location_identification, Regional_grid_location_representation));
2047
+ END_ENTITY;
2048
+
2049
+ ENTITY Looping_element
2050
+ SUPERTYPE OF (ONEOF(Repeat_count, Repeat_until, Repeat_while))
2051
+ SUBTYPE OF (Structured_task_element);
2052
+ repeated_element : Task_element;
2053
+ END_ENTITY;
2054
+
2055
+ ENTITY Lot_effectivity
2056
+ SUBTYPE OF (Effectivity);
2057
+ lot_id : STRING;
2058
+ lot_size : Value_with_unit;
2059
+ END_ENTITY;
2060
+
2061
+ ENTITY Luminous_intensity_unit
2062
+ SUBTYPE OF (Unit);
2063
+ END_ENTITY;
2064
+
2065
+ ENTITY Make_from_relationship
2066
+ SUBTYPE OF (View_definition_usage);
2067
+ SELF\View_definition_relationship.relating_view : Part_view_definition;
2068
+ SELF\View_definition_relationship.related_view : Part_view_definition;
2069
+ quantity : OPTIONAL Value_with_unit;
2070
+ priority : OPTIONAL INTEGER;
2071
+ WHERE
2072
+ WR1: SELF\View_definition_relationship.relating_view :<>: SELF\View_definition_relationship.related_view;
2073
+ WR2: NOT EXISTS(quantity) XOR NOT ('NUMBER' IN TYPEOF(quantity.value_component)) XOR (quantity.value_component > 0);
2074
+ END_ENTITY;
2075
+
2076
+ ENTITY Managed_resource;
2077
+ name : STRING;
2078
+ description : OPTIONAL STRING;
2079
+ quantity : OPTIONAL Value_with_unit;
2080
+ item : Resource_item;
2081
+ END_ENTITY;
2082
+
2083
+ ENTITY Managed_resource_relationship;
2084
+ name : STRING;
2085
+ description : OPTIONAL STRING;
2086
+ relating : Managed_resource;
2087
+ related : Managed_resource;
2088
+ END_ENTITY;
2089
+
2090
+ ENTITY Mapping_based_template_instance
2091
+ SUBTYPE OF (Detailed_geometric_model_element);
2092
+ replicated_model : shape_model;
2093
+ source : Axis_placement;
2094
+ target : geometric_mapping_target;
2095
+ END_ENTITY;
2096
+
2097
+ ENTITY Market;
2098
+ name : STRING;
2099
+ market_segment_type : OPTIONAL STRING;
2100
+ END_ENTITY;
2101
+
2102
+ ENTITY Mass_unit
2103
+ SUBTYPE OF (Unit);
2104
+ END_ENTITY;
2105
+
2106
+ ENTITY Measure_item
2107
+ ABSTRACT SUPERTYPE OF (ONEOF(Measure_item_with_precision, Numerical_item_with_global_unit, Numerical_item_with_unit, Value_limit, Value_limit_with_global_unit, Value_list, Value_range, Value_range_with_global_unit, Value_set, Value_with_tolerances))
2108
+ SUBTYPE OF (Representation_item);
2109
+ WHERE
2110
+ WR1: SIZEOF(USEDIN(SELF, 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.REPRESENTATION.ITEMS')) > 0;
2111
+ END_ENTITY;
2112
+
2113
+ ENTITY Measure_item_with_precision
2114
+ SUBTYPE OF (Measure_item);
2115
+ significant_digits : INTEGER;
2116
+ END_ENTITY;
2117
+
2118
+ ENTITY Message;
2119
+ id : STRING;
2120
+ message_type : STRING;
2121
+ contains : SET OF Content_item;
2122
+ defined_by : OPTIONAL SET OF message_definer_select;
2123
+ purpose : OPTIONAL STRING;
2124
+ END_ENTITY;
2125
+
2126
+ ENTITY Message_relationship;
2127
+ relating : Message;
2128
+ related : Message;
2129
+ relation_type : STRING;
2130
+ END_ENTITY;
2131
+
2132
+ ENTITY Name_assignment;
2133
+ name : STRING;
2134
+ role : STRING;
2135
+ items : assigned_name_select;
2136
+ END_ENTITY;
2137
+
2138
+ ENTITY Next_assembly_usage
2139
+ SUBTYPE OF (Assembly_component_relationship);
2140
+ END_ENTITY;
2141
+
2142
+ ENTITY Numerical_document_property
2143
+ SUBTYPE OF (Numerical_item_with_unit);
2144
+ INVERSE
2145
+ valued_characteristic : SET [1:1] OF Document_property_representation FOR items;
2146
+ END_ENTITY;
2147
+
2148
+ ENTITY Numerical_item_with_global_unit
2149
+ SUBTYPE OF (Measure_item);
2150
+ value_component : measure_value;
2151
+ WHERE
2152
+ WR1: SIZEOF(QUERY(pvr <* QUERY(r <* USEDIN(SELF, 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.REPRESENTATION.ITEMS') | 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PROPERTY_VALUE_REPRESENTATION' IN TYPEOF(r)) | EXISTS(pvr.context_of_items.units))) > 0;
2153
+ END_ENTITY;
2154
+
2155
+ ENTITY Numerical_item_with_unit
2156
+ SUBTYPE OF (Measure_item, Value_with_unit);
2157
+ END_ENTITY;
2158
+
2159
+ ENTITY Numerical_representation_context
2160
+ SUBTYPE OF (Representation_context);
2161
+ units : OPTIONAL SET [1:?] OF Unit;
2162
+ accuracies : OPTIONAL SET [1:?] OF Uncertainty_with_unit;
2163
+ END_ENTITY;
2164
+
2165
+ ENTITY Observation;
2166
+ id : STRING;
2167
+ name : STRING;
2168
+ description : STRING;
2169
+ applies_to : SET OF Observation_item;
2170
+ in_context : SET OF observed_context;
2171
+ observed_by : SET OF observation_recorder;
2172
+ observed_during : OPTIONAL Activity_actual;
2173
+ related_records : SET OF Observation_item;
2174
+ END_ENTITY;
2175
+
2176
+ ENTITY Observation_consequence;
2177
+ id : STRING;
2178
+ name : STRING;
2179
+ infered_from : Observation;
2180
+ requests : Work_request;
2181
+ role : STRING;
2182
+ END_ENTITY;
2183
+
2184
+ ENTITY Observation_item;
2185
+ access_comment : STRING;
2186
+ item_identifier : STRING;
2187
+ item_type : STRING;
2188
+ END_ENTITY;
2189
+
2190
+ ENTITY Observation_relationship;
2191
+ relating : Observation;
2192
+ related : Observation;
2193
+ role : STRING;
2194
+ END_ENTITY;
2195
+
2196
+ ENTITY Or_state_cause_effect_definition
2197
+ SUBTYPE OF (State_cause_effect_definition);
2198
+ END_ENTITY;
2199
+
2200
+ ENTITY Organization;
2201
+ id : OPTIONAL STRING;
2202
+ name : STRING;
2203
+ END_ENTITY;
2204
+
2205
+ ENTITY Organization_based_location_representation
2206
+ SUBTYPE OF (Location_representation);
2207
+ location_identifications : LIST OF Organizational_location_identification;
2208
+ organization_for_location : Organization;
2209
+ END_ENTITY;
2210
+
2211
+ ENTITY Organization_or_person_in_organization_assignment;
2212
+ assigned_entity : organization_or_person_in_organization_select;
2213
+ role : STRING;
2214
+ items : SET [1:?] OF organization_or_person_in_organization_item;
2215
+ END_ENTITY;
2216
+
2217
+ ENTITY Organization_organization_type_relationship;
2218
+ organization : Organization;
2219
+ organization_type : Organization_type;
2220
+ END_ENTITY;
2221
+
2222
+ ENTITY Organization_relationship;
2223
+ relation_type : STRING;
2224
+ description : OPTIONAL STRING;
2225
+ relating_organization : Organization;
2226
+ related_organization : Organization;
2227
+ END_ENTITY;
2228
+
2229
+ ENTITY Organization_type;
2230
+ name : STRING;
2231
+ description : OPTIONAL STRING;
2232
+ END_ENTITY;
2233
+
2234
+ ENTITY Organizational_location_identification;
2235
+ identification_type : STRING;
2236
+ location_value : STRING;
2237
+ END_ENTITY;
2238
+
2239
+ ENTITY Parameterized_distribution
2240
+ SUBTYPE OF (Probability_distribution);
2241
+ has_parameters : LIST [1:?] OF Probability_distribution_parameter;
2242
+ parameterization_name : STRING;
2243
+ END_ENTITY;
2244
+
2245
+ ENTITY Part
2246
+ SUBTYPE OF (Product);
2247
+ WHERE
2248
+ WR1: SIZEOF(['part', 'raw material', 'tool'] * types_of_product(SELF)) = 1;
2249
+ END_ENTITY;
2250
+
2251
+ ENTITY Part_version
2252
+ SUBTYPE OF (Product_version);
2253
+ SELF\Product_version.of_product : Part;
2254
+ END_ENTITY;
2255
+
2256
+ ENTITY Part_view_definition
2257
+ SUBTYPE OF (Product_view_definition);
2258
+ SELF\Product_view_definition.defined_version : Part_version;
2259
+ END_ENTITY;
2260
+
2261
+ ENTITY Partial_document_assignment
2262
+ SUBTYPE OF (Document_assignment);
2263
+ document_portion : STRING;
2264
+ END_ENTITY;
2265
+
2266
+ ENTITY Person;
2267
+ last_name : STRING;
2268
+ first_name : OPTIONAL STRING;
2269
+ middle_names : OPTIONAL LIST [1:?] OF STRING;
2270
+ prefix_titles : OPTIONAL LIST [1:?] OF STRING;
2271
+ suffix_titles : OPTIONAL LIST [1:?] OF STRING;
2272
+ END_ENTITY;
2273
+
2274
+ ENTITY Person_in_organization;
2275
+ concerned_person : Person;
2276
+ containing_organization : Organization;
2277
+ role : STRING;
2278
+ END_ENTITY;
2279
+
2280
+ ENTITY Person_or_organization_or_person_in_organization_in_position;
2281
+ name : STRING;
2282
+ description : STRING;
2283
+ person_or_organization : position_person_or_organization_or_person_in_organization_select;
2284
+ position : Position;
2285
+ END_ENTITY;
2286
+
2287
+ ENTITY Person_or_organization_or_person_in_organization_in_position_relationship;
2288
+ name : STRING;
2289
+ description : OPTIONAL STRING;
2290
+ relating : Person_or_organization_or_person_in_organization_in_position;
2291
+ related : Person_or_organization_or_person_in_organization_in_position;
2292
+ END_ENTITY;
2293
+
2294
+ ENTITY Physical_breakdown
2295
+ SUBTYPE OF (Breakdown);
2296
+ END_ENTITY;
2297
+
2298
+ ENTITY Physical_breakdown_context
2299
+ SUBTYPE OF (Breakdown_context);
2300
+ SELF\Breakdown_context.breakdown : Physical_breakdown_version;
2301
+ SELF\Breakdown_context.breakdown_element : Physical_element_definition;
2302
+ END_ENTITY;
2303
+
2304
+ ENTITY Physical_breakdown_version
2305
+ SUBTYPE OF (Breakdown_version);
2306
+ SELF\Breakdown_version.of_product : Physical_breakdown;
2307
+ END_ENTITY;
2308
+
2309
+ ENTITY Physical_document_definition
2310
+ SUBTYPE OF (Document_definition);
2311
+ components : SET OF Hardcopy;
2312
+ END_ENTITY;
2313
+
2314
+ ENTITY Physical_element
2315
+ SUBTYPE OF (Breakdown_element);
2316
+ END_ENTITY;
2317
+
2318
+ ENTITY Physical_element_definition
2319
+ SUBTYPE OF (Breakdown_element_definition);
2320
+ SELF\Breakdown_element_definition.defined_version : Physical_element_version;
2321
+ END_ENTITY;
2322
+
2323
+ ENTITY Physical_element_usage
2324
+ SUBTYPE OF (Breakdown_element_usage);
2325
+ SELF\View_definition_relationship.relating_view : Physical_element_definition;
2326
+ SELF\View_definition_relationship.related_view : Physical_element_definition;
2327
+ END_ENTITY;
2328
+
2329
+ ENTITY Physical_element_version
2330
+ SUBTYPE OF (Breakdown_element_version);
2331
+ SELF\Breakdown_element_version.of_product : Physical_element;
2332
+ END_ENTITY;
2333
+
2334
+ ENTITY Plane_angle_unit
2335
+ SUBTYPE OF (Unit);
2336
+ END_ENTITY;
2337
+
2338
+ ENTITY Position;
2339
+ name : STRING;
2340
+ description : OPTIONAL STRING;
2341
+ address : OPTIONAL Address;
2342
+ position_context : position_context_item;
2343
+ END_ENTITY;
2344
+
2345
+ ENTITY Position_assignment;
2346
+ items : SET [1:?] OF position_item;
2347
+ position : Position;
2348
+ role : Position_role;
2349
+ END_ENTITY;
2350
+
2351
+ ENTITY Position_group;
2352
+ name : STRING;
2353
+ description : OPTIONAL STRING;
2354
+ END_ENTITY;
2355
+
2356
+ ENTITY Position_group_assignment;
2357
+ items : SET [1:?] OF position_group_item;
2358
+ position_group : Position_group;
2359
+ role : Position_group_role;
2360
+ END_ENTITY;
2361
+
2362
+ ENTITY Position_group_relationship;
2363
+ group : Position_group;
2364
+ position : Position;
2365
+ END_ENTITY;
2366
+
2367
+ ENTITY Position_group_role;
2368
+ name : STRING;
2369
+ description : OPTIONAL STRING;
2370
+ END_ENTITY;
2371
+
2372
+ ENTITY Position_position_type_assignment;
2373
+ assigned_position_type : Position_type;
2374
+ assigned_to : Position;
2375
+ END_ENTITY;
2376
+
2377
+ ENTITY Position_relationship;
2378
+ name : STRING;
2379
+ description : OPTIONAL STRING;
2380
+ relating_position : Position;
2381
+ related_position : Position;
2382
+ END_ENTITY;
2383
+
2384
+ ENTITY Position_role;
2385
+ name : STRING;
2386
+ description : OPTIONAL STRING;
2387
+ END_ENTITY;
2388
+
2389
+ ENTITY Position_type;
2390
+ name : STRING;
2391
+ description : OPTIONAL STRING;
2392
+ defined_by : Type_of_person;
2393
+ END_ENTITY;
2394
+
2395
+ ENTITY Position_type_assignment;
2396
+ items : SET [1:?] OF position_type_item;
2397
+ position_type : Position_type;
2398
+ role : Position_type_role;
2399
+ END_ENTITY;
2400
+
2401
+ ENTITY Position_type_role;
2402
+ name : STRING;
2403
+ description : OPTIONAL STRING;
2404
+ END_ENTITY;
2405
+
2406
+ ENTITY Power_set;
2407
+ id : STRING;
2408
+ name : STRING;
2409
+ description : OPTIONAL STRING;
2410
+ base : Class;
2411
+ derived : Class;
2412
+ END_ENTITY;
2413
+
2414
+ ENTITY Probability
2415
+ ABSTRACT SUPERTYPE
2416
+ SUBTYPE OF (Representation);
2417
+ END_ENTITY;
2418
+
2419
+ ENTITY Probability_by_name
2420
+ SUBTYPE OF (Probability);
2421
+ SELF\Representation.items : SET [1:1] OF Probability_named_value;
2422
+ DERIVE
2423
+ has_value : SET [1:1] OF Probability_named_value := SELF\Representation.items;
2424
+ END_ENTITY;
2425
+
2426
+ ENTITY Probability_derivation_parameter
2427
+ SUBTYPE OF (Numerical_item_with_global_unit);
2428
+ END_ENTITY;
2429
+
2430
+ ENTITY Probability_derived
2431
+ SUBTYPE OF (Probability_numeric);
2432
+ derives_from : Probability_generator;
2433
+ has_parameter : LIST [1:?] OF Probability_derivation_parameter;
2434
+ END_ENTITY;
2435
+
2436
+ ENTITY Probability_distribution
2437
+ ABSTRACT SUPERTYPE
2438
+ SUBTYPE OF (Probability_generator);
2439
+ distribution_name : OPTIONAL STRING;
2440
+ is_continuous : STRING;
2441
+ mean : REAL;
2442
+ variance : REAL;
2443
+ END_ENTITY;
2444
+
2445
+ ENTITY Probability_distribution_parameter
2446
+ SUBTYPE OF (Numerical_item_with_global_unit);
2447
+ END_ENTITY;
2448
+
2449
+ ENTITY Probability_function_value
2450
+ SUBTYPE OF (Numerical_item_with_global_unit);
2451
+ END_ENTITY;
2452
+
2453
+ ENTITY Probability_generator
2454
+ ABSTRACT SUPERTYPE
2455
+ SUBTYPE OF (Representation);
2456
+ END_ENTITY;
2457
+
2458
+ ENTITY Probability_named_value
2459
+ SUBTYPE OF (Representation_item);
2460
+ END_ENTITY;
2461
+
2462
+ ENTITY Probability_numeric
2463
+ SUBTYPE OF (Probability);
2464
+ SELF\Representation.items : SET [1:1] OF Probability_numeric_value;
2465
+ DERIVE
2466
+ has_value : SET [1:1] OF Probability_numeric_value := SELF\Representation.items;
2467
+ END_ENTITY;
2468
+
2469
+ ENTITY Probability_numeric_value
2470
+ SUBTYPE OF (Numerical_item_with_global_unit);
2471
+ END_ENTITY;
2472
+
2473
+ ENTITY Product
2474
+ ABSTRACT SUPERTYPE OF (ONEOF(Attachment_slot, Breakdown, Breakdown_element, Document, Interface_connector, Interface_specification, Part, Product_as_individual, Requirement));
2475
+ id : STRING;
2476
+ name : OPTIONAL STRING;
2477
+ description : OPTIONAL STRING;
2478
+ END_ENTITY;
2479
+
2480
+ ENTITY Product_as_individual
2481
+ SUBTYPE OF (Product);
2482
+ END_ENTITY;
2483
+
2484
+ ENTITY Product_as_individual_effectivity
2485
+ SUBTYPE OF (Effectivity);
2486
+ items : SET [1:?] OF Product_as_individual;
2487
+ END_ENTITY;
2488
+
2489
+ ENTITY Product_as_individual_version
2490
+ ABSTRACT SUPERTYPE OF (ONEOF(Product_as_planned, Product_as_realized))
2491
+ SUBTYPE OF (Product_version);
2492
+ SELF\Product_version.of_product : Product_as_individual;
2493
+ END_ENTITY;
2494
+
2495
+ ENTITY Product_as_individual_view
2496
+ SUBTYPE OF (Product_view_definition);
2497
+ SELF\Product_view_definition.defined_version : Product_as_individual_version;
2498
+ END_ENTITY;
2499
+
2500
+ ENTITY Product_as_planned
2501
+ SUBTYPE OF (Product_as_individual_version);
2502
+ END_ENTITY;
2503
+
2504
+ ENTITY Product_as_realized
2505
+ SUBTYPE OF (Product_as_individual_version);
2506
+ END_ENTITY;
2507
+
2508
+ ENTITY Product_based_location_identification
2509
+ SUBTYPE OF (Location_representation);
2510
+ location_identification : STRING;
2511
+ location_name : OPTIONAL STRING;
2512
+ referenced_product : product_based_location_representation;
2513
+ END_ENTITY;
2514
+
2515
+ ENTITY Product_category;
2516
+ id : OPTIONAL STRING;
2517
+ name : STRING;
2518
+ description : OPTIONAL STRING;
2519
+ END_ENTITY;
2520
+
2521
+ ENTITY Product_category_assignment;
2522
+ category : Product_category;
2523
+ products : SET [1:?] OF Product;
2524
+ END_ENTITY;
2525
+
2526
+ ENTITY Product_category_hierarchy;
2527
+ super_category : Product_category;
2528
+ sub_category : Product_category;
2529
+ END_ENTITY;
2530
+
2531
+ ENTITY Product_concept;
2532
+ id : STRING;
2533
+ name : STRING;
2534
+ description : OPTIONAL STRING;
2535
+ target_market : OPTIONAL Market;
2536
+ UNIQUE
2537
+ UR1: id;
2538
+ END_ENTITY;
2539
+
2540
+ ENTITY Product_configuration;
2541
+ id : STRING;
2542
+ name : STRING;
2543
+ description : OPTIONAL STRING;
2544
+ item_context : Product_concept;
2545
+ INVERSE
2546
+ corresponding_design : SET [0:1] OF Item_design_association FOR configuration;
2547
+ END_ENTITY;
2548
+
2549
+ ENTITY Product_definition_element_relationship;
2550
+ id : STRING;
2551
+ name : STRING;
2552
+ description : OPTIONAL STRING;
2553
+ breakdown : breakdown_item;
2554
+ product : product_item;
2555
+ END_ENTITY;
2556
+
2557
+ ENTITY Product_design_to_individual;
2558
+ product_design : Product;
2559
+ individual_product : Product_as_individual;
2560
+ END_ENTITY;
2561
+
2562
+ ENTITY Product_design_version_to_individual;
2563
+ product_design_version : Product_version;
2564
+ individual_product : Product_as_individual_version;
2565
+ END_ENTITY;
2566
+
2567
+ ENTITY Product_group;
2568
+ id : STRING;
2569
+ description : OPTIONAL STRING;
2570
+ purpose : STRING;
2571
+ membership_rule : OPTIONAL STRING;
2572
+ product_group_context : OPTIONAL STRING;
2573
+ END_ENTITY;
2574
+
2575
+ ENTITY Product_group_membership;
2576
+ member : product_select;
2577
+ of_group : Product_group;
2578
+ END_ENTITY;
2579
+
2580
+ ENTITY Product_group_relationship;
2581
+ description : OPTIONAL STRING;
2582
+ relating : Product_group;
2583
+ related : Product_group;
2584
+ role : OPTIONAL STRING;
2585
+ END_ENTITY;
2586
+
2587
+ ENTITY Product_in_attachment_slot
2588
+ SUBTYPE OF (View_definition_usage);
2589
+ name : STRING;
2590
+ SELF\View_definition_relationship.related_view : Attachment_slot_definition;
2591
+ DERIVE
2592
+ attachment_slot : Attachment_slot_definition := SELF\View_definition_relationship.related_view;
2593
+ product : Product_view_definition := SELF\View_definition_relationship.relating_view;
2594
+ END_ENTITY;
2595
+
2596
+ ENTITY Product_planned_to_realized;
2597
+ planned_product : Product_as_planned;
2598
+ realized_product : Product_as_realized;
2599
+ END_ENTITY;
2600
+
2601
+ ENTITY Product_relationship;
2602
+ relation_type : STRING;
2603
+ description : OPTIONAL STRING;
2604
+ relating_product : Product;
2605
+ related_product : Product;
2606
+ END_ENTITY;
2607
+
2608
+ ENTITY Product_version
2609
+ ABSTRACT SUPERTYPE OF (ONEOF(Attachment_slot_version, Breakdown_element_version, Breakdown_version, Document_version, Interface_connector_version, Interface_specification_version, Part_version, Product_as_individual_version, Requirement_version));
2610
+ id : STRING;
2611
+ description : OPTIONAL STRING;
2612
+ of_product : Product;
2613
+ END_ENTITY;
2614
+
2615
+ ENTITY Product_version_relationship;
2616
+ relation_type : STRING;
2617
+ description : OPTIONAL STRING;
2618
+ relating_version : Product_version;
2619
+ related_version : Product_version;
2620
+ WHERE
2621
+ WR1: relating_version :<>: related_version;
2622
+ END_ENTITY;
2623
+
2624
+ ENTITY Product_view_definition
2625
+ SUPERTYPE OF (ONEOF(Attachment_slot_definition, Breakdown_element_definition, Interface_connector_definition, Interface_specification_definition, Part_view_definition, Product_as_individual_view, Requirement_view_definition));
2626
+ id : STRING;
2627
+ name : OPTIONAL STRING;
2628
+ additional_characterization : OPTIONAL STRING;
2629
+ initial_context : View_definition_context;
2630
+ additional_contexts : SET OF View_definition_context;
2631
+ defined_version : Product_version;
2632
+ WHERE
2633
+ WR1: NOT (initial_context IN additional_contexts);
2634
+ END_ENTITY;
2635
+
2636
+ ENTITY Project;
2637
+ id : STRING;
2638
+ name : STRING;
2639
+ description : OPTIONAL STRING;
2640
+ responsible_organizations : SET OF Organization;
2641
+ planned_start_date : OPTIONAL date_or_event;
2642
+ planned_end_date : OPTIONAL date_or_event;
2643
+ actual_start_date : OPTIONAL date_or_date_time_select;
2644
+ actual_end_date : OPTIONAL date_or_date_time_select;
2645
+ END_ENTITY;
2646
+
2647
+ ENTITY Project_assignment;
2648
+ assigned_project : Project;
2649
+ role : STRING;
2650
+ items : SET OF project_item;
2651
+ END_ENTITY;
2652
+
2653
+ ENTITY Project_relationship;
2654
+ relation_type : STRING;
2655
+ description : OPTIONAL STRING;
2656
+ relating_project : Project;
2657
+ related_project : Project;
2658
+ END_ENTITY;
2659
+
2660
+ ENTITY Promissory_usage
2661
+ SUBTYPE OF (Assembly_component_relationship);
2662
+ END_ENTITY;
2663
+
2664
+ ENTITY Proper_subset;
2665
+ id : STRING;
2666
+ name : STRING;
2667
+ description : OPTIONAL STRING;
2668
+ subset : Class;
2669
+ superset : Class;
2670
+ END_ENTITY;
2671
+
2672
+ ENTITY Property_representation;
2673
+ description : OPTIONAL STRING;
2674
+ property : Assigned_property;
2675
+ rep : Representation;
2676
+ role : OPTIONAL STRING;
2677
+ END_ENTITY;
2678
+
2679
+ ENTITY Property_value_representation
2680
+ SUBTYPE OF (Representation);
2681
+ SELF\Representation.context_of_items : Numerical_representation_context;
2682
+ END_ENTITY;
2683
+
2684
+ ENTITY Qualification_assignment;
2685
+ assigned_qualification_type : Qualification_type;
2686
+ received_by : qualifications_select;
2687
+ END_ENTITY;
2688
+
2689
+ ENTITY Qualification_type;
2690
+ name : STRING;
2691
+ description : OPTIONAL STRING;
2692
+ END_ENTITY;
2693
+
2694
+ ENTITY Qualification_type_relationship;
2695
+ name : STRING;
2696
+ description : OPTIONAL STRING;
2697
+ relating : Qualification_type;
2698
+ related : Qualification_type;
2699
+ END_ENTITY;
2700
+
2701
+ ENTITY Qualified_property_value_representation
2702
+ SUBTYPE OF (Property_value_representation);
2703
+ value_determination : OPTIONAL STRING;
2704
+ qualifier : OPTIONAL STRING;
2705
+ END_ENTITY;
2706
+
2707
+ ENTITY Random_variable
2708
+ SUBTYPE OF (Numerical_item_with_global_unit);
2709
+ END_ENTITY;
2710
+
2711
+ ENTITY Ratio_unit
2712
+ SUBTYPE OF (Unit);
2713
+ END_ENTITY;
2714
+
2715
+ ENTITY Regional_coordinate;
2716
+ name : STRING;
2717
+ coordinate_value : Value_with_unit;
2718
+ grid_system : Regional_grid_location_representation;
2719
+ END_ENTITY;
2720
+
2721
+ ENTITY Regional_grid_location_representation
2722
+ SUBTYPE OF (Location_representation);
2723
+ name : STRING;
2724
+ description : OPTIONAL STRING;
2725
+ END_ENTITY;
2726
+
2727
+ ENTITY Related_condition_parameter;
2728
+ name : STRING;
2729
+ description : OPTIONAL STRING;
2730
+ conditon_evaluation_parameter : Condition_evaluation_parameter;
2731
+ condition_parameter : Condition_parameter;
2732
+ END_ENTITY;
2733
+
2734
+ ENTITY Relative_event
2735
+ SUBTYPE OF (Event);
2736
+ base_event : Event;
2737
+ offset : Duration;
2738
+ END_ENTITY;
2739
+
2740
+ ENTITY Repeat_count
2741
+ SUBTYPE OF (Looping_element);
2742
+ count : INTEGER;
2743
+ END_ENTITY;
2744
+
2745
+ ENTITY Repeat_until
2746
+ SUBTYPE OF (Looping_element);
2747
+ condition : Condition;
2748
+ END_ENTITY;
2749
+
2750
+ ENTITY Repeat_while
2751
+ SUBTYPE OF (Looping_element);
2752
+ condition : Condition;
2753
+ END_ENTITY;
2754
+
2755
+ ENTITY Representation;
2756
+ id : OPTIONAL STRING;
2757
+ name : STRING;
2758
+ description : OPTIONAL STRING;
2759
+ context_of_items : Representation_context;
2760
+ items : SET [1:?] OF Representation_item;
2761
+ END_ENTITY;
2762
+
2763
+ ENTITY Representation_context;
2764
+ id : STRING;
2765
+ kind : STRING;
2766
+ INVERSE
2767
+ representations_in_context : SET [1:?] OF Representation FOR context_of_items;
2768
+ END_ENTITY;
2769
+
2770
+ ENTITY Representation_item
2771
+ ABSTRACT SUPERTYPE;
2772
+ name : STRING;
2773
+ END_ENTITY;
2774
+
2775
+ ENTITY Representation_relationship;
2776
+ relation_type : STRING;
2777
+ description : STRING;
2778
+ rep_1 : Representation;
2779
+ rep_2 : Representation;
2780
+ END_ENTITY;
2781
+
2782
+ ENTITY Required_resource
2783
+ ABSTRACT SUPERTYPE OF (ONEOF(Required_resource_by_resource_item, Required_resource_by_specification));
2784
+ name : STRING;
2785
+ description : OPTIONAL STRING;
2786
+ required_quantity : OPTIONAL Value_with_unit;
2787
+ END_ENTITY;
2788
+
2789
+ ENTITY Required_resource_assignment;
2790
+ assigned_resource : Required_resource;
2791
+ item : required_resource_item;
2792
+ END_ENTITY;
2793
+
2794
+ ENTITY Required_resource_by_resource_item
2795
+ SUBTYPE OF (Required_resource);
2796
+ resource_item : Resource_item;
2797
+ END_ENTITY;
2798
+
2799
+ ENTITY Required_resource_by_specification
2800
+ SUBTYPE OF (Required_resource);
2801
+ END_ENTITY;
2802
+
2803
+ ENTITY Required_resource_relationship;
2804
+ name : STRING;
2805
+ description : OPTIONAL STRING;
2806
+ relating : Required_resource;
2807
+ related : Required_resource;
2808
+ END_ENTITY;
2809
+
2810
+ ENTITY Requirement
2811
+ SUBTYPE OF (Product);
2812
+ END_ENTITY;
2813
+
2814
+ ENTITY Requirement_assignment;
2815
+ id : STRING;
2816
+ description : OPTIONAL STRING;
2817
+ assigned_requirement : Requirement_view_definition;
2818
+ assigned_to : requirement_assignment_item;
2819
+ END_ENTITY;
2820
+
2821
+ ENTITY Requirement_collection_relationship
2822
+ SUBTYPE OF (View_definition_relationship);
2823
+ SELF\View_definition_relationship.relating_view : Requirement_view_definition;
2824
+ SELF\View_definition_relationship.related_view : Requirement_view_definition;
2825
+ DERIVE
2826
+ collection : Requirement_view_definition := SELF\View_definition_relationship.relating_view;
2827
+ member : Requirement_view_definition := SELF\View_definition_relationship.related_view;
2828
+ END_ENTITY;
2829
+
2830
+ ENTITY Requirement_source;
2831
+ id : STRING;
2832
+ description : OPTIONAL STRING;
2833
+ source : requirement_source_item;
2834
+ sourced_requirement : Requirement_view_definition;
2835
+ END_ENTITY;
2836
+
2837
+ ENTITY Requirement_version
2838
+ SUBTYPE OF (Product_version);
2839
+ SELF\Product_version.of_product : Requirement;
2840
+ END_ENTITY;
2841
+
2842
+ ENTITY Requirement_version_relationship
2843
+ SUBTYPE OF (Product_version_relationship);
2844
+ SELF\Product_version_relationship.relating_version : Requirement_version;
2845
+ SELF\Product_version_relationship.related_version : Requirement_version;
2846
+ DERIVE
2847
+ predecessor : Requirement_version := SELF\Product_version_relationship.relating_version;
2848
+ successor : Requirement_version := SELF\Product_version_relationship.related_version;
2849
+ END_ENTITY;
2850
+
2851
+ ENTITY Requirement_view_definition
2852
+ SUBTYPE OF (Product_view_definition);
2853
+ SELF\Product_view_definition.defined_version : Requirement_version;
2854
+ END_ENTITY;
2855
+
2856
+ ENTITY Resource_as_realized;
2857
+ name : STRING;
2858
+ description : OPTIONAL STRING;
2859
+ quantity : OPTIONAL Value_with_unit;
2860
+ END_ENTITY;
2861
+
2862
+ ENTITY Resource_as_realized_assignment;
2863
+ assigned_resource : Resource_as_realized;
2864
+ item : resource_as_realized_item;
2865
+ END_ENTITY;
2866
+
2867
+ ENTITY Resource_as_realized_relationship;
2868
+ name : STRING;
2869
+ description : OPTIONAL STRING;
2870
+ relating : Resource_as_realized;
2871
+ related : resource_as_realized_relationship_select;
2872
+ END_ENTITY;
2873
+
2874
+ ENTITY Resource_as_realized_resource_item
2875
+ SUBTYPE OF (Resource_as_realized);
2876
+ resource_item : Resource_item;
2877
+ END_ENTITY;
2878
+
2879
+ ENTITY Resource_event
2880
+ ABSTRACT SUPERTYPE;
2881
+ name : STRING;
2882
+ description : OPTIONAL STRING;
2883
+ quantity : OPTIONAL Value_with_unit;
2884
+ resource : Managed_resource;
2885
+ END_ENTITY;
2886
+
2887
+ ENTITY Resource_event_correspondence_relationship;
2888
+ name : STRING;
2889
+ description : OPTIONAL STRING;
2890
+ relating : Resource_event;
2891
+ related : Required_resource;
2892
+ END_ENTITY;
2893
+
2894
+ ENTITY Resource_event_relationship;
2895
+ name : STRING;
2896
+ description : OPTIONAL STRING;
2897
+ relating : Resource_event;
2898
+ related : Resource_event;
2899
+ END_ENTITY;
2900
+
2901
+ ENTITY Resource_group_relationship
2902
+ SUBTYPE OF (Resource_item_relationship);
2903
+ quantity : OPTIONAL Value_with_unit;
2904
+ END_ENTITY;
2905
+
2906
+ ENTITY Resource_item;
2907
+ name : STRING;
2908
+ description : OPTIONAL STRING;
2909
+ resource_items : OPTIONAL SET OF resource_item_select;
2910
+ END_ENTITY;
2911
+
2912
+ ENTITY Resource_item_assignment;
2913
+ assigned_resource : Resource_item;
2914
+ item : resource_assignment_item;
2915
+ END_ENTITY;
2916
+
2917
+ ENTITY Resource_item_relationship;
2918
+ name : STRING;
2919
+ description : OPTIONAL STRING;
2920
+ relating : Resource_item;
2921
+ related : Resource_item;
2922
+ END_ENTITY;
2923
+
2924
+ ENTITY Resource_property;
2925
+ name : STRING;
2926
+ description : STRING;
2927
+ described_element : characterized_resource_select;
2928
+ END_ENTITY;
2929
+
2930
+ ENTITY Resource_property_representation;
2931
+ description : OPTIONAL STRING;
2932
+ property : Resource_property;
2933
+ rep : Representation;
2934
+ role : STRING;
2935
+ END_ENTITY;
2936
+
2937
+ ENTITY Same_membership;
2938
+ id : STRING;
2939
+ name : STRING;
2940
+ description : OPTIONAL STRING;
2941
+ set_1 : Class;
2942
+ set_2 : Class;
2943
+ END_ENTITY;
2944
+
2945
+ ENTITY Scheme
2946
+ SUBTYPE OF (Activity_method);
2947
+ END_ENTITY;
2948
+
2949
+ ENTITY Scheme_entry
2950
+ SUBTYPE OF (Activity_method);
2951
+ scheme : Scheme_version;
2952
+ END_ENTITY;
2953
+
2954
+ ENTITY Scheme_entry_assignment
2955
+ SUBTYPE OF (Applied_activity_method_assignment);
2956
+ SELF\Applied_activity_method_assignment.assigned_activity_method : Scheme_entry;
2957
+ SELF\Applied_activity_method_assignment.items : SET [1:?] OF scheme_entry_item_select;
2958
+ DERIVE
2959
+ assigned_entry : Scheme_entry := SELF\Applied_activity_method_assignment.assigned_activity_method;
2960
+ END_ENTITY;
2961
+
2962
+ ENTITY Scheme_entry_relationship
2963
+ SUBTYPE OF (Activity_method_relationship);
2964
+ SELF\Activity_method_relationship.relating_method : Scheme_entry;
2965
+ SELF\Activity_method_relationship.related_method : Scheme_entry;
2966
+ DERIVE
2967
+ relating_entry : Scheme_entry := SELF\Activity_method_relationship.relating_method;
2968
+ related_entry : Scheme_entry := SELF\Activity_method_relationship.related_method;
2969
+ END_ENTITY;
2970
+
2971
+ ENTITY Scheme_relationship
2972
+ SUBTYPE OF (Activity_method_relationship);
2973
+ SELF\Activity_method_relationship.relating_method : Scheme;
2974
+ SELF\Activity_method_relationship.related_method : Scheme;
2975
+ DERIVE
2976
+ relating_scheme : Scheme := SELF\Activity_method_relationship.relating_method;
2977
+ related_scheme : Scheme := SELF\Activity_method_relationship.related_method;
2978
+ END_ENTITY;
2979
+
2980
+ ENTITY Scheme_subject_assignment
2981
+ SUBTYPE OF (Applied_activity_method_assignment);
2982
+ SELF\Applied_activity_method_assignment.assigned_activity_method : Scheme;
2983
+ SELF\Applied_activity_method_assignment.items : SET [1:?] OF scheme_subject_select;
2984
+ DERIVE
2985
+ assigned_scheme : Scheme := SELF\Applied_activity_method_assignment.assigned_activity_method;
2986
+ END_ENTITY;
2987
+
2988
+ ENTITY Scheme_version
2989
+ SUBTYPE OF (Activity_method);
2990
+ of_scheme : Scheme;
2991
+ END_ENTITY;
2992
+
2993
+ ENTITY Scheme_version_assignment
2994
+ SUBTYPE OF (Applied_activity_method_assignment);
2995
+ SELF\Applied_activity_method_assignment.assigned_activity_method : Scheme_version;
2996
+ SELF\Applied_activity_method_assignment.items : SET [1:?] OF scheme_version_select;
2997
+ DERIVE
2998
+ assigned_scheme_version : Scheme_version := SELF\Applied_activity_method_assignment.assigned_activity_method;
2999
+ END_ENTITY;
3000
+
3001
+ ENTITY Scheme_version_relationship
3002
+ SUBTYPE OF (Activity_method_relationship);
3003
+ SELF\Activity_method_relationship.relating_method : Scheme_version;
3004
+ SELF\Activity_method_relationship.related_method : Scheme_version;
3005
+ DERIVE
3006
+ relating_scheme_version : Scheme_version := SELF\Activity_method_relationship.relating_method;
3007
+ related_scheme_version : Scheme_version := SELF\Activity_method_relationship.related_method;
3008
+ END_ENTITY;
3009
+
3010
+ ENTITY Security_classification;
3011
+ classification_level : STRING;
3012
+ description : OPTIONAL STRING;
3013
+ END_ENTITY;
3014
+
3015
+ ENTITY Security_classification_assignment;
3016
+ classification : Security_classification;
3017
+ items : SET [1:?] OF security_classification_item;
3018
+ END_ENTITY;
3019
+
3020
+ ENTITY Selected_item
3021
+ SUBTYPE OF (Class);
3022
+ END_ENTITY;
3023
+
3024
+ ENTITY Selected_item_assignment;
3025
+ assigned_class : Selected_item;
3026
+ item : selected_item_select;
3027
+ item_context : SET [1:?] OF selected_item_context_items;
3028
+ END_ENTITY;
3029
+
3030
+ ENTITY Sequence_of_state
3031
+ SUBTYPE OF (State_relationship);
3032
+ DERIVE
3033
+ successor : SET [1:?] OF State := SELF\State_relationship.relating;
3034
+ predecessor : SET [1:?] OF State := SELF\State_relationship.related;
3035
+ END_ENTITY;
3036
+
3037
+ ENTITY Sequence_of_state_definition
3038
+ SUBTYPE OF (State_definition_relationship);
3039
+ DERIVE
3040
+ successor : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3041
+ predecessor : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3042
+ END_ENTITY;
3043
+
3044
+ ENTITY Sequencing_relationship
3045
+ SUBTYPE OF (Scheme_entry_relationship);
3046
+ sequencing_type : STRING;
3047
+ time_lag : OPTIONAL Time_interval;
3048
+ END_ENTITY;
3049
+
3050
+ ENTITY Serial_effectivity
3051
+ SUBTYPE OF (Effectivity);
3052
+ start_id : STRING;
3053
+ end_id : OPTIONAL STRING;
3054
+ END_ENTITY;
3055
+
3056
+ ENTITY Shape_dependent_property_representation;
3057
+ characteristic_type : STRING;
3058
+ description : OPTIONAL STRING;
3059
+ described_element : shape_dependent_select;
3060
+ property_representation : Representation;
3061
+ END_ENTITY;
3062
+
3063
+ ENTITY Shape_description_association;
3064
+ represented_characteristic : shape_select;
3065
+ representation : shape_model;
3066
+ role : OPTIONAL STRING;
3067
+ description : OPTIONAL STRING;
3068
+ END_ENTITY;
3069
+
3070
+ ENTITY Shape_element;
3071
+ id : OPTIONAL STRING;
3072
+ element_name : STRING;
3073
+ description : OPTIONAL STRING;
3074
+ containing_shape : Item_shape;
3075
+ END_ENTITY;
3076
+
3077
+ ENTITY Shape_element_relationship;
3078
+ relation_type : STRING;
3079
+ description : OPTIONAL STRING;
3080
+ relating : Shape_element;
3081
+ related : Shape_element;
3082
+ END_ENTITY;
3083
+
3084
+ ENTITY Simultaneous_elements
3085
+ SUBTYPE OF (Concurrent_elements);
3086
+ END_ENTITY;
3087
+
3088
+ ENTITY Solid_angle_unit
3089
+ SUBTYPE OF (Unit);
3090
+ END_ENTITY;
3091
+
3092
+ ENTITY State
3093
+ SUPERTYPE OF (ONEOF(State_observed, State_predicted));
3094
+ name : STRING;
3095
+ description : OPTIONAL STRING;
3096
+ END_ENTITY;
3097
+
3098
+ ENTITY State_assertion;
3099
+ name : STRING;
3100
+ description : OPTIONAL STRING;
3101
+ asserted_state : State;
3102
+ conformance_state : State_definition;
3103
+ END_ENTITY;
3104
+
3105
+ ENTITY State_assessment;
3106
+ name : STRING;
3107
+ description : OPTIONAL STRING;
3108
+ assessed_state : State;
3109
+ comparable_state : State_definition;
3110
+ END_ENTITY;
3111
+
3112
+ ENTITY State_cause_effect
3113
+ SUBTYPE OF (State_relationship);
3114
+ DERIVE
3115
+ effect : SET [1:?] OF State := SELF\State_relationship.relating;
3116
+ cause : SET [1:?] OF State := SELF\State_relationship.related;
3117
+ END_ENTITY;
3118
+
3119
+ ENTITY State_cause_effect_definition
3120
+ SUBTYPE OF (State_definition_relationship);
3121
+ DERIVE
3122
+ effect : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3123
+ cause : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3124
+ END_ENTITY;
3125
+
3126
+ ENTITY State_complement_definition
3127
+ SUBTYPE OF (State_definition_relationship);
3128
+ set_2 : SET [1:?] OF State_definition;
3129
+ DERIVE
3130
+ universe : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3131
+ set_1 : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3132
+ END_ENTITY;
3133
+
3134
+ ENTITY State_definition;
3135
+ name : STRING;
3136
+ description : OPTIONAL STRING;
3137
+ END_ENTITY;
3138
+
3139
+ ENTITY State_definition_relationship;
3140
+ name : STRING;
3141
+ description : OPTIONAL STRING;
3142
+ relating : SET [1:?] OF State_definition;
3143
+ related : SET [1:?] OF State_definition;
3144
+ END_ENTITY;
3145
+
3146
+ ENTITY State_definition_role;
3147
+ name : STRING;
3148
+ description : OPTIONAL STRING;
3149
+ END_ENTITY;
3150
+
3151
+ ENTITY State_observed
3152
+ SUBTYPE OF (State);
3153
+ END_ENTITY;
3154
+
3155
+ ENTITY State_predicted
3156
+ SUBTYPE OF (State);
3157
+ END_ENTITY;
3158
+
3159
+ ENTITY State_predicted_to_observed
3160
+ SUBTYPE OF (State_relationship);
3161
+ SELF\State_relationship.relating : SET [1:?] OF State_observed;
3162
+ SELF\State_relationship.related : SET [1:?] OF State_predicted;
3163
+ DERIVE
3164
+ observed_state : SET [1:?] OF State_observed := SELF\State_relationship.relating;
3165
+ predicted_state : SET [1:?] OF State_predicted := SELF\State_relationship.related;
3166
+ END_ENTITY;
3167
+
3168
+ ENTITY State_proper_subset_definition
3169
+ SUBTYPE OF (State_definition_relationship);
3170
+ DERIVE
3171
+ proper_subset : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3172
+ proper_superset : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3173
+ END_ENTITY;
3174
+
3175
+ ENTITY State_relationship;
3176
+ name : STRING;
3177
+ description : OPTIONAL STRING;
3178
+ relating : SET [1:?] OF State;
3179
+ related : SET [1:?] OF State;
3180
+ END_ENTITY;
3181
+
3182
+ ENTITY State_role;
3183
+ name : STRING;
3184
+ description : OPTIONAL STRING;
3185
+ END_ENTITY;
3186
+
3187
+ ENTITY State_subset_definition
3188
+ SUBTYPE OF (State_definition_relationship);
3189
+ DERIVE
3190
+ superset : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3191
+ subset : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3192
+ END_ENTITY;
3193
+
3194
+ ENTITY State_symptom_definition
3195
+ SUBTYPE OF (State_definition_relationship);
3196
+ DERIVE
3197
+ symptom_effect : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3198
+ symptom_cause : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3199
+ END_ENTITY;
3200
+
3201
+ ENTITY State_transition
3202
+ SUBTYPE OF (State_relationship);
3203
+ DERIVE
3204
+ end_state : SET [1:?] OF State := SELF\State_relationship.relating;
3205
+ start_state : SET [1:?] OF State := SELF\State_relationship.related;
3206
+ END_ENTITY;
3207
+
3208
+ ENTITY State_transition_definition
3209
+ SUBTYPE OF (State_definition_relationship);
3210
+ DERIVE
3211
+ end_state : SET [1:?] OF State_definition := SELF\State_definition_relationship.relating;
3212
+ start_state : SET [1:?] OF State_definition := SELF\State_definition_relationship.related;
3213
+ END_ENTITY;
3214
+
3215
+ ENTITY String_representation_item
3216
+ SUBTYPE OF (Representation_item);
3217
+ string_value : STRING;
3218
+ END_ENTITY;
3219
+
3220
+ ENTITY Structured_task_element
3221
+ ABSTRACT SUPERTYPE OF (ONEOF(Concurrent_elements, Decision_point, Looping_element, Task_element_sequence))
3222
+ SUBTYPE OF (Task_element);
3223
+ END_ENTITY;
3224
+
3225
+ ENTITY Subset;
3226
+ id : STRING;
3227
+ name : STRING;
3228
+ description : OPTIONAL STRING;
3229
+ subset : Class;
3230
+ superset : Class;
3231
+ END_ENTITY;
3232
+
3233
+ ENTITY Supplied_part_relationship
3234
+ SUBTYPE OF (Product_version_relationship);
3235
+ WHERE
3236
+ WR1: SELF\Product_version_relationship.relation_type IN ['supplied item', 'supplied document'];
3237
+ END_ENTITY;
3238
+
3239
+ ENTITY System_breakdown
3240
+ SUBTYPE OF (Breakdown);
3241
+ END_ENTITY;
3242
+
3243
+ ENTITY System_breakdown_context
3244
+ SUBTYPE OF (Breakdown_context);
3245
+ SELF\Breakdown_context.breakdown : System_breakdown_version;
3246
+ SELF\Breakdown_context.breakdown_element : System_element_definition;
3247
+ END_ENTITY;
3248
+
3249
+ ENTITY System_breakdown_version
3250
+ SUBTYPE OF (Breakdown_version);
3251
+ SELF\Breakdown_version.of_product : System_breakdown;
3252
+ END_ENTITY;
3253
+
3254
+ ENTITY System_element
3255
+ SUBTYPE OF (Breakdown_element);
3256
+ END_ENTITY;
3257
+
3258
+ ENTITY System_element_definition
3259
+ SUBTYPE OF (Breakdown_element_definition);
3260
+ SELF\Breakdown_element_definition.defined_version : System_element_version;
3261
+ END_ENTITY;
3262
+
3263
+ ENTITY System_element_usage
3264
+ SUBTYPE OF (Breakdown_element_usage);
3265
+ SELF\View_definition_relationship.relating_view : System_element_definition;
3266
+ SELF\View_definition_relationship.related_view : System_element_definition;
3267
+ END_ENTITY;
3268
+
3269
+ ENTITY System_element_version
3270
+ SUBTYPE OF (Breakdown_element_version);
3271
+ SELF\Breakdown_element_version.of_product : System_element;
3272
+ END_ENTITY;
3273
+
3274
+ ENTITY Task_element
3275
+ ABSTRACT SUPERTYPE OF (ONEOF(End_task, Exit_loop, Structured_task_element, Task_element_levels, Task_invocation, Task_step))
3276
+ SUBTYPE OF (Activity_method);
3277
+ notes : OPTIONAL LIST [1:?] OF Advisory_task_step;
3278
+ END_ENTITY;
3279
+
3280
+ ENTITY Task_element_assignment
3281
+ SUBTYPE OF (Applied_activity_method_assignment);
3282
+ SELF\Applied_activity_method_assignment.assigned_activity_method : Task_element;
3283
+ SELF\Applied_activity_method_assignment.items : SET [1:?] OF task_item;
3284
+ DERIVE
3285
+ assigned_task_element : Task_element := SELF\Applied_activity_method_assignment.assigned_activity_method;
3286
+ END_ENTITY;
3287
+
3288
+ ENTITY Task_element_levels
3289
+ SUBTYPE OF (Task_element);
3290
+ alternatives : SET [2:?] OF Task_element;
3291
+ END_ENTITY;
3292
+
3293
+ ENTITY Task_element_relationship
3294
+ SUBTYPE OF (Activity_method_relationship);
3295
+ SELF\Activity_method_relationship.relating_method : Task_element;
3296
+ SELF\Activity_method_relationship.related_method : Task_element;
3297
+ END_ENTITY;
3298
+
3299
+ ENTITY Task_element_sequence
3300
+ SUBTYPE OF (Structured_task_element);
3301
+ elements : LIST [2:?] OF Task_element;
3302
+ END_ENTITY;
3303
+
3304
+ ENTITY Task_element_state_relationship;
3305
+ state : state_or_state_definition_select;
3306
+ task_element : Task_element;
3307
+ END_ENTITY;
3308
+
3309
+ ENTITY Task_invocation
3310
+ SUBTYPE OF (Task_element);
3311
+ task_method : method_or_method_version;
3312
+ END_ENTITY;
3313
+
3314
+ ENTITY Task_method
3315
+ SUBTYPE OF (Activity_method);
3316
+ objective : SET OF Task_objective;
3317
+ END_ENTITY;
3318
+
3319
+ ENTITY Task_method_assignment
3320
+ SUBTYPE OF (Applied_activity_method_assignment);
3321
+ SELF\Applied_activity_method_assignment.assigned_activity_method : Task_method;
3322
+ SELF\Applied_activity_method_assignment.items : SET [1:?] OF task_item;
3323
+ END_ENTITY;
3324
+
3325
+ ENTITY Task_method_relationship
3326
+ SUBTYPE OF (Activity_method_relationship);
3327
+ SELF\Activity_method_relationship.relating_method : Task_method;
3328
+ SELF\Activity_method_relationship.related_method : Task_method;
3329
+ END_ENTITY;
3330
+
3331
+ ENTITY Task_method_state_relationship;
3332
+ state : state_or_state_definition_select;
3333
+ task_method : Task_method_version;
3334
+ END_ENTITY;
3335
+
3336
+ ENTITY Task_method_version
3337
+ SUBTYPE OF (Activity_method);
3338
+ content : OPTIONAL Task_element;
3339
+ of_task_method : Task_method;
3340
+ END_ENTITY;
3341
+
3342
+ ENTITY Task_method_version_assignment
3343
+ SUBTYPE OF (Applied_activity_method_assignment);
3344
+ SELF\Applied_activity_method_assignment.assigned_activity_method : Task_method_version;
3345
+ SELF\Applied_activity_method_assignment.items : SET [1:?] OF task_item;
3346
+ DERIVE
3347
+ assigned_task_method : Task_method_version := SELF\Applied_activity_method_assignment.assigned_activity_method;
3348
+ END_ENTITY;
3349
+
3350
+ ENTITY Task_method_version_relationship
3351
+ SUBTYPE OF (Activity_method_relationship);
3352
+ SELF\Activity_method_relationship.relating_method : Task_method_version;
3353
+ SELF\Activity_method_relationship.related_method : Task_method_version;
3354
+ DERIVE
3355
+ relating_task_method : Task_method_version := SELF\Activity_method_relationship.relating_method;
3356
+ related_task_method : Task_method_version := SELF\Activity_method_relationship.related_method;
3357
+ END_ENTITY;
3358
+
3359
+ ENTITY Task_objective;
3360
+ name : STRING;
3361
+ description : STRING;
3362
+ END_ENTITY;
3363
+
3364
+ ENTITY Task_objective_state_relationship;
3365
+ state : state_or_state_definition_select;
3366
+ task_objective : Task_objective;
3367
+ END_ENTITY;
3368
+
3369
+ ENTITY Task_step
3370
+ SUBTYPE OF (Task_element);
3371
+ DERIVE
3372
+ step_text : STRING := SELF\Activity_method.description;
3373
+ END_ENTITY;
3374
+
3375
+ ENTITY Thermodynamic_temperature_unit
3376
+ SUBTYPE OF (Unit);
3377
+ END_ENTITY;
3378
+
3379
+ ENTITY Time_interval;
3380
+ id : STRING;
3381
+ name : STRING;
3382
+ description : OPTIONAL STRING;
3383
+ END_ENTITY;
3384
+
3385
+ ENTITY Time_interval_effectivity
3386
+ SUBTYPE OF (Effectivity);
3387
+ effectivity_period : Time_interval;
3388
+ END_ENTITY;
3389
+
3390
+ ENTITY Time_interval_relationship;
3391
+ relation_type : STRING;
3392
+ description : STRING;
3393
+ relating_time_interval : Time_interval;
3394
+ related_time_interval : Time_interval;
3395
+ END_ENTITY;
3396
+
3397
+ ENTITY Time_interval_with_bounds
3398
+ SUBTYPE OF (Time_interval);
3399
+ primary_bound : OPTIONAL date_or_event;
3400
+ secondary_bound : OPTIONAL date_or_event;
3401
+ duration_from_primary_bound : OPTIONAL Duration;
3402
+ WHERE
3403
+ WR1: NOT (EXISTS(secondary_bound) AND EXISTS(duration_from_primary_bound));
3404
+ WR2: EXISTS(primary_bound) OR EXISTS(secondary_bound);
3405
+ END_ENTITY;
3406
+
3407
+ ENTITY Time_offset;
3408
+ hour_offset : INTEGER;
3409
+ minute_offset : OPTIONAL INTEGER;
3410
+ sense : offset_orientation;
3411
+ DERIVE
3412
+ actual_minute_offset : INTEGER := NVL(minute_offset, 0);
3413
+ WHERE
3414
+ WR1: {0 <= hour_offset < 24};
3415
+ WR2: {0 <= actual_minute_offset <= 59};
3416
+ WR3: NOT (((hour_offset <> 0) OR (actual_minute_offset <> 0)) AND (sense = exact));
3417
+ END_ENTITY;
3418
+
3419
+ ENTITY Time_unit
3420
+ SUBTYPE OF (Unit);
3421
+ END_ENTITY;
3422
+
3423
+ ENTITY Tracing_relationship
3424
+ SUBTYPE OF (View_definition_relationship);
3425
+ SELF\View_definition_relationship.relating_view : Requirement_view_definition;
3426
+ SELF\View_definition_relationship.related_view : Requirement_view_definition;
3427
+ DERIVE
3428
+ traces_from : Requirement_view_definition := SELF\View_definition_relationship.relating_view;
3429
+ traces_to : Requirement_view_definition := SELF\View_definition_relationship.related_view;
3430
+ END_ENTITY;
3431
+
3432
+ ENTITY Transformation_based_template_instance
3433
+ SUBTYPE OF (Detailed_geometric_model_element);
3434
+ replicated_model : shape_model;
3435
+ replication_transformation : cartesian_transformation;
3436
+ END_ENTITY;
3437
+
3438
+ ENTITY Type_of_person;
3439
+ name : STRING;
3440
+ description : OPTIONAL STRING;
3441
+ has : SET OF Type_of_person_definition;
3442
+ END_ENTITY;
3443
+
3444
+ ENTITY Type_of_person_assignment;
3445
+ assigned_type_of_person : Type_of_person;
3446
+ items : SET [1:?] OF type_of_person_item_select;
3447
+ role : STRING;
3448
+ END_ENTITY;
3449
+
3450
+ ENTITY Type_of_person_definition;
3451
+ name : STRING;
3452
+ description : OPTIONAL STRING;
3453
+ END_ENTITY;
3454
+
3455
+ ENTITY Type_of_person_definition_relationship;
3456
+ name : STRING;
3457
+ description : OPTIONAL STRING;
3458
+ relating : Type_of_person_definition;
3459
+ related : Type_of_person_definition;
3460
+ END_ENTITY;
3461
+
3462
+ ENTITY Type_of_person_definition_required_attributes_relationship;
3463
+ assigned_required_attributes : Type_of_person_definition;
3464
+ required_attributes : SET OF defined_attributes;
3465
+ END_ENTITY;
3466
+
3467
+ ENTITY Uncertainty_with_unit
3468
+ SUBTYPE OF (Value_with_unit);
3469
+ name : STRING;
3470
+ description : OPTIONAL STRING;
3471
+ END_ENTITY;
3472
+
3473
+ ENTITY Union;
3474
+ id : STRING;
3475
+ name : STRING;
3476
+ description : OPTIONAL STRING;
3477
+ operand : SET [2:?] OF Class;
3478
+ resultant : Class;
3479
+ END_ENTITY;
3480
+
3481
+ ENTITY Unit
3482
+ SUPERTYPE OF (ONEOF(Amount_of_substance_unit, Electric_current_unit, Length_unit, Luminous_intensity_unit, Mass_unit, Plane_angle_unit, Ratio_unit, Solid_angle_unit, Thermodynamic_temperature_unit, Time_unit));
3483
+ name : STRING;
3484
+ si_unit : BOOLEAN;
3485
+ END_ENTITY;
3486
+
3487
+ ENTITY Value_function;
3488
+ function_element : LIST [1:?] OF Function_value_pair;
3489
+ END_ENTITY;
3490
+
3491
+ ENTITY Value_limit
3492
+ SUBTYPE OF (Measure_item);
3493
+ limit_qualifier : limit_qualifier_list;
3494
+ limit : Value_with_unit;
3495
+ END_ENTITY;
3496
+
3497
+ ENTITY Value_limit_with_global_unit
3498
+ SUBTYPE OF (Measure_item);
3499
+ limit : Numerical_item_with_global_unit;
3500
+ limit_qualifier : limit_qualifier_list;
3501
+ END_ENTITY;
3502
+
3503
+ ENTITY Value_list
3504
+ SUBTYPE OF (Measure_item);
3505
+ values : LIST [1:?] OF Measure_item;
3506
+ END_ENTITY;
3507
+
3508
+ ENTITY Value_range
3509
+ SUBTYPE OF (Measure_item);
3510
+ lower_limit : Numerical_item_with_unit;
3511
+ upper_limit : Numerical_item_with_unit;
3512
+ END_ENTITY;
3513
+
3514
+ ENTITY Value_range_with_global_unit
3515
+ SUBTYPE OF (Measure_item);
3516
+ lower_limit : Numerical_item_with_global_unit;
3517
+ upper_limit : Numerical_item_with_global_unit;
3518
+ END_ENTITY;
3519
+
3520
+ ENTITY Value_set
3521
+ SUBTYPE OF (Measure_item);
3522
+ values : SET [1:?] OF Measure_item;
3523
+ END_ENTITY;
3524
+
3525
+ ENTITY Value_with_tolerances
3526
+ SUBTYPE OF (Measure_item);
3527
+ item_value : Numerical_item_with_unit;
3528
+ lower_limit : REAL;
3529
+ upper_limit : REAL;
3530
+ END_ENTITY;
3531
+
3532
+ ENTITY Value_with_unit;
3533
+ unit : Unit;
3534
+ value_component : measure_value;
3535
+ END_ENTITY;
3536
+
3537
+ ENTITY View_definition_context;
3538
+ application_domain : STRING;
3539
+ life_cycle_stage : STRING;
3540
+ description : OPTIONAL STRING;
3541
+ END_ENTITY;
3542
+
3543
+ ENTITY View_definition_relationship
3544
+ ABSTRACT SUPERTYPE OF (ONEOF(Requirement_collection_relationship, Tracing_relationship, View_definition_usage));
3545
+ id : OPTIONAL STRING;
3546
+ relation_type : OPTIONAL STRING;
3547
+ description : OPTIONAL STRING;
3548
+ relating_view : Product_view_definition;
3549
+ related_view : Product_view_definition;
3550
+ END_ENTITY;
3551
+
3552
+ ENTITY View_definition_usage
3553
+ SUBTYPE OF (View_definition_relationship);
3554
+ END_ENTITY;
3555
+
3556
+ ENTITY Work_order;
3557
+ name : STRING;
3558
+ description : OPTIONAL STRING;
3559
+ in_response_to : SET OF Work_request;
3560
+ END_ENTITY;
3561
+
3562
+ ENTITY Work_output;
3563
+ name : STRING;
3564
+ description : OPTIONAL STRING;
3565
+ quantity : OPTIONAL Value_with_unit;
3566
+ output_item : OPTIONAL work_output_item;
3567
+ END_ENTITY;
3568
+
3569
+ ENTITY Work_output_assignment;
3570
+ assigned_output : Work_output;
3571
+ item : work_item;
3572
+ END_ENTITY;
3573
+
3574
+ ENTITY Work_output_relationship;
3575
+ name : STRING;
3576
+ description : OPTIONAL STRING;
3577
+ relating : Work_output;
3578
+ related : Work_output;
3579
+ END_ENTITY;
3580
+
3581
+ ENTITY Work_request;
3582
+ request_id : STRING;
3583
+ version_id : STRING;
3584
+ description : OPTIONAL STRING;
3585
+ purpose : STRING;
3586
+ END_ENTITY;
3587
+
3588
+ ENTITY Work_request_status;
3589
+ status : STRING;
3590
+ work_request : Work_request;
3591
+ END_ENTITY;
3592
+
3593
+ ENTITY Xor_state_cause_effect_definition
3594
+ SUBTYPE OF (State_cause_effect_definition);
3595
+ END_ENTITY;
3596
+
3597
+ ENTITY Zone_breakdown
3598
+ SUBTYPE OF (Breakdown);
3599
+ END_ENTITY;
3600
+
3601
+ ENTITY Zone_breakdown_context
3602
+ SUBTYPE OF (Breakdown_context);
3603
+ SELF\Breakdown_context.breakdown : Zone_breakdown_version;
3604
+ SELF\Breakdown_context.breakdown_element : Zone_element_definition;
3605
+ END_ENTITY;
3606
+
3607
+ ENTITY Zone_breakdown_version
3608
+ SUBTYPE OF (Breakdown_version);
3609
+ SELF\Breakdown_version.of_product : Zone_breakdown;
3610
+ END_ENTITY;
3611
+
3612
+ ENTITY Zone_element
3613
+ SUBTYPE OF (Breakdown_element);
3614
+ END_ENTITY;
3615
+
3616
+ ENTITY Zone_element_definition
3617
+ SUBTYPE OF (Breakdown_element_definition);
3618
+ SELF\Breakdown_element_definition.defined_version : Zone_element_version;
3619
+ END_ENTITY;
3620
+
3621
+ ENTITY Zone_element_usage
3622
+ SUBTYPE OF (Breakdown_element_usage);
3623
+ SELF\View_definition_relationship.relating_view : Zone_element_definition;
3624
+ SELF\View_definition_relationship.related_view : Zone_element_definition;
3625
+ END_ENTITY;
3626
+
3627
+ ENTITY Zone_element_version
3628
+ SUBTYPE OF (Breakdown_element_version);
3629
+ SELF\Breakdown_element_version.of_product : Zone_element;
3630
+ END_ENTITY;
3631
+
3632
+ ENTITY Content_item_selected
3633
+ SUBTYPE OF (Content_item);
3634
+ contents : message_content_item;
3635
+ END_ENTITY;
3636
+
3637
+ ENTITY Observation_item_selected
3638
+ SUBTYPE OF (Observation_item);
3639
+ contents : observation_content_item;
3640
+ END_ENTITY;
3641
+
3642
+ FUNCTION types_of_product (obj : Product):SET OF STRING;
3643
+ LOCAL
3644
+ category_assignments : BAG OF Product_category_assignment;
3645
+ categories : SET OF STRING := [];
3646
+ i : INTEGER;
3647
+ END_LOCAL;
3648
+
3649
+ category_assignments := USEDIN(obj, 'AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.PRODUCT_CATEGORY_ASSIGNMENT.PRODUCTS');
3650
+ REPEAT i := LOINDEX(category_assignments) TO HIINDEX(category_assignments);
3651
+ categories := categories + category_assignments[i].category.name;
3652
+ END_REPEAT;
3653
+ RETURN (categories);
3654
+ END_FUNCTION;
3655
+
3656
+ FUNCTION valid_document_property_representation (rep : Document_property_representation):LOGICAL;
3657
+ CASE rep.name OF
3658
+ 'document content':
3659
+ BEGIN
3660
+ RETURN (SIZEOF(QUERY(items <* rep\Representation.items | NOT (items.name IN ['detail level', 'geometry type', 'real world scale']))) = 0);
3661
+ END;
3662
+ 'document creation':
3663
+ BEGIN
3664
+ IF NOT (SIZEOF(QUERY(items <* rep\Representation.items | NOT (items.name IN ['creating interface', 'creating system', 'operating system']))) = 0) THEN
3665
+ RETURN (FALSE);
3666
+ END_IF;
3667
+ IF NOT (SIZEOF(QUERY(items <* rep\Representation.items | NOT (items.name IN ['creating system']))) = 1) THEN
3668
+ RETURN (FALSE);
3669
+ ELSE
3670
+ RETURN (TRUE);
3671
+ END_IF;
3672
+ END;
3673
+ 'document format':
3674
+ BEGIN
3675
+ RETURN (SIZEOF(QUERY(items <* rep\Representation.items | NOT (items.name IN ['character code', 'data format', 'size format', 'size format standard']))) = 0);
3676
+ END;
3677
+ 'document size':
3678
+ BEGIN
3679
+ RETURN (SIZEOF(QUERY(items <* rep\Representation.items | NOT (items.name IN ['file size', 'page count']))) = 0);
3680
+ END;
3681
+ OTHERWISE:
3682
+ RETURN (UNKNOWN);
3683
+ END_CASE;
3684
+ END_FUNCTION;
3685
+
3686
+ RULE document_definition_constraint FOR (Product_view_definition);
3687
+
3688
+ WHERE
3689
+ WR1: SIZEOF(QUERY(dd <* Product_view_definition | (NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'DOCUMENT_DEFINITION' IN TYPEOF(dd))) AND ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'DOCUMENT_VERSION' IN TYPEOF(dd.defined_version)))) = 0;
3690
+ END_RULE;
3691
+
3692
+ RULE document_version_constraint FOR (Product_version);
3693
+
3694
+ WHERE
3695
+ WR1: SIZEOF(QUERY(pv <* Product_version | (NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'DOCUMENT_VERSION' IN TYPEOF(pv))) AND ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'DOCUMENT' IN TYPEOF(pv.of_product)))) = 0;
3696
+ END_RULE;
3697
+
3698
+ RULE part_version_constraint FOR (Product_version);
3699
+
3700
+ WHERE
3701
+ WR1: SIZEOF(QUERY(pv <* Product_version | NOT ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'PART_VERSION' IN TYPEOF(pv)) AND ('AP239_PRODUCT_LIFE_CYCLE_SUPPORT_ARM_LF.' + 'PART' IN TYPEOF(pv.of_product)))) = 0;
3702
+ END_RULE;
3703
+
3704
+ RULE part_view_definition_constraint FOR (Product_view_definition);
3705
+
3706
+ WHERE
3707
+ WR1: SIZEOF(QUERY(pvd <* Product_view_definition | (NOT ('PART_VIEW_DEFINITION_ARM.' + 'PART_VIEW_DEFINITION' IN TYPEOF(pvd))) AND ('PART_VIEW_DEFINITION_ARM.' + 'PART_VERSION' IN TYPEOF(pvd.defined_version)))) = 0;
3708
+ END_RULE;
3709
+
3710
+ END_SCHEMA;