jobdataexchange / Data-Modeling

This repo is intended to contain resources and discussion regarding the JDX data modeling.
Other
8 stars 6 forks source link

Set schema.org .ttl reference to http instead of https #14

Closed robinsonkwame closed 5 years ago

robinsonkwame commented 5 years ago

This came up as a parsing implementation related issue (in Python's rdflib library) but the jsonTerms.ttl file that I use to determine what JDX schema properties there are has the schema prefix referring to https://schema.org.

The issue is https://schema.org has a vocab reference as http://schema, note the lack of https, which is then used to set the namespace of any json-ld document that references https://schema.org via @context.

So, in effect, the namespace reference and namespace source are different; see both https://github.com/RDFLib/rdflib-jsonld/issues/59 and https://github.com/w3c/web-annotation/issues/193 for related issues. For reference application development, it would great if we could change,

@prefix schema: <https://schema.org/> . to @prefix schema: <http://schema.org/> .

stuartasutton commented 5 years ago

Fine with me. I'll update the .ttl

robinsonkwame commented 5 years ago

Excellent!