Amazon Neptune · Example Payload

Amazon Neptune Executesparqlquery Example

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Amazon Neptune Executesparqlquery Example is an example object payload from Amazon Neptune, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "executeSparqlQuery",
  "method": "POST",
  "path": "/sparql",
  "summary": "Amazon Neptune Execute a SPARQL Query or Update via HTTP POST",
  "requestExamples": [
    {
      "contentType": "application/x-www-form-urlencoded",
      "name": "selectQuery",
      "example": {
        "query": "SELECT ?s ?p ?o WHERE { ?s ?p ?o } LIMIT 10"
      }
    },
    {
      "contentType": "application/x-www-form-urlencoded",
      "name": "insertData",
      "example": {
        "update": "INSERT DATA { <https://example.org/s> <https://example.org/p> <https://example.org/o> . }"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "400",
      "contentType": "application/json",
      "name": "executeSparqlQuery400Example",
      "example": {
        "requestId": "neptune-cluster-abc123",
        "code": "example-value",
        "detailedMessage": "example-value"
      }
    }
  ]
}