gonum.org/v1/gonum@v0.14.0/graph/formats/rdf/testdata/vocab.ttl (about)

     1  # W3C RDF Dataset Normalization Test Vocabulary
     2  # This vocabulary defines classes an properties which extend
     3  # the test-manifest vocabulary at <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest>.
     4  
     5  @prefix :       <http://json-ld.github.io/normalization/tests/vocab#> .
     6  @prefix dc:     <http://purl.org/dc/elements/1.1/> .
     7  @prefix mf:     <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
     8  @prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
     9  @prefix rdfn:   <http://json-ld.github.io/normalization/tests/vocab#> .
    10  @prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
    11  @prefix rdft:   <http://www.w3.org/ns/rdftest#> .
    12  @prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .
    13  
    14  : dc:title         "RDF Dataset Normalization Test Vocabulary";
    15    dc:creator       "Gregg Kellogg";
    16    dc:publisher     "W3C Credentials Community Group";
    17    dc:description   """
    18      This is a vocabulary document used to define classes and properties used in
    19      [RDF Dataset Normalization Test Cases](http://json-ld.github.io/normalization/tests/) and associated test manifests.
    20    """;
    21    rdfs:comment     """
    22      This is a vocabulary document used to define classes and properties used in
    23      [RDF Dataset Normalization Test Cases](http://json-ld.github.io/normalization/tests/) and associated test manifests.
    24    """;
    25    dc:date          "2015-05-19";
    26    dc:identifier    rdfn: .
    27  
    28  ## ---- Test Case Classes ---
    29  
    30  :Test a rdfs:Class;
    31    rdfs:subClassOf mf:ManifestEntry;
    32    rdfs:label "Superclass of all RDF Dataset Normalization tests";
    33    rdfs:subClassOf rdft:Test;
    34    rdfs:comment """
    35      All RDF Dataset Normalization tests have an input file referenced using `mf:action`
    36      and a result file referenced using `mf:result`. Results are compared as text
    37      where the result of running the test is serialized to canonical N-Quads, lexicographically-sorted.
    38    """ .
    39  
    40  :Urgna2012EvalTest a rdfs:Class;
    41    rdfs:label "URGNA2012 Evaluation Test";
    42    rdfs:subClassOf :Test;
    43    rdfs:comment """
    44      Normalization performed using the URGNA2012 algorithm.
    45    """ .
    46  
    47  :Urdna2015EvalTest a rdfs:Class;
    48    rdfs:label "URDNA2015 Evaluation Test";
    49    rdfs:subClassOf :Test;
    50    rdfs:comment """
    51      Normalization performed using the URDNA2015 algorithm.
    52    """ .