Apache Jena · JSON Structure

Fuseki Sparql Api Rdf Term Structure

An RDF term (URI, literal, or blank node)

Type: object Properties: 4
JavaLinked DataOWLOntologyOpen SourceRDFSemantic WebSPARQL

RDFTerm is a JSON Structure definition published by Apache Jena, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type value datatype xml:lang

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-jena/refs/heads/main/json-structure/fuseki-sparql-api-rdf-term-structure.json",
  "name": "RDFTerm",
  "description": "An RDF term (URI, literal, or blank node)",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "uri",
        "literal",
        "bnode"
      ],
      "example": "uri"
    },
    "value": {
      "type": "string",
      "example": "http://example.org/subject"
    },
    "datatype": {
      "type": "string",
      "description": "Datatype URI for typed literals"
    },
    "xml:lang": {
      "type": "string",
      "description": "Language tag for language-tagged literals"
    }
  }
}