@blockml/bom 0.9.3 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/blocks/org/blockml/bml/bom/Library.bml +20 -28
  2. package/blocks/org/blockml/bml/bom/README.bml +14 -21
  3. package/blocks/org/blockml/bml/bom/UrmodellType.bml +16 -20
  4. package/blocks/org/blockml/bml/bom/api/ParseOptions.bml +19 -20
  5. package/blocks/org/blockml/bml/bom/api/ParseResult.bml +22 -21
  6. package/blocks/org/blockml/bml/bom/api/SerializeOptions.bml +19 -20
  7. package/blocks/org/blockml/bml/bom/api/SerializeResult.bml +22 -21
  8. package/blocks/org/blockml/bml/bom/api/TypeRegistryReader.bml +13 -17
  9. package/blocks/org/blockml/bml/bom/api/ValidateOptions.bml +25 -22
  10. package/blocks/org/blockml/bml/bom/api/ValidateResult.bml +22 -21
  11. package/blocks/org/blockml/bml/bom/block/AliasEntry.bml +28 -23
  12. package/blocks/org/blockml/bml/bom/block/BlockDefinition.bml +142 -57
  13. package/blocks/org/blockml/bml/bom/block/ChangelogEntry.bml +25 -22
  14. package/blocks/org/blockml/bml/bom/block/DocumentationExample.bml +34 -25
  15. package/blocks/org/blockml/bml/bom/block/DocumentationProseEntry.bml +28 -23
  16. package/blocks/org/blockml/bml/bom/block/DocumentationReference.bml +52 -31
  17. package/blocks/org/blockml/bml/bom/block/GenericType.bml +22 -21
  18. package/blocks/org/blockml/bml/bom/block/KeywordEntry.bml +28 -23
  19. package/blocks/org/blockml/bml/bom/block/TypeReferenceEntityInstance.bml +22 -21
  20. package/blocks/org/blockml/bml/bom/capability/BomEquals.bml +22 -21
  21. package/blocks/org/blockml/bml/bom/capability/StripProvenance.bml +19 -20
  22. package/blocks/org/blockml/bml/bom/common/CharacterDataForm.bml +16 -19
  23. package/blocks/org/blockml/bml/bom/common/Diagnostic.bml +25 -22
  24. package/blocks/org/blockml/bml/bom/common/DiagnosticSeverity.bml +16 -19
  25. package/blocks/org/blockml/bml/bom/common/EmptyElementForm.bml +16 -19
  26. package/blocks/org/blockml/bml/bom/common/HostValue.bml +13 -17
  27. package/blocks/org/blockml/bml/bom/common/MemberSectionName.bml +16 -19
  28. package/blocks/org/blockml/bml/bom/common/MetadataElementTrivia.bml +16 -19
  29. package/blocks/org/blockml/bml/bom/common/SourceInfo.bml +35 -23
  30. package/blocks/org/blockml/bml/bom/common/SourceLocation.bml +28 -23
  31. package/blocks/org/blockml/bml/bom/common/UnknownXmlNode.bml +28 -23
  32. package/blocks/org/blockml/bml/bom/common/XmlNodeKind.bml +16 -19
  33. package/blocks/org/blockml/bml/bom/common/XmlRenderingBlock.bml +16 -19
  34. package/blocks/org/blockml/bml/bom/common/XmlRenderingMember.bml +25 -22
  35. package/blocks/org/blockml/bml/bom/common/XmlTrivia.bml +19 -20
  36. package/blocks/org/blockml/bml/bom/composition/BlockInstance.bml +55 -32
  37. package/blocks/org/blockml/bml/bom/composition/BlockInstanceNode.bml +25 -22
  38. package/blocks/org/blockml/bml/bom/composition/CompositionNode.bml +16 -19
  39. package/blocks/org/blockml/bml/bom/composition/CompositionTemplate.bml +28 -23
  40. package/blocks/org/blockml/bml/bom/composition/DirectiveAttribute.bml +16 -19
  41. package/blocks/org/blockml/bml/bom/composition/EachDirective.bml +25 -22
  42. package/blocks/org/blockml/bml/bom/composition/GenericsBinding.bml +26 -23
  43. package/blocks/org/blockml/bml/bom/composition/IfDirective.bml +19 -20
  44. package/blocks/org/blockml/bml/bom/composition/InstanceAggregationComposition.bml +22 -21
  45. package/blocks/org/blockml/bml/bom/composition/UnlessDirective.bml +19 -20
  46. package/blocks/org/blockml/bml/bom/composition/VirtualContainerNode.bml +28 -23
  47. package/blocks/org/blockml/bml/bom/composition/WithBinding.bml +19 -20
  48. package/blocks/org/blockml/bml/bom/composition/WithDirective.bml +19 -20
  49. package/blocks/org/blockml/bml/bom/document/BomDocument.bml +25 -23
  50. package/blocks/org/blockml/bml/bom/documentation/AbstractionPrinciple.bml +16 -21
  51. package/blocks/org/blockml/bml/bom/documentation/ArchitectureOverview.bml +16 -21
  52. package/blocks/org/blockml/bml/bom/documentation/AuthoredSurfaceTable.bml +14 -17
  53. package/blocks/org/blockml/bml/bom/documentation/CalibratorExample.bml +19 -24
  54. package/blocks/org/blockml/bml/bom/documentation/CompositionDirectives.bml +16 -21
  55. package/blocks/org/blockml/bml/bom/documentation/DesignDecisions.bml +25 -29
  56. package/blocks/org/blockml/bml/bom/documentation/InstanceIdRules.bml +18 -22
  57. package/blocks/org/blockml/bml/bom/documentation/Introduction.bml +16 -21
  58. package/blocks/org/blockml/bml/bom/documentation/LayerSeparation.bml +17 -22
  59. package/blocks/org/blockml/bml/bom/documentation/MemberValueSemantics.bml +17 -22
  60. package/blocks/org/blockml/bml/bom/documentation/PackageOwnership.bml +24 -28
  61. package/blocks/org/blockml/bml/bom/documentation/PublicApi.bml +24 -27
  62. package/blocks/org/blockml/bml/bom/documentation/RelatedDiagnostics.bml +15 -19
  63. package/blocks/org/blockml/bml/bom/documentation/ScopeExclusions.bml +16 -20
  64. package/blocks/org/blockml/bml/bom/documentation/SubBlockAndEmbeddedBlocks.bml +17 -21
  65. package/blocks/org/blockml/bml/bom/documentation/TypeExpressionsOverview.bml +17 -22
  66. package/blocks/org/blockml/bml/bom/documentation/ValidationResponsibilities.bml +16 -21
  67. package/blocks/org/blockml/bml/bom/documentation/VersionRules.bml +16 -20
  68. package/blocks/org/blockml/bml/bom/documentation/XmlComments.bml +17 -21
  69. package/blocks/org/blockml/bml/bom/member/AggregationDefinition.bml +34 -25
  70. package/blocks/org/blockml/bml/bom/member/AssociationDefinition.bml +22 -21
  71. package/blocks/org/blockml/bml/bom/member/CapabilityDefinition.bml +37 -26
  72. package/blocks/org/blockml/bml/bom/member/ConstrainableDefinition.bml +16 -19
  73. package/blocks/org/blockml/bml/bom/member/EmbeddedExpression.bml +22 -21
  74. package/blocks/org/blockml/bml/bom/member/ImplementationBlock.bml +28 -23
  75. package/blocks/org/blockml/bml/bom/member/MemberDefinition.bml +16 -19
  76. package/blocks/org/blockml/bml/bom/member/MemberDefinitionBase.bml +79 -40
  77. package/blocks/org/blockml/bml/bom/member/PropertyDefinition.bml +37 -26
  78. package/blocks/org/blockml/bml/bom/member/PropertyValueEntry.bml +18 -21
  79. package/blocks/org/blockml/bml/bom/type/AnonymousStructType.bml +19 -20
  80. package/blocks/org/blockml/bml/bom/type/GenericParameterReference.bml +19 -20
  81. package/blocks/org/blockml/bml/bom/type/GroupedTypeExpression.bml +22 -21
  82. package/blocks/org/blockml/bml/bom/type/InstanceConfiguration.bml +19 -20
  83. package/blocks/org/blockml/bml/bom/type/Multiplicity.bml +19 -20
  84. package/blocks/org/blockml/bml/bom/type/NamedTypeReference.bml +28 -23
  85. package/blocks/org/blockml/bml/bom/type/SelfTypeReference.bml +16 -19
  86. package/blocks/org/blockml/bml/bom/type/StructField.bml +19 -20
  87. package/blocks/org/blockml/bml/bom/type/TypeDescriptor.bml +14 -19
  88. package/blocks/org/blockml/bml/bom/type/TypeExpression.bml +16 -19
  89. package/blocks/org/blockml/bml/bom/type/UnionTypeExpression.bml +19 -20
  90. package/blocks/org/blockml/bml/bom/value/Address.bml +31 -24
  91. package/blocks/org/blockml/bml/bom/value/AddressValue.bml +19 -20
  92. package/blocks/org/blockml/bml/bom/value/ExpressionValue.bml +25 -22
  93. package/blocks/org/blockml/bml/bom/value/InterpolatedTextValue.bml +26 -22
  94. package/blocks/org/blockml/bml/bom/value/LiteralValue.bml +25 -22
  95. package/blocks/org/blockml/bml/bom/value/MemberValue.bml +16 -19
  96. package/dist/types/block-definition.d.ts +10 -0
  97. package/dist/types/block-definition.d.ts.map +1 -1
  98. package/dist/types/common.d.ts +6 -0
  99. package/dist/types/common.d.ts.map +1 -1
  100. package/package.json +2 -2
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — GenericType
3
- FQN: org.blockml.bml.bom.block.GenericType
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — GenericType
2
+ FQN: org.blockml.bml.bom.block.GenericType-->
3
+ <bomblock:GenericType xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,23 +17,30 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>GenericType</name>
27
- <type>bomblock:GenericType</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Generic type parameter on a Block definition</is>
30
-
31
- <documentation>Generic type parameter on a Block definition</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Generic type parameter on a Block definition
25
+ </is>
26
+ <documentation>
27
+ Generic type parameter on a Block definition
28
+ </documentation>
33
29
  <properties>
