From a4ddbfd57efc5193608212ad993945a9da1b3492 Mon Sep 17 00:00:00 2001 From: Alejandro Villar Date: Wed, 6 Mar 2024 18:11:01 +0100 Subject: [PATCH] Compound name json-ld context --- _sources/compound-name/context.jsonld | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 _sources/compound-name/context.jsonld diff --git a/_sources/compound-name/context.jsonld b/_sources/compound-name/context.jsonld new file mode 100644 index 0000000..751db6e --- /dev/null +++ b/_sources/compound-name/context.jsonld @@ -0,0 +1,19 @@ +{ + "@context": { + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "dct": "http://purl.org/dc/terms/", + "type": "@type", + "hasPart": { + "@id": "dct:hasPart", + "@context": { + "type": "@type" + } + }, + "label": { + "@id": "rdfs:label" + }, + "name": { + "@id": "dct:title" + } + } +}