Norman Gray - 2009-06-21

Update: just to avoid doubt, the same problem appears if one is explicit about the base URI:

% cat ConceptSchemeName.ttl
@base <urn:example>.
@prefix dc: <http://purl.org/dc/terms/> .
@prefix : <http://www.w3.org/2004/02/skos/core#> .

<> a :ConceptScheme;
dc:created "2009-06-20".

%| cat ConceptSchemeName.rdf
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:dc="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.w3.org/2004/02/skos/core#"
xml:base="urn:example">
<ConceptScheme rdf:about="">
<dc:created>2009-06-20</dc:created>
</ConceptScheme>
</rdf:RDF>
%

And this indicates (doh!) that there isn't an httpRange-14 issue. In the original case, it was purely incidental that the network URI and the name of the ConceptScheme were the same.