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
Problem description
Currently the sinkCredential has a not needed allOf here in the request.
sinkCredential:
allOf:
- description: A sink credential provides authentication or authorization information necessary to enable delivery of events to a target.
- $ref: "#/components/schemas/SinkCredential"
Expected behavior
Remove the allOf and move the description to the SinkCredential-component
sinkCredential:
$ref: "#/components/schemas/SinkCredential"<....>SinkCredential:
description: A sink credential provides authentication or authorization information necessary to enable delivery of events to a target.type: objectproperties:
credentialType:
type: stringenum:
- PLAIN
- ACCESSTOKEN
- REFRESHTOKENdescription: "The type of the credential."discriminator:
propertyName: credentialTypemapping:
PLAIN: "#/components/schemas/PlainCredential"ACCESSTOKEN: "#/components/schemas/AccessTokenCredential"REFRESHTOKEN: "#/components/schemas/RefreshTokenCredential"required:
- credentialType
The text was updated successfully, but these errors were encountered:
Problem description
Currently the sinkCredential has a not needed allOf here in the request.
Commonalities:
https://github.com/camaraproject/Commonalities/blob/main/artifacts/camara-cloudevents/event-subscription-template.yaml#L299-L300
Expected behavior
Remove the allOf and move the description to the
SinkCredential
-componentThe text was updated successfully, but these errors were encountered: