Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion IETF-RFC.md
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ A 201 response status means the Share Creation Notification Request was
successful. In this case, the response body MUST contain a JSON
document representing an object with the following string fields:
- REQUIRED: `recipientDisplayName` - the Recipient's display name.
- OPTIONAL: `recipientPublicKey` - the Recipient's public key.
- OPTIONAL: `recipientPublicKeys` - the Recipient's public key(s).
This property MUST be returned when the protocol of the incoming
share was `ssh`.
A 400 response status means some parameters were invalid or missing.
Expand Down
8 changes: 5 additions & 3 deletions spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,12 @@ paths:
description: >
Display name of the recipient
example: John Doe
recipientPublicKey:
type: string
recipientPublicKeys:
type: array
items:
type: string
description: >
The public key of the recipient. This value MUST be provided
The public key(s) of the recipient. This value MUST be provided
in case the Share Creation Notification includes the `ssh` protocol.
"400":
description: >
Expand Down
Loading