Apache Jena · JSON Structure

Fuseki Sparql Api Dataset Structure

A Fuseki dataset

Type: object Properties: 3
JavaLinked DataOWLOntologyOpen SourceRDFSemantic WebSPARQL

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

Properties

ds.name ds.state ds.services

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-dataset-structure.json",
  "name": "Dataset",
  "description": "A Fuseki dataset",
  "properties": {
    "ds.name": {
      "type": "string",
      "description": "Dataset name",
      "example": "/ds"
    },
    "ds.state": {
      "type": "boolean",
      "description": "Whether the dataset is active",
      "example": true
    },
    "ds.services": {
      "type": "array",
      "description": "Available services for this dataset",
      "items": {
        "type": "object"
      }
    }
  }
}