34
30
  <name type="type:Text">
35
- <documentation>name (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ name (required). TS type: type:Text.
33
+ </documentation>
36
34
  </name>
37
35
  <baseType type="type:Text">
38
- <documentation>baseType (required). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ baseType (required). TS type: type:Text.
38
+ </documentation>
39
39
  </baseType>
40
40
  <defaultType type="type:Text">
41
- <documentation>defaultType (optional). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ defaultType (optional). TS type: type:Text.
43
+ </documentation>
42
44
  </defaultType>
43
45
  </properties>
44
-
45
- </block>
46
+ </bomblock:GenericType>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — KeywordEntry
3
- FQN: org.blockml.bml.bom.block.KeywordEntry
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — KeywordEntry
2
+ FQN: org.blockml.bml.bom.block.KeywordEntry-->
3
+ <bomblock:KeywordEntry xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,29 +17,40 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>KeywordEntry</name>
27
- <type>bomblock:KeywordEntry</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Keyword Entity instance in BOM</is>
30
-
31
- <documentation>Keyword Entity instance in BOM</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Keyword Entity instance in BOM
25
+ </is>
26
+ <documentation>
27
+ Keyword Entity instance in BOM
28
+ </documentation>
33
29
  <properties>
34
30
  <typeFqn type="type:Text">
35
- <documentation>typeFqn (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ typeFqn (required). TS type: type:Text.
33
+ </documentation>
36
34
  </typeFqn>
37
35
  <term type="type:Text">
38
- <documentation>term (optional). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ term (optional). TS type: type:Text.
38
+ </documentation>
39
39
  </term>
40
40
  <languageFqn type="type:Text">
41
- <documentation>languageFqn (optional). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ languageFqn (optional). TS type: type:Text.
43
+ </documentation>
42
44
  </languageFqn>
43
45
  <weight type="type:Decimal">
44
- <documentation>weight (optional). TS type: type:Decimal.</documentation>
46
+ <documentation>
47
+ weight (optional). TS type: type:Decimal.
48
+ </documentation>
45
49
  </weight>
46
50
  <source type="bomcommon:SourceLocation">
47
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
51
+ <documentation>
52
+ source (optional). TS type: bomcommon:SourceLocation.
53
+ </documentation>
48
54
  </source>
49
55
  </properties>
50
-
51
- </block>
56
+ </bomblock:KeywordEntry>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — TypeReferenceEntityInstance
3
- FQN: org.blockml.bml.bom.block.TypeReferenceEntityInstance
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — TypeReferenceEntityInstance
2
+ FQN: org.blockml.bml.bom.block.TypeReferenceEntityInstance-->
3
+ <bomblock:TypeReferenceEntityInstance xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,23 +17,30 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>TypeReferenceEntityInstance</name>
27
- <type>bomblock:TypeReferenceEntityInstance</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>BOM shape for TypeReferenceEntity instances</is>
30
-
31
- <documentation>typeFqn is always "org.blockml.bml.type.TypeReferenceEntity".</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ BOM shape for TypeReferenceEntity instances
25
+ </is>
26
+ <documentation>
27
+ typeFqn is always "org.blockml.bml.type.TypeReferenceEntity".
28
+ </documentation>
33
29
  <properties>
34
30
  <typeFqn type="type:Text">
35
- <documentation>typeFqn (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ typeFqn (required). TS type: type:Text.
33
+ </documentation>
36
34
  </typeFqn>
37
35
  <value type="type:Text">
38
- <documentation>value (required). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ value (required). TS type: type:Text.
38
+ </documentation>
39
39
  </value>
40
40
  <boundB type="type:Text">
41
- <documentation>boundB (optional). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ boundB (optional). TS type: type:Text.
43
+ </documentation>
42
44
  </boundB>
43
45
  </properties>
44
-
45
- </block>
46
+ </bomblock:TypeReferenceEntityInstance>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — BomEquals
3
- FQN: org.blockml.bml.bom.capability.BomEquals
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — BomEquals
2
+ FQN: org.blockml.bml.bom.capability.BomEquals-->
3
+ <bomcap:BomEquals xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,23 +17,30 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>BomEquals</name>
27
- <type>bomcap:BomEquals</type>
28
- <baseType>core:Capability</baseType>
29
- <is>Structural equality modulo provenance (B20)</is>
30
-
31
- <documentation>deepEqual(stripProvenance(a), stripProvenance(b)). Roundtrip gate for BML → BOM → BML tests.</documentation>
32
-
20
+ <baseType>
21
+ core:Capability
22
+ </baseType>
23
+ <is>
24
+ Structural equality modulo provenance (B20)
25
+ </is>
26
+ <documentation>
27
+ deepEqual(stripProvenance(a), stripProvenance(b)). Roundtrip gate for BML → BOM → BML tests.
28
+ </documentation>
33
29
  <properties>
34
30
  <inputA type="bomdoc:BomDocument">
35
- <documentation>inputA (required). TS type: bomdoc:BomDocument.</documentation>
31
+ <documentation>
32
+ inputA (required). TS type: bomdoc:BomDocument.
33
+ </documentation>
36
34
  </inputA>
37
35
  <inputB type="bomdoc:BomDocument">
38
- <documentation>inputB (required). TS type: bomdoc:BomDocument.</documentation>
36
+ <documentation>
37
+ inputB (required). TS type: bomdoc:BomDocument.
38
+ </documentation>
39
39
  </inputB>
40
40
  <output type="type:Boolean">
41
- <documentation>output (required). TS type: type:Boolean.</documentation>
41
+ <documentation>
42
+ output (required). TS type: type:Boolean.
43
+ </documentation>
42
44
  </output>
43
45
  </properties>
44
-
45
- </block>
46
+ </bomcap:BomEquals>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — StripProvenance
3
- FQN: org.blockml.bml.bom.capability.StripProvenance
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — StripProvenance
2
+ FQN: org.blockml.bml.bom.capability.StripProvenance-->
3
+ <bomcap:StripProvenance xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,20 +17,25 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>StripProvenance</name>
27
- <type>bomcap:StripProvenance</type>
28
- <baseType>core:Capability</baseType>
29
- <is>Deep-clone omitting provenance keys (B20)</is>
30
-
31
- <documentation>Removes sourceLocation, endLine, endColumn, SourceLocation-shaped fields (source, typeSource, baseTypeSource), and SourceInfo recursively. Preserves ImplementationBlock.source (implementation code body). Reference: packages/bom/src/equals.ts.</documentation>
32
-
20
+ <baseType>
21
+ core:Capability
22
+ </baseType>
23
+ <is>
24
+ Deep-clone omitting provenance keys (B20)
25
+ </is>
26
+ <documentation>
27
+ Removes sourceLocation, endLine, endColumn, SourceLocation-shaped fields (source, typeSource, baseTypeSource), and SourceInfo recursively. Preserves ImplementationBlock.source (implementation code body). Reference: packages/bom/src/equals.ts.
28
+ </documentation>
33
29
  <properties>
34
30
  <input type="bomcommon:HostValue">
35
- <documentation>BML type gap: TS generic T. Deep-clone input. (required)</documentation>
31
+ <documentation>
32
+ BML type gap: TS generic T. Deep-clone input. (required)
33
+ </documentation>
36
34
  </input>
37
35
  <output type="bomcommon:HostValue">
38
- <documentation>BML type gap: TS generic T. Deep-clone without provenance. (required)</documentation>
36
+ <documentation>
37
+ BML type gap: TS generic T. Deep-clone without provenance. (required)
38
+ </documentation>
39
39
  </output>
40
40
  </properties>
41
-
42
- </block>
41
+ </bomcap:StripProvenance>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — CharacterDataForm
3
- FQN: org.blockml.bml.bom.common.CharacterDataForm
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — CharacterDataForm
2
+ FQN: org.blockml.bml.bom.common.CharacterDataForm-->
3
+ <bomcommon:CharacterDataForm xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,17 +17,20 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>CharacterDataForm</name>
27
- <type>bomcommon:CharacterDataForm</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Authored character data form (D8)</is>
30
-
31
- <documentation>String-literal union: "text" | "cdata".</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Authored character data form (D8)
25
+ </is>
26
+ <documentation>
27
+ String-literal union: "text" | "cdata".
28
+ </documentation>
33
29
  <properties>
34
30
  <value type="type:Text">
35
- <documentation>value (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ value (required). TS type: type:Text.
33
+ </documentation>
36
34
  </value>
37
35
  </properties>
38
-
39
- </block>
36
+ </bomcommon:CharacterDataForm>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — Diagnostic
3
- FQN: org.blockml.bml.bom.common.Diagnostic
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — Diagnostic
2
+ FQN: org.blockml.bml.bom.common.Diagnostic-->
3
+ <bomcommon:Diagnostic xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,26 +17,35 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>Diagnostic</name>
27
- <type>bomcommon:Diagnostic</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Compiler result diagnostic (B26)</is>
30
-
31
- <documentation>Shared with ParseResult and SerializeResult. Distinct from org.blockml.bml.core.Diagnostic.</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Compiler result diagnostic (B26)
25
+ </is>
26
+ <documentation>
27
+ Shared with ParseResult and SerializeResult. Distinct from org.blockml.bml.core.Diagnostic.
28
+ </documentation>
33
29
  <properties>
34
30
  <severity type="bomcommon:DiagnosticSeverity">
35
- <documentation>severity (required). TS type: bomcommon:DiagnosticSeverity.</documentation>
31
+ <documentation>
32
+ severity (required). TS type: bomcommon:DiagnosticSeverity.
33
+ </documentation>
36
34
  </severity>
37
35
  <code type="type:Text">
38
- <documentation>code (required). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ code (required). TS type: type:Text.
38
+ </documentation>
39
39
  </code>
40
40
  <message type="type:Text">
41
- <documentation>message (required). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ message (required). TS type: type:Text.
43
+ </documentation>
42
44
  </message>
43
45
  <source type="bomcommon:SourceLocation">
44
- <documentation>source (required). TS type: bomcommon:SourceLocation.</documentation>
46
+ <documentation>
47
+ source (required). TS type: bomcommon:SourceLocation.
48
+ </documentation>
45
49
  </source>
46
50
  </properties>
47
-
48
- </block>
51
+ </bomcommon:Diagnostic>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — DiagnosticSeverity
3
- FQN: org.blockml.bml.bom.common.DiagnosticSeverity
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — DiagnosticSeverity
2
+ FQN: org.blockml.bml.bom.common.DiagnosticSeverity-->
3
+ <bomcommon:DiagnosticSeverity xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,17 +17,20 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>DiagnosticSeverity</name>
27
- <type>bomcommon:DiagnosticSeverity</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Compiler diagnostic severity</is>
30
-
31
- <documentation>String-literal union: "error" | "warning" | "info" | "recommendation". Distinct from org.blockml.bml.core.Diagnostic BML branch.</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Compiler diagnostic severity
25
+ </is>
26
+ <documentation>
27
+ String-literal union: "error" | "warning" | "info" | "recommendation". Distinct from org.blockml.bml.core.Diagnostic BML branch.
28
+ </documentation>
33
29
  <properties>
34
30
  <value type="type:Text">
35
- <documentation>value (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ value (required). TS type: type:Text.
33
+ </documentation>
36
34
  </value>
37
35
  </properties>
38
-
39
- </block>
36
+ </bomcommon:DiagnosticSeverity>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — EmptyElementForm
3
- FQN: org.blockml.bml.bom.common.EmptyElementForm
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — EmptyElementForm
2
+ FQN: org.blockml.bml.bom.common.EmptyElementForm-->
3
+ <bomcommon:EmptyElementForm xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,17 +17,20 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>EmptyElementForm</name>
27
- <type>bomcommon:EmptyElementForm</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Authored empty-element form (paired vs self-closing)</is>
30
-
31
- <documentation>String-literal union: "selfClosing" | "paired". Recorded on empty elements such as documentation see references.</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Authored empty-element form (paired vs self-closing)
25
+ </is>
26
+ <documentation>
27
+ String-literal union: "selfClosing" | "paired". Recorded on empty elements such as documentation see references.
28
+ </documentation>
33
29
  <properties>
34
30
  <value type="type:Text">
35
- <documentation>value (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ value (required). TS type: type:Text.
33
+ </documentation>
36
34
  </value>
37
35
  </properties>
38
-
39
- </block>
36
+ </bomcommon:EmptyElementForm>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — HostValue
3
- FQN: org.blockml.bml.bom.common.HostValue
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — HostValue
2
+ FQN: org.blockml.bml.bom.common.HostValue-->
3
+ <bomcommon:HostValue xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,11 +17,13 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>HostValue</name>
27
- <type>bomcommon:HostValue</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Opaque host value for provenance-stripping</is>
30
-
31
- <documentation>BML type gap: stands for TypeScript generic T / unknown. Deep-clone of any BOM-shaped graph; Core has no host-value type.</documentation>
32
-
33
- </block>
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Opaque host value for provenance-stripping
25
+ </is>
26
+ <documentation>
27
+ BML type gap: stands for TypeScript generic T / unknown. Deep-clone of any BOM-shaped graph; Core has no host-value type.
28
+ </documentation>
29
+ </bomcommon:HostValue>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — MemberSectionName
3
- FQN: org.blockml.bml.bom.common.MemberSectionName
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — MemberSectionName
2
+ FQN: org.blockml.bml.bom.common.MemberSectionName-->
3
+ <bomcommon:MemberSectionName xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,17 +17,20 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>MemberSectionName</name>
27
- <type>bomcommon:MemberSectionName</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Member container section identifier</is>
30
-
31
- <documentation>String-literal union: "properties" | "aggregations" | "associations" | "capabilities".</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Member container section identifier
25
+ </is>
26
+ <documentation>
27
+ String-literal union: "properties" | "aggregations" | "associations" | "capabilities".
28
+ </documentation>
33
29
  <properties>
34
30
  <value type="type:Text">
35
- <documentation>value (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ value (required). TS type: type:Text.
33
+ </documentation>
36
34
  </value>
37
35
  </properties>
38
-
39
- </block>
36
+ </bomcommon:MemberSectionName>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — MetadataElementTrivia
3
- FQN: org.blockml.bml.bom.common.MetadataElementTrivia
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — MetadataElementTrivia
2
+ FQN: org.blockml.bml.bom.common.MetadataElementTrivia-->
3
+ <bomcommon:MetadataElementTrivia xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,17 +17,20 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>MetadataElementTrivia</name>
27
- <type>bomcommon:MetadataElementTrivia</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>XML trivia keyed by metadata child localName</is>
30
-
31
- <documentation>Map: metadata element localName → XmlTrivia.</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ XML trivia keyed by metadata child localName
25
+ </is>
26
+ <documentation>
27
+ Map: metadata element localName → XmlTrivia.
28
+ </documentation>
33
29
  <properties>
34
30
  <entries type="bomcommon:XmlTrivia">
35
- <documentation>Record&lt;string, XmlTrivia>. (optional)</documentation>
31
+ <documentation>
32
+ Record&lt;string, XmlTrivia>. (optional)
33
+ </documentation>
36
34
  </entries>
37
35
  </properties>
38
-
39
- </block>
36
+ </bomcommon:MetadataElementTrivia>