Introduction
Introduction Statistics Contact Development Disclaimer Help
web.ttl - web-allergy - Stop the web industry poisoning your Internet experienc…
git clone git://bitreich.org/web-allergy git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfr…
Log
Files
Refs
Tags
README
LICENSE
---
web.ttl (1715B)
---
1 # An ontology of the Web for tracking allergies
2
3 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
4 @prefix s: <http://www.w3.org/2000/01/rdf-schema#>.
5 @prefix owl: <http://www.w3.org/2002/07/owl#>.
6 @prefix dc: <http://purl.org/dc/terms/>.
7 @prefix : <https://w3.org/ns/pim/web#>.
8 @prefix web: <https://w3.org/ns/pim/web#>. # @@ claim the space
9
10 <> a owl:Ontology;
11 dc:title "An Ontology for Web Allergies";
12 s:comment """... """ .
13
14 :WebItem a s:Class;
15 s:label "web item"@en.
16
17 :Allergen a s:Class; = <https://www.wikidata.org/wiki/Q186752>;
18 s:label "allergen"@en
19
20 :MainAllergen a s:Class; s:subcClassOf :Allergen;
21 s:label "main allergen";
22 s:comment """One of the main allergens when using the Web.""" ;
23 owl:disjointUnionOf
24 ( :Javascript
25 :WebAssembly
26 :HTML
27 :XHTML
28 :CSS
29 :XPath
30 :JSON
31 :HTTP
32 :Firefox
33 :Chromium
34 :RDF ) .
35
36 :Javascript a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "j…
37 :WebAssembly a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "…
38 :HTML a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "html"@e…
39 :XHTML a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "xhtml"…
40 :CSS a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "css"@en .
41 :XPath a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "xpath"…
42 :JSON a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "json"@e…
43 :HTTP a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "http"@e…
44 :Firefox a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "fire…
45 :Chromium a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "chr…
46 :RDF a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "rdf"@en .
47
48 # ENDS
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.