Skip to content

Commit 24e763b

Browse files
committed
Regenerate Make-managed files.
References: * ucoProject/UCO#508 * ucoProject/UCO#513 * ucoProject/UCO#526 Signed-off-by: Alex Nelson <[email protected]>
1 parent d297361 commit 24e763b

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

tests/case_utils/case_validate/shape_disabling/validation_with_uuid_shape_enabled.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ Validation Result in SPARQLConstraintComponent (http://www.w3.org/ns/shacl#SPARQ
77
Focus Node: <urn:example:thing-1>
88
Value Node: <urn:example:thing-1>
99
Source Constraint: [ rdf:type sh:SPARQLConstraint ; rdfs:seeAlso <https://datatracker.ietf.org/doc/html/rfc4122#section-4.1.3> ; sh:message Literal("UcoThings are suggested to end with a UUID.", lang=en) ; sh:select Literal("
10-
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
10+
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
11+
PREFIX core: <https://ontology.unifiedcyberontology.org/uco/core/>
1112
SELECT $this
1213
WHERE {
13-
$this a/rdfs:subClassOf* uco-core:UcoThing .
14+
$this a/rdfs:subClassOf* core:UcoThing .
1415
FILTER (
1516
! REGEX (
1617
STR($this),

tests/case_utils/case_validate/uco_test_examples/hash_XFAIL_validation.ttl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
"SHA1"^^vocabulary:HashNameVocab
4444
"SHA224"^^vocabulary:HashNameVocab
4545
"SHA256"^^vocabulary:HashNameVocab
46+
"SHA3-224"^^vocabulary:HashNameVocab
47+
"SHA3-256"^^vocabulary:HashNameVocab
48+
"SHA3-384"^^vocabulary:HashNameVocab
49+
"SHA3-512"^^vocabulary:HashNameVocab
4650
"SHA384"^^vocabulary:HashNameVocab
4751
"SHA512"^^vocabulary:HashNameVocab
4852
"SSDEEP"^^vocabulary:HashNameVocab
@@ -112,6 +116,10 @@
112116
"SHA1"^^vocabulary:HashNameVocab
113117
"SHA224"^^vocabulary:HashNameVocab
114118
"SHA256"^^vocabulary:HashNameVocab
119+
"SHA3-224"^^vocabulary:HashNameVocab
120+
"SHA3-256"^^vocabulary:HashNameVocab
121+
"SHA3-384"^^vocabulary:HashNameVocab
122+
"SHA3-512"^^vocabulary:HashNameVocab
115123
"SHA384"^^vocabulary:HashNameVocab
116124
"SHA512"^^vocabulary:HashNameVocab
117125
"SSDEEP"^^vocabulary:HashNameVocab
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
2+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
3+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
4+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
5+
@prefix sh: <http://www.w3.org/ns/shacl#> .
6+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
7+
8+
[]
9+
a sh:ValidationReport ;
10+
sh:conforms "true"^^xsd:boolean ;
11+
sh:result [
12+
a sh:ValidationResult ;
13+
sh:focusNode <http://example.org/kb/windows-thread-facet-4967ae35-f00b-49c8-9dd2-38e3bdf851e1> ;
14+
sh:resultMessage "observable:creationTime is deprecated, and will be an error to use in UCO 2.0.0. observable:observableCreatedTime should be used instead."@en ;
15+
sh:resultPath observable:creationTime ;
16+
sh:resultSeverity sh:Warning ;
17+
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
18+
sh:sourceShape [
19+
a sh:PropertyShape ;
20+
sh:maxCount "0"^^xsd:integer ;
21+
sh:message "observable:creationTime is deprecated, and will be an error to use in UCO 2.0.0. observable:observableCreatedTime should be used instead."@en ;
22+
sh:path observable:creationTime ;
23+
sh:severity sh:Warning ;
24+
] ;
25+
] ;
26+
.
27+

0 commit comments

Comments
 (0)