@prefix rdfs: . @prefix rdf: . @prefix : . @prefix grddl: . :Instance a rdfs:Class ; rdfs:label "Instance"@en ; rdfs:subClassOf ; rdfs:subClassOf grddl:InformationResource ; :Schema a rdfs:Class ; rdfs:label "Schema"@en ; rdfs:subClassOf ; rdfs:seeAlso . :Transformation a rdfs:Class ; rdfs:label "Transformation"@en ; rdfs:comment "A JsonT transformation which outputs an RDF/JSON string."@en . :TransformationProperty a rdfs:Class ; rdfs:label "Transformation Property"@en . :transformation a rdf:Property ; rdfs:label "transformation"@en ; rdfs:comment "A link from a JSON instance resource to a transformation resource capable of transforming it into RDF/JSON."@en ; rdfs:domain :Instance ; rdfs:range :Transformation . a rdf:Property ; rdfs:label "described by"@en . :schemaTransformation a rdf:Property ; rdfs:label "schema transformation"@en ; rdfs:comment "A link from a JSON schema resource to a transformation resource capable of transforming instances that conform to the schema into RDF/JSON."@en ; rdfs:domain :Schema ; rdfs:range :Transformation . :transformationProperty a rdf:Property ; rdfs:domain :Transformation ; rdfs:range :TransformationProperty .