We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The self and org has to be defined in a nested object:
self
org
SecretKeysResponse: allOf: - $ref: "#/components/schemas/SecretKeys" - type: object properties: links: readOnly: true type: object properties: self: type: string org: type: string
as it is common in rest of API:
Source: type: object properties: links: type: object properties: self: type: string query: type: string health: type: string buckets: type: string Organization: properties: links: type: object readOnly: true example: self: "/api/v2/orgs/1" members: "/api/v2/orgs/1/members" owners: "/api/v2/orgs/1/owners" labels: "/api/v2/orgs/1/labels" secrets: "/api/v2/orgs/1/secrets" buckets: "/api/v2/buckets?org=myorg" tasks: "/api/v2/tasks?org=myorg" dashboards: "/api/v2/dashboards?org=myorg" logs: "/api/v2/orgs/1/logs" properties: self: $ref: "#/components/schemas/Link" members: $ref: "#/components/schemas/Link" owners: $ref: "#/components/schemas/Link" labels: $ref: "#/components/schemas/Link" secrets: $ref: "#/components/schemas/Link" buckets: $ref: "#/components/schemas/Link" tasks: $ref: "#/components/schemas/Link" dashboards: $ref: "#/components/schemas/Link" logs: $ref: "#/components/schemas/Link"
Introduced by #12748
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
self
andorg
has to be defined in a nested object:as it is common in rest of API:
Introduced by #12748
The text was updated successfully, but these errors were encountered: