From 4bd6a45b610236478d5672f0bc98e5a240686609 Mon Sep 17 00:00:00 2001 From: Ostrzyciel Date: Fri, 22 Sep 2023 11:32:02 +0200 Subject: [PATCH] Update information on supported metadata formats Issue: https://github.com/RiverBench/RiverBench/issues/49 --- docs/documentation/metadata.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/documentation/metadata.md b/docs/documentation/metadata.md index c139ec1b2..cb6b9e9d2 100644 --- a/docs/documentation/metadata.md +++ b/docs/documentation/metadata.md @@ -17,7 +17,13 @@ Examples of URLs that will return the metadata with content negotiation: * [https://w3id.org/riverbench/schema/metadata](https://w3id.org/riverbench/schema/metadata) * [https://w3id.org/riverbench/schema/metadata/dev](https://w3id.org/riverbench/schema/metadata/dev) -To request a metadata file in a given format explicitly, you can also append `.nt`, `.ttl`, or `.rdf` to these URLs. +To request a metadata file in a given format explicitly, you can also append `.nt`, `.ttl`, `.rdf`, or `.jelly` to these URLs. + +The following metadata formats are supported: +- [N-Triples](https://www.w3.org/TR/n-triples/) (`.nt`, content type `application/n-triples`) +- [Turtle](https://www.w3.org/TR/turtle/) (`.ttl`, content type `text/turtle`) +- [RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/) (`.rdf`, content type `application/rdf+xml`) +- [Jelly](https://github.com/Jelly-RDF) (`.jelly`, content type `application/x-jelly-rdf`) *You can find the rules that make this work [here](https://github.com/perma-id/w3id.org/tree/master/riverbench).*