action aucklandmuseum_get_sparql { label: "Auckland Museum SPARQL endpoint" description: "You can execute your [SPARQL](http://www.w3.org/TR/rdf-sparql-query/) queries against this endpoint.\n\nThe sparql query should be provided as the value of the request parameter `query`.\nSet the `Accept` header to `application/sparql-results+xml` to get results in XML. Set it to `application/sparql-results+json` to get results in JSON. \n\n**Note:** This endpoints supports [JSON-P](http://json-p.org/). In order to get a JSON-P response, set the query parameter `callback` to your preferred callback function name. The default function name is `callback()`. When using JSON-P, there is no need to set the `Accept` header because the response will always be in `application/javascript`.\n" provider: aucklandmuseum method: GET path: "/sparql" encoding: json input: { type: "object" properties: { callback: { type: "string" } infer: { type: "string" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }