@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .

<http://example.org/Incubator-test/TestScheme> a <http://www.w3.org/2008/05/skos#ConceptScheme>,
    <https://w3id.org/kpxl/gen/terms/MaintainedResource>;
  dct:description "just for testing.";
  rdfs:label "Test SKOS Scheme";
  <https://w3id.org/kpxl/gen/terms/hasNamespace> <http://example.org/Incubator-test/>;
  <https://w3id.org/kpxl/gen/terms/isMaintainedBy> <https://w3id.org/spaces/knowledgepixels/incubator> .

<http://example.org/Incubator-test/ConceptA> a <http://www.w3.org/2004/02/skos/core#Concept>;
  <http://www.w3.org/2004/02/skos/core#definition> "just testing...";
  <http://www.w3.org/2004/02/skos/core#inScheme> <http://example.org/Incubator-test/TestScheme>;
  <http://www.w3.org/2004/02/skos/core#prefLabel> "Concept A" .

<http://example.org/Incubator-test/ConceptB> a <http://www.w3.org/2004/02/skos/core#Concept>;
  <http://www.w3.org/2004/02/skos/core#broader> <http://example.org/Incubator-test/ConceptA>;
  <http://www.w3.org/2004/02/skos/core#definition> "testing";
  <http://www.w3.org/2004/02/skos/core#inScheme> <http://example.org/Incubator-test/TestScheme>;
  <http://www.w3.org/2004/02/skos/core#prefLabel> "Concept B" .
