A language for describing resource-oriented APIs & turning them into Swagger or resource diagrams. Oriented around the concepts we want to expose in the APIs.
Apache License 2.0
23
stars
7
forks
source link
path and dynamic params are snake case instead of camel case. #29
'/v1/datasets/{dataset-id}/fields':
post:
tags:
- 'Dataset::Field'
operationId: Create Field
description: Create a new Field in the provided parent Dataset.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Data
should instead be
'/v1/datasets/{datasetID}/fields':
post:
tags:
- 'Dataset::Field'
operationId: Create Field
description: Create a new Field in the provided parent Dataset.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Data
This should follow our RFC conventions.
e.g.
should instead be