https://ontology.unifiedcyberontology.org/uco/observable/URLHistoryEntry
A URL history entry is a grouping of characteristics unique to the properties of a single URL history entry for a particular browser.
Instances of observable:URLHistoryEntry can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:URLHistoryEntry | ||||
observable:browserUserProfile | 1 |
xsd:string
|
||
observable:expirationTime | 1 |
xsd:dateTime
|
||
observable:firstVisit | 1 |
xsd:dateTime
|
||
observable:hostname | 1 |
xsd:string
|
||
observable:keywordSearchTerm | 0 |
xsd:string
|
||
observable:lastVisit | 1 |
xsd:dateTime
|
||
observable:manuallyEnteredCount | 1 |
xsd:nonNegativeInteger
|
||
observable:pageTitle | 1 |
xsd:string
|
||
observable:referrerUrl | 0 |
observable:ObservableObject
|
||
observable:url | 1 |
observable:ObservableObject
|
||
observable:visitCount | 1 |
xsd:integer
|
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/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 ;
rdfs:subClassOf core:UcoInherentCharacterizationThing ;
sh:property [ sh:class observable:ObservableObject ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:url ],
[ sh:class observable:ObservableObject ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
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 .