Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InfluxDB 2.0: The typo in Task schema: descripton -> description [area/api] #13904

Closed
bednar opened this issue May 14, 2019 · 1 comment
Closed
Labels

Comments

@bednar
Copy link
Contributor

bednar commented May 14, 2019

The Task is defined as:

    Task:
      type: object
      properties:
        id:
          readOnly: true
          type: string
        orgID:
          description: The ID of the organization that owns this Task.
          type: string
        org:
          description: The name of the organization that owns this Task.
          type: string
        name:
          description: The name of the task.
          type: string
        description:
          descripton: An optional description of the task.
          type: string

but should be defined as:

    Task:
      type: object
      properties:
        id:
          readOnly: true
          type: string
        orgID:
          description: The ID of the organization that owns this Task.
          type: string
        org:
          description: The name of the organization that owns this Task.
          type: string
        name:
          description: The name of the task.
          type: string
        description:
          description: An optional description of the task.
          type: string

introduced by #13850, cc @AlirieGray

@bednar
Copy link
Contributor Author

bednar commented May 21, 2019

Fixed via #13973, thx @bthesorceror

@bednar bednar closed this as completed May 21, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant