summaryrefslogtreecommitdiff
path: root/data/ontology/nautilus.ontology
blob: ed56df4471665dd21d48436e41e76311b7d594d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix nrl: <http://tracker.api.gnome.org/ontology/v3/nrl#> .
@prefix nautilus: <https://gitlab.gnome.org/GNOME/nautilus#> .

nautilus: a nrl:Namespace, nrl:Ontology ;
    nrl:prefix "nautilus" ;
    nrl:lastModified "2020-05-01T10:00:00Z" .

nautilus:FileReference a rdfs:Class ;
    rdfs:comment "A unique ID for a file, corresponding with the nie:InformationElement created by tracker-miner-fs. We use a unique ID rather than the file URL so the star will follow renames." ;
    rdfs:subClassOf rdfs:Resource .

nautilus:starred a rdf:Property ;
    rdfs:comment "Marks resources that are starred in Nautilus." ;
    rdfs:domain nautilus:FileReference ;
    rdfs:range xsd:boolean ;
    nrl:maxCardinality 1 .