Skip to content

RDF datatypes ontology

Link
Ontology IRI https://w3id.org/rdf-tensor/datatypes
Supports content negotiation
Turtle https://w3id.org/rdf-tensor/datatypes.ttl
N-Triples https://w3id.org/rdf-tensor/datatypes.nt
Jelly https://w3id.org/rdf-tensor/datatypes.jelly
JSON-LD https://w3id.org/rdf-tensor/datatypes.jsonld
RDF/XML https://w3id.org/rdf-tensor/datatypes.rdf

Ontology source (LinkML)

Source file.

This LinkML source is converted to RDFS using LinkML-Scala.

id: https://w3id.org/rdf-tensor/datatypes
name: rdf-tensor-datatypes
title: RDF-tensor datatypes
description: RDF datatypes for representing data tensors as literals in RDF.
imports:
  - linkml:types
prefixes:
  tensor: https://w3id.org/rdf-tensor/vocab#
  rdfs: http://www.w3.org/2000/01/rdf-schema#
  sd: http://www.w3.org/ns/sparql-service-description#
  dcterms: http://purl.org/dc/terms/
  linkml: https://w3id.org/linkml/
default_prefix: tensor
default_range: string
license: https://www.apache.org/licenses/LICENSE-2.0
contributors:
  - https://github.com/cinekele
  - https://github.com/Ostrzyciel
  - https://github.com/nk2ishere
emit_prefixes:
  - tensor
enums:
  DataTensorDatatypes:
    enum_uri: rdfs:Datatype
    permissible_values:
      "DataTensor":
        meaning: tensor:DataTensor
        title: "Data Tensor"
        description: "The datatype for a tensor representing numeric or boolean data."
        created_by: https://github.com/nk2ishere
        created_on: "2026-02-20"
      "Range":
        meaning: tensor:Range
        title: "Range"
        description: "The datatype for a range of numeric values."
        created_by: https://github.com/nk2ishere
        created_on: "2026-02-20"

Ontology source (Turtle)

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX tensor: <https://w3id.org/rdf-tensor/vocab#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

rdfs:Datatype  rdf:type  rdfs:Class .

tensor:DataTensor  rdf:type  rdfs:Datatype;
        rdfs:label    "Data Tensor";
        rdfs:comment  "The datatype for a tensor representing numeric or boolean data." .

tensor:Range  rdf:type  rdfs:Datatype;
        rdfs:label    "Range";
        rdfs:comment  "The datatype for a range of numeric values." .