Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Event references #139

Merged
merged 3 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 0 additions & 72 deletions examples/illustrations/event/drafting.ttl

This file was deleted.

9 changes: 4 additions & 5 deletions examples/illustrations/event/event.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"@context": {
"drafting": "http://example.org/ontology/drafting/",
"kb": "http://example.org/kb/",
"uco-action": "https://ontology.unifiedcyberontology.org/uco/action/",
"uco-core": "https://ontology.unifiedcyberontology.org/uco/core/",
Expand All @@ -13,9 +12,9 @@
"@graph": [
{
"@id": "kb:event-d4a5a009-7b4d-445d-8d06-9dc85f263b3e",
"@type": "drafting:Event",
"@type": "uco-core:Event",
"uco-core:name": "user logged in",
"drafting:eventType": "Authentication",
"uco-core:eventType": "Authentication",
"uco-core:startTime": {
"@type": "xsd:dateTime",
"@value": "2023-07-15T17:59:43.25Z"
Expand All @@ -24,15 +23,15 @@
"@type": "xsd:dateTime",
"@value": "2023-07-15T17:59:45.33Z"
},
"drafting:eventContext": [
"uco-core:eventContext": [
{
"@id": "kb:action-7377c5e6-6b28-4bc7-ad21-6763c070bfcc"
},
{
"@id": "kb:action-a86738e7-c890-4615-b3ab-deaccd3bafbb"
}
],
"drafting:eventAttribute": {
"uco-core:eventAttribute": {
"@id": "kb:dictionary-b222a5f4-e7eb-442a-8aab-c22c89734b9e"
}
},
Expand Down
6 changes: 3 additions & 3 deletions examples/illustrations/spear_phishing/spear_phishing.json
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@
},
{
"@id": "kb:DetectionEvent01",
"@type": "uco-core:UcoThing",
"@type": "uco-core:Event",
"unmapped:hasOccurrentPart": [
{
"@id": "kb:ActOfSending02"
Expand Down Expand Up @@ -364,7 +364,7 @@
},
{
"@id": "kb:InfectionEvent01",
"@type": "uco-core:UcoThing",
"@type": "uco-core:Event",
"unmapped:hasOccurrentPart": [
{
"@id": "kb:ActOfMalwareDelivery01"
Expand Down Expand Up @@ -448,7 +448,7 @@
},
{
"@id": "kb:SpearFishingEvent01",
"@type": "uco-core:UcoThing",
"@type": "uco-core:Event",
"unmapped:hasOccurrentPart": [
{
"@id": "kb:ActOfEmailDelivery01"
Expand Down
6 changes: 3 additions & 3 deletions examples/illustrations/spear_phishing/spear_phishing.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ kb:CorporateLoggingTool01
.

kb:DetectionEvent01
a uco-core:UcoThing ;
a uco-core:Event ;
unmapped:hasOccurrentPart
kb:ActOfEndpointScan01 ,
kb:ActOfFileFlagging01 ,
Expand Down Expand Up @@ -223,7 +223,7 @@ kb:EndpointProtectionSoftware01
.

kb:InfectionEvent01
a uco-core:UcoThing ;
a uco-core:Event ;
unmapped:hasOccurrentPart
kb:ActOfMalwareDelivery01 ,
kb:ActOfMalwareInstallation01
Expand Down Expand Up @@ -277,7 +277,7 @@ kb:ScannerRole01
.

kb:SpearFishingEvent01
a uco-core:UcoThing ;
a uco-core:Event ;
unmapped:hasOccurrentPart
kb:ActOfEmailDelivery01 ,
kb:ActOfLinkOpening01
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,29 +335,6 @@
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ep:participatesIn-shape ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:DetectionEvent01 ;
sh:resultMessage "Focus node is not designated a subclass of UcoThing." ;
sh:resultSeverity sh:Info ;
sh:sourceConstraint [
a sh:SPARQLConstraint ;
sh:message "Focus node is not designated a subclass of UcoThing."@en ;
sh:select """
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
SELECT $this
WHERE {
FILTER NOT EXISTS {
$this a ?nClass .
?nClass rdfs:subClassOf+ uco-core:UcoThing .
}
}
""" ;
] ;
sh:sourceConstraintComponent sh:SPARQLConstraintComponent ;
sh:sourceShape ep:subclass-shape ;
sh:value ep:DetectionEvent01 ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:DetectionEvent01 ;
Expand Down Expand Up @@ -421,29 +398,6 @@
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ep:participatesIn-shape ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:InfectionEvent01 ;
sh:resultMessage "Focus node is not designated a subclass of UcoThing." ;
sh:resultSeverity sh:Info ;
sh:sourceConstraint [
a sh:SPARQLConstraint ;
sh:message "Focus node is not designated a subclass of UcoThing."@en ;
sh:select """
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
SELECT $this
WHERE {
FILTER NOT EXISTS {
$this a ?nClass .
?nClass rdfs:subClassOf+ uco-core:UcoThing .
}
}
""" ;
] ;
sh:sourceConstraintComponent sh:SPARQLConstraintComponent ;
sh:sourceShape ep:subclass-shape ;
sh:value ep:InfectionEvent01 ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:InfectionEvent01 ;
Expand Down Expand Up @@ -539,29 +493,6 @@
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ep:realizedIn-shape ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:SpearFishingEvent01 ;
sh:resultMessage "Focus node is not designated a subclass of UcoThing." ;
sh:resultSeverity sh:Info ;
sh:sourceConstraint [
a sh:SPARQLConstraint ;
sh:message "Focus node is not designated a subclass of UcoThing."@en ;
sh:select """
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
SELECT $this
WHERE {
FILTER NOT EXISTS {
$this a ?nClass .
?nClass rdfs:subClassOf+ uco-core:UcoThing .
}
}
""" ;
] ;
sh:sourceConstraintComponent sh:SPARQLConstraintComponent ;
sh:sourceShape ep:subclass-shape ;
sh:value ep:SpearFishingEvent01 ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:SpearFishingEvent01 ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,29 +335,6 @@
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ep:participatesIn-shape ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:DetectionEvent01 ;
sh:resultMessage "Focus node is not designated a subclass of UcoThing." ;
sh:resultSeverity sh:Info ;
sh:sourceConstraint [
a sh:SPARQLConstraint ;
sh:message "Focus node is not designated a subclass of UcoThing."@en ;
sh:select """
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
SELECT $this
WHERE {
FILTER NOT EXISTS {
$this a ?nClass .
?nClass rdfs:subClassOf+ uco-core:UcoThing .
}
}
""" ;
] ;
sh:sourceConstraintComponent sh:SPARQLConstraintComponent ;
sh:sourceShape ep:subclass-shape ;
sh:value ep:DetectionEvent01 ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:DetectionEvent01 ;
Expand Down Expand Up @@ -421,29 +398,6 @@
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ep:participatesIn-shape ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:InfectionEvent01 ;
sh:resultMessage "Focus node is not designated a subclass of UcoThing." ;
sh:resultSeverity sh:Info ;
sh:sourceConstraint [
a sh:SPARQLConstraint ;
sh:message "Focus node is not designated a subclass of UcoThing."@en ;
sh:select """
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
SELECT $this
WHERE {
FILTER NOT EXISTS {
$this a ?nClass .
?nClass rdfs:subClassOf+ uco-core:UcoThing .
}
}
""" ;
] ;
sh:sourceConstraintComponent sh:SPARQLConstraintComponent ;
sh:sourceShape ep:subclass-shape ;
sh:value ep:InfectionEvent01 ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:InfectionEvent01 ;
Expand Down Expand Up @@ -539,29 +493,6 @@
sh:sourceConstraintComponent sh:MaxCountConstraintComponent ;
sh:sourceShape ep:realizedIn-shape ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:SpearFishingEvent01 ;
sh:resultMessage "Focus node is not designated a subclass of UcoThing." ;
sh:resultSeverity sh:Info ;
sh:sourceConstraint [
a sh:SPARQLConstraint ;
sh:message "Focus node is not designated a subclass of UcoThing."@en ;
sh:select """
PREFIX uco-core: <https://ontology.unifiedcyberontology.org/uco/core/>
SELECT $this
WHERE {
FILTER NOT EXISTS {
$this a ?nClass .
?nClass rdfs:subClassOf+ uco-core:UcoThing .
}
}
""" ;
] ;
sh:sourceConstraintComponent sh:SPARQLConstraintComponent ;
sh:sourceShape ep:subclass-shape ;
sh:value ep:SpearFishingEvent01 ;
] ,
[
a sh:ValidationResult ;
sh:focusNode ep:SpearFishingEvent01 ;
Expand Down
Loading
Loading