Durable accept or decline response authored by the invitee (ADR 82).
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
decision
string
Required
No description available.
Known values:
accepted, declinedinviteId
string
Required
No description available.
inviterDid
string
did
Required
A decentralized identifier (DID).
offerUri
string
uri
Required
A valid URI.
View raw schema
{
"type": "object",
"required": [
"inviteId",
"offerUri",
"inviterDid",
"decision",
"createdAt"
],
"properties": {
"decision": {
"type": "string",
"knownValues": [
"accepted",
"declined"
]
},
"inviteId": {
"type": "string"
},
"offerUri": {
"type": "string",
"format": "uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"inviterDid": {
"type": "string",
"format": "did"
}
},
"description": "Durable accept or decline response authored by the invitee (ADR 82)."
}