LiveRamp / reslang

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

Closed davinchia closed 4 years ago

davinchia commented 4 years ago

This should follow our RFC conventions.

e.g.

'/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
liveandrew commented 4 years ago

corrected in v1.0.0