Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matthieubosquet/ontologies

Some ontologies
https://github.com/matthieubosquet/ontologies

Last synced: about 2 months ago
JSON representation

Some ontologies

Awesome Lists containing this project

README

        

# Ontologies

A collection of standard and well known ontologies serialised to [Turtle](https://en.wikipedia.org/wiki/Turtle_(syntax)).


In computer science and information science, an ontology encompasses a representation, formal naming and definition of the categories, properties and relations between the concepts, data and entities that substantiate one, many or all domains of discourse.


Wikipedia: Ontology (information science)


## Core W3C ontologies

RDF, RDFS, OWL & XSD constitute the reserved vocabulary of the OWL 2 Web Ontology Language. Those four ontologies are therefore the backbone of the Semantic Web.


Anyone Can Make Statements About Any Resource


To facilitate operation at Internet scale, RDF is an open-world framework that allows anyone to make statements about any resource.


In general, it is not assumed that complete information about any resource is available. RDF does not prevent anyone from making assertions that are nonsensical or inconsistent with other statements, or the world as people see it. Designers of applications that use RDF should be aware of this and may design their applications to tolerate incomplete or inconsistent sources of information.


Resource Description Framework (RDF): Concepts and Abstract Syntax


### RDF technical recommendations (25 February 2014)

- [RDF 1.1 Primer](https://www.w3.org/TR/rdf11-primer/)
- Core specification
- [RDF 1.1 Concepts and Abstract Syntax](https://www.w3.org/TR/rdf11-concepts/)
- [RDF 1.1 Semantics](https://www.w3.org/TR/rdf11-mt/)
- Serialization
- [Turtle](https://www.w3.org/TR/turtle/)
- [Trig](https://www.w3.org/TR/trig/)
- [N-Triples](https://www.w3.org/TR/n-triples/)
- [N-Quads](https://www.w3.org/TR/n-quads/)
- [XML Syntax](https://www.w3.org/TR/rdf-syntax-grammar/)
- Notes
- [What’s New in RDF 1.1](https://www.w3.org/TR/rdf11-new/)
- [On Semantics of RDF Datasets](https://www.w3.org/TR/rdf11-datasets/)
- [Test Cases](https://www.w3.org/TR/rdf11-testcases/)
- [JSON Alternate Serialization (RDF/JSON)](https://www.w3.org/TR/rdf-json/)

### RDFS technical recommendation (25 February 2014)

- [RDF Schema 1.1](https://www.w3.org/TR/rdf-schema/)

### OWL 2 Web Ontology Language technical recommendations (11 December 2012)

- [Document Overview](https://www.w3.org/TR/owl-overview/)
- [Language Primer](https://www.w3.org/TR/owl-primer/)
- [New Features and Rationale](https://www.w3.org/TR/owl-new-features/)
- [Quick Reference Guide](https://www.w3.org/TR/owl2-quick-reference/)
- Core specification
- [Structural Specification and Functional-Style Syntax](https://www.w3.org/TR/owl-syntax/)
- [Mapping to RDF Graphs](https://www.w3.org/TR/owl-mapping-to-rdf/)
- [Direct Semantics](https://www.w3.org/TR/owl-direct-semantics/)
- [RDF-Based Semantics](https://www.w3.org/TR/owl-rdf-based-semantics/)
- [Conformance](https://www.w3.org/TR/owl-conformance/)
- Optional features
- [Profiles](https://www.w3.org/TR/owl-profiles/)
- [XML Serialization](https://www.w3.org/TR/owl-xml-serialization/)
- [Manchester Syntax](https://www.w3.org/TR/owl2-manchester-syntax/) (Working Group Note)
- Extension
- [Data Range Extension: Linear Equations](https://www.w3.org/TR/owl2-dr-linear/) (Working Group Note)

### Notation3 (Draft - 09 October 2022)

- [Notation3](https://w3c.github.io/N3/spec/)

### XSD Datatypes

- [XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes](https://www.w3.org/TR/xmlschema11-2/)
- [OWL Quick Reference: Built-in Datatypes and Facets](https://www.w3.org/TR/owl-quick-reference/#Built-in_Datatypes_and_Facets)

## Other ontologies

### W3C

[SHACL](https://www.w3.org/TR/shacl/), [SKOS](https://www.w3.org/TR/skos-reference/), [DCAT](https://www.w3.org/TR/vocab-dcat-2/), [CSVW](https://w3c.github.io/csvw/syntax/), [VCARD](https://www.w3.org/TR/vcard-rdf/).

### Other

[Dublin Core](https://www.dublincore.org/specifications/dublin-core/dcmi-terms/), [FOAF](http://xmlns.com/foaf/0.1/), [Schema](https://schema.org/).

## Other specifications

- [Notation3](https://w3c.github.io/N3/spec/) (Draft Community Group Report 03 April 2023)
- [RDF Thrift](https://afs.github.io/rdf-thrift/rdf-binary-thrift.html) (see also "[RDF Binary using Apache Thrift](https://jena.apache.org/documentation/io/rdf-binary.html)")

## Standard prefixes

There is a list of standard prefixes in [prefix.ttl](prefix.ttl) for easy copy/paste.

The list is maintained in lowercase SPARQL syntax to be usable in both Turtle and SPARQL. This syntax requires an RDF 1.1 Turtle parser which can be considered as of 2020 as widely deployed. Therefore no reason to keep using the syntax including an '@' as per the [Turtle Spec note on IRIs](https://www.w3.org/TR/turtle/#sec-iri).

```turtle
# Core W3C ontologies (OWL 2 reserved vocabulary)
prefix rdf:
prefix rdfs:
prefix owl:
prefix xsd:
# Other ontologies
prefix acl:
prefix acp:
prefix cc:
prefix cert:
prefix csvw:
prefix dc:
prefix dcam:
prefix dcat:
prefix dctype:
prefix foaf:
prefix ldp:
prefix posixstat:
prefix schema:
prefix shacl:
prefix skos:
prefix skosxl:
prefix solid:
prefix swapdoc:
prefix ui:
prefix vann:
prefix vcard:
prefix ws:
```

The namespace lookup tool [prefix.cc](https://prefix.cc) can help understand current prefix usage. The [Linked Open Vocabularies website](https://lov.linkeddata.es/dataset/lov/) can help understand vocabularies usage.

## NodeJS usage

Install with `npm install ontl` and retrieve the ontologies as NodeJS readable streams.

```javascript
import * as ontl from 'ontl';

ontl.RDF.pipe(process.stdout);
```