123456789101112131415161718192021222324252627282930313233343536 |
- openapi: 3.0.0
- info:
- title: Dariah Virtuoso Prototype
- version: 1.0.0
- description: GET endpoint to retrieve Dariah.it-owned semantic data via SPARQL queries
- servers:
- - url: http://dev.restore.ovi.cnr.it:8890
- paths:
- /sparql:
- get:
- summary: Execute a SPARQL query
- description: |
- This endpoint allows you to execute SPARQL queries against the API.
- *Note:* Make sure to include the necessary query parameters in the request URL.
- parameters:
- - name: query
- in: query
- description: The SPARQL query to execute
- required: true
- schema:
- type: string
- responses:
- '200':
- description: Successful operation
- content:
- application/json:
- schema:
- type: object
- example:
- result: "Query result goes here"
- '400':
- description: Invalid request
- '500':
- description: Internal server error
|