@blockml/xsd-target 0.9.4 → 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.
- package/blocks/org/blockml/bml/target/xsd/Library.bml +19 -26
- package/blocks/org/blockml/bml/target/xsd/README.bml +14 -21
- package/blocks/org/blockml/bml/target/xsd/XsdType.bml +16 -18
- package/blocks/org/blockml/bml/target/xsd/api/CatalogEntry.bml +20 -18
- package/blocks/org/blockml/bml/target/xsd/api/XsdOptions.bml +23 -19
- package/blocks/org/blockml/bml/target/xsd/api/XsdRenderOutput.bml +23 -19
- package/blocks/org/blockml/bml/target/xsd/capability/CatalogRelativePath.bml +22 -21
- package/blocks/org/blockml/bml/target/xsd/capability/EmitBlockXsd.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/EmitCatalogXml.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/EmitServiceXsd.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/EmitTypesXsd.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/ExtraElementNames.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/MemberPrefersElement.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/Render.bml +22 -22
- package/blocks/org/blockml/bml/target/xsd/capability/ResolveOptions.bml +19 -21
- package/blocks/org/blockml/bml/target/xsd/capability/VocabularyElements.bml +22 -21
- package/blocks/org/blockml/bml/target/xsd/config/DefaultXsdOptions.bml +20 -18
- package/blocks/org/blockml/bml/target/xsd/config/XsdConstants.bml +63 -27
- package/blocks/org/blockml/bml/target/xsd/documentation/ArchitectureOverview.bml +15 -19
- package/blocks/org/blockml/bml/target/xsd/documentation/CatalogAndOutputLayout.bml +16 -20
- package/blocks/org/blockml/bml/target/xsd/documentation/DesignDecisions.bml +11 -17
- package/blocks/org/blockml/bml/target/xsd/documentation/Diagnostics.bml +13 -19
- package/blocks/org/blockml/bml/target/xsd/documentation/DomainVocabularyRules.bml +14 -20
- package/blocks/org/blockml/bml/target/xsd/documentation/Introduction.bml +17 -21
- package/blocks/org/blockml/bml/target/xsd/documentation/LayerSeparation.bml +15 -19
- package/blocks/org/blockml/bml/target/xsd/documentation/PackageOwnership.bml +15 -19
- package/blocks/org/blockml/bml/target/xsd/documentation/ParticleMappingRules.bml +16 -20
- package/blocks/org/blockml/bml/target/xsd/documentation/PublicApi.bml +15 -19
- package/blocks/org/blockml/bml/target/xsd/documentation/ScopeExclusions.bml +14 -18
- package/blocks/org/blockml/bml/target/xsd/documentation/V1Scope.bml +15 -19
- package/package.json +5 -5
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Render Target Library
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.Library-->
|
|
3
|
+
<xsd:Library xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -21,44 +15,44 @@
|
|
|
21
15
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
22
16
|
xmlns:type="org.blockml.bml.type">
|
|
23
17
|
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<is>
|
|
28
|
-
|
|
18
|
+
<baseType>
|
|
19
|
+
core:BlockLibrary
|
|
20
|
+
</baseType>
|
|
21
|
+
<is>
|
|
22
|
+
The XSD schema render target library catalog
|
|
23
|
+
</is>
|
|
24
|
+
<version>
|
|
25
|
+
0.9.5
|
|
26
|
+
</version>
|
|
29
27
|
<documentation>
|
|
30
28
|
Canonical XSD specification for BlockML — registry name xsd, bml.xsd particles,
|
|
31
29
|
domain vocabularies, catalog.xml (XSD1–XSD18). TypeScript in
|
|
32
30
|
packages/xsd-target/src/ implements this library. Membership is defined
|
|
33
31
|
exclusively by this blocks list.
|
|
34
32
|
</documentation>
|
|
35
|
-
|
|
36
|
-
<version>0.9.4</version>
|
|
37
|
-
|
|
38
33
|
<language>
|
|
39
|
-
<English />
|
|
34
|
+
<blockml:language.English />
|
|
40
35
|
</language>
|
|
41
|
-
|
|
42
36
|
<properties>
|
|
43
37
|
<description override="true">
|
|
44
38
|
<value>XSD render target library</value>
|
|
45
39
|
</description>
|
|
46
40
|
</properties>
|
|
47
|
-
|
|
48
41
|
<aggregations>
|
|
49
|
-
<readMe>
|
|
42
|
+
<readMe override="true">
|
|
50
43
|
<composition>
|
|
51
44
|
<xsd:README />
|
|
52
45
|
</composition>
|
|
53
46
|
</readMe>
|
|
54
|
-
<dependencies>
|
|
47
|
+
<dependencies override="true">
|
|
55
48
|
<composition>
|
|
56
49
|
<blockml:Library />
|
|
57
50
|
<bom:Library />
|
|
58
51
|
</composition>
|
|
59
52
|
</dependencies>
|
|
60
|
-
<blocks>
|
|
61
|
-
<composition
|
|
53
|
+
<blocks override="true">
|
|
54
|
+
<composition>
|
|
55
|
+
<xsd:XsdType />
|
|
62
56
|
<xsdapi:XsdOptions />
|
|
63
57
|
<xsdapi:XsdRenderOutput />
|
|
64
58
|
<xsdapi:CatalogEntry />
|
|
@@ -89,5 +83,4 @@
|
|
|
89
83
|
</composition>
|
|
90
84
|
</blocks>
|
|
91
85
|
</aggregations>
|
|
92
|
-
|
|
93
|
-
</block>
|
|
86
|
+
</xsd:Library>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Render Target — README
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.README-->
|
|
3
|
+
<xsd:README xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -21,36 +15,35 @@
|
|
|
21
15
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
22
16
|
xmlns:type="org.blockml.bml.type">
|
|
23
17
|
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<is>
|
|
28
|
-
|
|
18
|
+
<baseType>
|
|
19
|
+
core:ReadMe
|
|
20
|
+
</baseType>
|
|
21
|
+
<is>
|
|
22
|
+
Reading entry for the XSD render target library
|
|
23
|
+
</is>
|
|
29
24
|
<documentation>
|
|
30
25
|
The @blockml/xsd-target package implements RenderTarget name xsd.
|
|
31
26
|
This library (org.blockml.bml.target.xsd.*) is the SSOT; TypeScript in
|
|
32
27
|
packages/xsd-target/src/ implements it. Tests in packages/xsd-target/test/
|
|
33
28
|
verify behavioral contracts.
|
|
34
|
-
|
|
29
|
+
|
|
35
30
|
Start reading at org.blockml.bml.target.xsd.documentation.Introduction (ReadNext chain).
|
|
36
|
-
|
|
31
|
+
|
|
37
32
|
V1: emit universal bml.xsd (D1 lists + Definition extras), optional types.xsd /
|
|
38
33
|
service.xsd string vocabularies, and root catalog.xml. Generated schema is
|
|
39
34
|
non-authoritative; authoring validity is parse + validate, not this target.
|
|
40
|
-
|
|
35
|
+
|
|
41
36
|
Layer separation:
|
|
42
37
|
• Definition / docs 19 — bml:xml particle grammar
|
|
43
38
|
• org.blockml.bml.target.xsd.* (this library) — schema and catalog emit
|
|
44
39
|
• org.blockml.bml.cli.* — outDir, write, validation escape hatch
|
|
45
|
-
|
|
40
|
+
|
|
46
41
|
Modules: documentation, api/config, capability.
|
|
47
42
|
</documentation>
|
|
48
|
-
|
|
49
43
|
<references>
|
|
50
44
|
<see type="xsddocumentation:Introduction" relation="ReadFirst" />
|
|
51
45
|
<see type="xsddocumentation:DesignDecisions" relation="SeeAlso" />
|
|
52
46
|
<see type="xsddocumentation:PublicApi" relation="SeeAlso" />
|
|
53
47
|
<see type="xsdcap:Render" relation="SeeAlso" />
|
|
54
48
|
</references>
|
|
55
|
-
|
|
56
|
-
</block>
|
|
49
|
+
</xsd:README>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD — XsdType
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.XsdType-->
|
|
3
|
+
<xsd:XsdType xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,12 +14,16 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<
|
|
30
|
-
|
|
31
|
-
</
|
|
17
|
+
<baseType>
|
|
18
|
+
core:Entity
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Abstract marker for XSD target implementation data-structure blocks
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
All org.blockml.bml.target.xsd.api|config.* types extend this marker. Distinct from bom:UrmodellType and core:Capability.
|
|
25
|
+
</documentation>
|
|
26
|
+
<abstract>
|
|
27
|
+
true
|
|
28
|
+
</abstract>
|
|
29
|
+
</xsd:XsdType>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD API — CatalogEntry
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.api.CatalogEntry-->
|
|
3
|
+
<xsdapi:CatalogEntry xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,14 +14,22 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
xsd:XsdType
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
One OASIS catalog uri mapping
|
|
22
|
+
</is>
|
|
28
23
|
<properties>
|
|
29
|
-
<namespaceUri type="type:Text"
|
|
30
|
-
|
|
24
|
+
<namespaceUri type="type:Text">
|
|
25
|
+
<documentation>
|
|
26
|
+
XML namespace URI (catalog name attribute). (required)
|
|
27
|
+
</documentation>
|
|
28
|
+
</namespaceUri>
|
|
29
|
+
<relativePath type="type:Text">
|
|
30
|
+
<documentation>
|
|
31
|
+
Relative schema path e.g. ./schemas/bml.xsd. (required)
|
|
32
|
+
</documentation>
|
|
33
|
+
</relativePath>
|
|
31
34
|
</properties>
|
|
32
|
-
|
|
33
|
-
</block>
|
|
35
|
+
</xsdapi:CatalogEntry>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD API — XsdOptions
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.api.XsdOptions-->
|
|
3
|
+
<xsdapi:XsdOptions xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,19 +14,29 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
xsd:XsdType
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Opaque targetOptions payload for registry name xsd
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
XSD15: emitDomainSchemas default true. XSD16: includeNonExported reserved unused for V1 emit.
|
|
25
|
+
</documentation>
|
|
29
26
|
<references>
|
|
30
27
|
<see type="xsddocumentation:PublicApi" relation="SeeAlso" />
|
|
31
28
|
<see type="xsdcap:ResolveOptions" relation="SeeAlso" />
|
|
32
29
|
</references>
|
|
33
30
|
<properties>
|
|
34
|
-
<includeNonExported type="type:Boolean"
|
|
35
|
-
|
|
31
|
+
<includeNonExported type="type:Boolean">
|
|
32
|
+
<documentation>
|
|
33
|
+
Reserved; unused for V1 emit. Default true. (optional)
|
|
34
|
+
</documentation>
|
|
35
|
+
</includeNonExported>
|
|
36
|
+
<emitDomainSchemas type="type:Boolean">
|
|
37
|
+
<documentation>
|
|
38
|
+
When false, skip types.xsd / service.xsd and their catalog entries. Default true. (optional)
|
|
39
|
+
</documentation>
|
|
40
|
+
</emitDomainSchemas>
|
|
36
41
|
</properties>
|
|
37
|
-
|
|
38
|
-
</block>
|
|
42
|
+
</xsdapi:XsdOptions>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD API — XsdRenderOutput
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.api.XsdRenderOutput-->
|
|
3
|
+
<xsdapi:XsdRenderOutput xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,15 +14,25 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
xsd:XsdType
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Schema files under outDir plus optional root catalog.xml
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
files[] hold bml.xsd and optional types.xsd/service.xsd. rootFiles hold catalog.xml at project root.
|
|
25
|
+
</documentation>
|
|
29
26
|
<properties>
|
|
30
|
-
<files type="type:Text"
|
|
31
|
-
|
|
27
|
+
<files type="type:Text">
|
|
28
|
+
<documentation>
|
|
29
|
+
Schema artifacts relative to outputBasePath. (required)
|
|
30
|
+
</documentation>
|
|
31
|
+
</files>
|
|
32
|
+
<rootFiles type="type:Text">
|
|
33
|
+
<documentation>
|
|
34
|
+
Project-root files such as catalog.xml. (optional)
|
|
35
|
+
</documentation>
|
|
36
|
+
</rootFiles>
|
|
32
37
|
</properties>
|
|
33
|
-
|
|
34
|
-
</block>
|
|
38
|
+
</xsdapi:XsdRenderOutput>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Capability — CatalogRelativePath
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.capability.CatalogRelativePath-->
|
|
3
|
+
<xsdcap:CatalogRelativePath xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,23 +14,30 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
core:Capability
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Build catalog uri path for a schema file under outDir
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
XSD14: normalize backslashes to slash; strip trailing slashes; return ./outDir/schemaFileName.
|
|
25
|
+
</documentation>
|
|
30
26
|
<properties>
|
|
31
27
|
<outDir type="type:Text">
|
|
32
|
-
<documentation>
|
|
28
|
+
<documentation>
|
|
29
|
+
Output base path. (required)
|
|
30
|
+
</documentation>
|
|
33
31
|
</outDir>
|
|
34
32
|
<schemaFileName type="type:Text">
|
|
35
|
-
<documentation>
|
|
33
|
+
<documentation>
|
|
34
|
+
e.g. bml.xsd. (required)
|
|
35
|
+
</documentation>
|
|
36
36
|
</schemaFileName>
|
|
37
37
|
<result type="type:Text">
|
|
38
|
-
<documentation>
|
|
38
|
+
<documentation>
|
|
39
|
+
Relative path. (required)
|
|
40
|
+
</documentation>
|
|
39
41
|
</result>
|
|
40
42
|
</properties>
|
|
41
|
-
|
|
42
|
-
</block>
|
|
43
|
+
</xsdcap:CatalogRelativePath>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Capability — EmitBlockXsd
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.capability.EmitBlockXsd-->
|
|
3
|
+
<xsdcap:EmitBlockXsd xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,24 +14,28 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
core:Capability
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Emit universal bml.xsd schema string
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
XSD4–XSD11: targetNamespace http://blockml.org/bml; single root element block; mixed=true; choice of unbounded optional xs:element particles; no element xs:any; anyAttribute processContents=lax. Particles = sorted D1 identity + D1 containers + ExtraElementNames filtered.
|
|
25
|
+
</documentation>
|
|
30
26
|
<references>
|
|
31
27
|
<see type="xsddocumentation:ParticleMappingRules" relation="SeeAlso" />
|
|
32
28
|
</references>
|
|
33
|
-
|
|
34
29
|
<properties>
|
|
35
30
|
<typeRegistry type="type:Text">
|
|
36
|
-
<documentation>
|
|
31
|
+
<documentation>
|
|
32
|
+
TypeRegistry for meta Definition extras. (required)
|
|
33
|
+
</documentation>
|
|
37
34
|
</typeRegistry>
|
|
38
35
|
<result type="type:Text">
|
|
39
|
-
<documentation>
|
|
36
|
+
<documentation>
|
|
37
|
+
bml.xsd XML string. (required)
|
|
38
|
+
</documentation>
|
|
40
39
|
</result>
|
|
41
40
|
</properties>
|
|
42
|
-
|
|
43
|
-
</block>
|
|
41
|
+
</xsdcap:EmitBlockXsd>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Capability — EmitCatalogXml
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.capability.EmitCatalogXml-->
|
|
3
|
+
<xsdcap:EmitCatalogXml xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,24 +14,28 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
core:Capability
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Emit OASIS XML catalog document
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
XSD14: xmlns urn:oasis:names:tc:entity:xmlns:xml:catalog; one uri element per CatalogEntry with name=namespaceUri and uri=relativePath.
|
|
25
|
+
</documentation>
|
|
30
26
|
<references>
|
|
31
27
|
<see type="xsddocumentation:CatalogAndOutputLayout" relation="SeeAlso" />
|
|
32
28
|
</references>
|
|
33
|
-
|
|
34
29
|
<properties>
|
|
35
30
|
<entries type="type:Text">
|
|
36
|
-
<documentation>
|
|
31
|
+
<documentation>
|
|
32
|
+
CatalogEntry list. (required)
|
|
33
|
+
</documentation>
|
|
37
34
|
</entries>
|
|
38
35
|
<result type="type:Text">
|
|
39
|
-
<documentation>
|
|
36
|
+
<documentation>
|
|
37
|
+
catalog.xml string. (required)
|
|
38
|
+
</documentation>
|
|
40
39
|
</result>
|
|
41
40
|
</properties>
|
|
42
|
-
|
|
43
|
-
</block>
|
|
41
|
+
</xsdcap:EmitCatalogXml>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Capability — EmitServiceXsd
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.capability.EmitServiceXsd-->
|
|
3
|
+
<xsdcap:EmitServiceXsd xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,24 +14,28 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
core:Capability
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Emit service.xsd vocabulary schema
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
XSD13: elements for org.blockml.bml.service.* short names as xs:string under http://blockml.org/schema/service.
|
|
25
|
+
</documentation>
|
|
30
26
|
<references>
|
|
31
27
|
<see type="xsddocumentation:DomainVocabularyRules" relation="SeeAlso" />
|
|
32
28
|
</references>
|
|
33
|
-
|
|
34
29
|
<properties>
|
|
35
30
|
<typeRegistry type="type:Text">
|
|
36
|
-
<documentation>
|
|
31
|
+
<documentation>
|
|
32
|
+
TypeRegistry. (required)
|
|
33
|
+
</documentation>
|
|
37
34
|
</typeRegistry>
|
|
38
35
|
<result type="type:Text">
|
|
39
|
-
<documentation>
|
|
36
|
+
<documentation>
|
|
37
|
+
service.xsd XML string. (required)
|
|
38
|
+
</documentation>
|
|
40
39
|
</result>
|
|
41
40
|
</properties>
|
|
42
|
-
|
|
43
|
-
</block>
|
|
41
|
+
</xsdcap:EmitServiceXsd>
|
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
<!--XSD Capability — EmitTypesXsd
|
|
2
|
+
FQN: org.blockml.bml.target.xsd.capability.EmitTypesXsd-->
|
|
3
|
+
<xsdcap:EmitTypesXsd xmlns="http://blockml.org/bml"
|
|
10
4
|
xmlns:blockml="org.blockml.bml"
|
|
11
5
|
xmlns:bom="org.blockml.bml.bom"
|
|
12
6
|
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
@@ -20,24 +14,28 @@
|
|
|
20
14
|
xmlns:xsddocumentation="org.blockml.bml.target.xsd.documentation"
|
|
21
15
|
xmlns:type="org.blockml.bml.type">
|
|
22
16
|
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<is>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
17
|
+
<baseType>
|
|
18
|
+
core:Capability
|
|
19
|
+
</baseType>
|
|
20
|
+
<is>
|
|
21
|
+
Emit types.xsd vocabulary schema
|
|
22
|
+
</is>
|
|
23
|
+
<documentation>
|
|
24
|
+
XSD12: elements for org.blockml.bml.type.* short names as xs:string under http://blockml.org/schema/types.
|
|
25
|
+
</documentation>
|
|
30
26
|
<references>
|
|
31
27
|
<see type="xsddocumentation:DomainVocabularyRules" relation="SeeAlso" />
|
|
32
28
|
</references>
|
|
33
|
-
|
|
34
29
|
<properties>
|
|
35
30
|
<typeRegistry type="type:Text">
|
|
36
|
-
<documentation>
|
|
31
|
+
<documentation>
|
|
32
|
+
TypeRegistry. (required)
|
|
33
|
+
</documentation>
|
|
37
34
|
</typeRegistry>
|
|
38
35
|
<result type="type:Text">
|
|
39
|
-
<documentation>
|
|
36
|
+
<documentation>
|
|
37
|
+
types.xsd XML string. (required)
|
|
38
|
+
</documentation>
|
|
40
39
|
</result>
|
|
41
40
|
</properties>
|
|
42
|
-
|
|
43
|
-
</block>
|
|
41
|
+
</xsdcap:EmitTypesXsd>
|