Last active
December 19, 2017 13:01
-
-
Save micheldumontier/785cee1ef746dcf46a57ea93e6d25396 to your computer and use it in GitHub Desktop.
lightweight openAPI description
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openapi: 3.0.0 | |
| info: | |
| title: my.sparql.api | |
| version: 0.1.0 | |
| description: my awesome sparql API | |
| contact: | |
| name: jane doe | |
| x-id: http://github.com/jane.doe | |
| x-role: responsible developer | |
| x-externalResources: | |
| - x-url: http://github.com/jane.doe/myapi | |
| x-type: api documentation | |
| x-description: github repo for API | |
| servers: | |
| - url: http://janedoe.info/myapi | |
| paths: | |
| /sparql: | |
| get: | |
| description: SPARQL query path | |
| tags: | |
| - SPARQL | |
| responses: | |
| '200': | |
| description: default response | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment