https://unifiedcyberontology.org/ontology/uco/observable#URLHistoryEntry
Instances of observable:URLHistoryEntry can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
TYPE |
---|---|---|---|---|
observable:URLHistoryEntry | ||||
observable:browserUserProfile | 0 | 1 |
|
xsd:string
|
observable:expirationTime | 0 | 1 |
|
xsd:dateTime
|
observable:firstVisit | 0 | 1 |
|
xsd:dateTime
|
observable:hostname | 0 | 1 |
|
xsd:string
|
observable:keywordSearchTerm | 0 | * |
|
xsd:string
|
observable:lastVisit | 0 | 1 |
|
xsd:dateTime
|
observable:manuallyEnteredCount | 0 | 1 |
|
xsd:nonNegativeInteger
|
observable:pageTitle | 0 | 1 |
|
xsd:string
|
observable:referrerUrl | 0 | * |
|
observable:ObservableObject
|
observable:url | 0 | 1 |
|
observable:ObservableObject
|
observable:visitCount | 0 | 1 |
|
xsd:integer
|
@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:URLHistoryEntry a owl:Class,
sh:NodeShape ;
rdfs:label "URL History Entry"@en-US ;
rdfs:comment "A URL history entry is a grouping of characteristics unique to the properties of a single URL history entry for a particular browser."@en-US ;
sh:property [ sh:class observable:ObservableObject ;
sh:maxCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:url ],
[ sh:class observable:ObservableObject ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:referrerUrl ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:expirationTime ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:firstVisit ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:lastVisit ],
[ sh:datatype xsd:integer ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:visitCount ],
[ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:manuallyEnteredCount ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:browserUserProfile ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:hostname ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:pageTitle ],
[ sh:datatype xsd:string ;
sh:minCount 0 ;
sh:nodeKind sh:Literal ;
sh:path observable:keywordSearchTerm ] ;
sh:targetClass observable:URLHistoryEntry .