@forwardimpact/map 0.13.0 → 0.14.0
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/package.json
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
"type": "boolean",
|
|
23
23
|
"description": "If true, this is a management discipline (default false)"
|
|
24
24
|
},
|
|
25
|
+
"hidden": {
|
|
26
|
+
"type": "boolean",
|
|
27
|
+
"description": "If true, this discipline is hidden from the web UI but remains available via the CLI"
|
|
28
|
+
},
|
|
25
29
|
"validTracks": {
|
|
26
30
|
"type": "array",
|
|
27
31
|
"description": "REQUIRED. Explicit list of valid tracks. Use null to allow trackless (generalist). Empty array = no valid combinations.",
|
|
@@ -58,6 +58,12 @@ fit:isManagement a rdf:Property ;
|
|
|
58
58
|
rdfs:domain fit:Discipline ;
|
|
59
59
|
rdfs:range xsd:boolean .
|
|
60
60
|
|
|
61
|
+
fit:hidden a rdf:Property ;
|
|
62
|
+
rdfs:label "hidden"@en ;
|
|
63
|
+
rdfs:comment "If true, this discipline is hidden from the web UI but remains available via the CLI"@en ;
|
|
64
|
+
rdfs:domain fit:Discipline ;
|
|
65
|
+
rdfs:range xsd:boolean .
|
|
66
|
+
|
|
61
67
|
fit:validTracks a rdf:Property ;
|
|
62
68
|
rdfs:label "validTracks"@en ;
|
|
63
69
|
rdfs:comment "REQUIRED. Explicit list of valid tracks. Empty array = trackless only."@en ;
|
|
@@ -163,6 +169,13 @@ fit:DisciplineShape a sh:NodeShape ;
|
|
|
163
169
|
sh:name "isManagement" ;
|
|
164
170
|
sh:description "If true, this is a management discipline (default false)" ;
|
|
165
171
|
] ;
|
|
172
|
+
sh:property [
|
|
173
|
+
sh:path fit:hidden ;
|
|
174
|
+
sh:datatype xsd:boolean ;
|
|
175
|
+
sh:maxCount 1 ;
|
|
176
|
+
sh:name "hidden" ;
|
|
177
|
+
sh:description "If true, this discipline is hidden from the web UI but remains available via the CLI" ;
|
|
178
|
+
] ;
|
|
166
179
|
sh:property [
|
|
167
180
|
sh:path fit:validTracks ;
|
|
168
181
|
sh:minCount 1 ;
|