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

Implemented Issue 380 #397

Merged
merged 1 commit into from
Jun 14, 2022
Merged
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
16 changes: 8 additions & 8 deletions ontology/observable/observable.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2403,12 +2403,6 @@ observable:EmailMessageFacet
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:headerRaw ;
] ,
[
sh:class observable:ObservableObject ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:inReplyTo ;
] ,
[
sh:class observable:ObservableObject ;
sh:maxCount "1"^^xsd:integer ;
Expand Down Expand Up @@ -2501,6 +2495,12 @@ observable:EmailMessageFacet
sh:nodeKind sh:Literal ;
sh:path observable:contentType ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:Literal ;
sh:path observable:inReplyTo ;
] ,
[
sh:datatype xsd:string ;
sh:maxCount "1"^^xsd:integer ;
Expand Down Expand Up @@ -10362,10 +10362,10 @@ observable:impHash
.

observable:inReplyTo
a owl:ObjectProperty ;
a owl:DatatypeProperty ;
rdfs:label "inReplyTo"@en ;
rdfs:comment "One of more unique identifiers for identifying the email(s) this email is a reply to."@en ;
rdfs:range observable:ObservableObject ;
rdfs:range xsd:string ;
.

observable:inetLocation
Expand Down