You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Authorization:
required: [orgID, permissions]allOf:
- $ref: "#/components/schemas/AuthorizationUpdateRequest"
- type: objectproperties:
orgID:
type: stringdescription: ID of org that authorization is scoped to.permissions:
type: arrayminLength: 1description: List of permissions for an auth. An auth must have at least one Permission.items:
$ref: "#/components/schemas/Permission"id:
readOnly: truetype: stringtoken:
readOnly: truetype: stringdescription: Passed via the Authorization Header and Token Authentication type.userID:
readOnly: truetype: stringdescription: ID of user that created and owns the token.user:
readOnly: truetype: stringdescription: Name of user that created and owns the token.org:
readOnly: truetype: stringdescription: Name of the org token is scoped to.links:
type: objectreadOnly: trueexample:
self: "/api/v2/authorizations/1"user: "/api/v2/users/12"properties:
self:
readOnly: truetype: stringformat: uriuser:
readOnly: truetype: stringformat: uri
but should be defined as:
Authorization:
required: [orgID, permissions]allOf:
- $ref: "#/components/schemas/AuthorizationUpdateRequest"
- type: objectproperties:
orgID:
type: stringdescription: ID of org that authorization is scoped to.permissions:
type: arrayminLength: 1description: List of permissions for an auth. An auth must have at least one Permission.items:
$ref: "#/components/schemas/Permission"id:
readOnly: truetype: stringtoken:
readOnly: truetype: stringdescription: Passed via the Authorization Header and Token Authentication type.userID:
readOnly: truetype: stringdescription: ID of user that created and owns the token.user:
readOnly: truetype: stringdescription: Name of user that created and owns the token.org:
readOnly: truetype: stringdescription: Name of the org token is scoped to.links:
type: objectreadOnly: trueexample:
self: "/api/v2/authorizations/1"user: "/api/v2/users/12"properties:
self:
readOnly: true$ref: "#/components/schemas/Link"user:
readOnly: true$ref: "#/components/schemas/Link"
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed because it has not had recent activity. Please reopen if this issue is still important to you. Thank you for your contributions.
The
Authorization
is defined as:but should be defined as:
The text was updated successfully, but these errors were encountered: