Amazon Neptune · JSON Structure

Sparql Sparql Request Body Structure

SparqlRequestBody schema from Neptune

Type: object Properties: 4
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

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

Properties

query update using-graph-uri using-named-graph-uri

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-structure/sparql-sparql-request-body-structure.json",
  "name": "SparqlRequestBody",
  "description": "SparqlRequestBody schema from Neptune",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "A SPARQL 1.1 query (SELECT, ASK, CONSTRUCT, or DESCRIBE). Mutually exclusive with update."
    },
    "update": {
      "type": "string",
      "description": "A SPARQL 1.1 Update operation (INSERT DATA, DELETE DATA, etc.). Mutually exclusive with query."
    },
    "using-graph-uri": {
      "type": "string",
      "description": "Default graph URI for the query."
    },
    "using-named-graph-uri": {
      "type": "string",
      "description": "Named graph URI for the query."
    }
  }
}