Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ontop among the SPARQL endpoint implementations #236

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,43 @@ Stardog
- application/ld+json
- Other acceptable values: application/n-triples, application/x-turtle, application/trig, application/trix, application/n-quads

Ontop
-------
:Website: `Ontop VKG <https://ontop-vkg.org>`_
:Documentation: `<https://ontop-vkg.org/guide/>`
:Uses: Only content negotiation (no URL parameters).
:Parameter key: If an unexpected parameter is used, the server ignores it.


- SELECT

- application/sparql-results+json (DEFAULT if Accept: */* is sent)
- application/sparql-results+xml
- text/csv (versions before Ontop 5.2 returned text/sparql-results+csv)
- text/tab-separated-values (versions before Ontop 5.2 returned text/sparql-results+tsv)

- ASK

- application/sparql-results+json (DEFAULT if Accept: */* is sent)
- application/sparql-results+xml
- Other values: text/boolean

- CONSTRUCT

- text/turtle (DEFAULT if Accept: */* is sent)
- application/rdf+xml
- text/n3
- application/ld+json
- Other acceptable values: application/n-triples, application/n-quads, rdf+json, rdf+xml

- DESCRIBE

- text/turtle (DEFAULT if Accept: */* is sent)
- application/rdf+xml
- application/rdf+json
- text/n3
- application/ld+json
- Other acceptable values: application/n-triples, application/n-quads

Development
===========
Expand Down