{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-blockchain/refs/heads/main/json-schema/amazon-managed-blockchain-invitation-schema.json", "title": "Invitation", "description": "
An invitation to an Amazon Web Services account to create a member and join the network.
Applies only to Hyperledger Fabric.
", "type": "object", "properties": { "InvitationId": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": "The unique identifier for the invitation." } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time that the invitation was created." } ] }, "ExpirationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time that the invitation expires. This is theCreationDate plus the ProposalDurationInHours that is specified in the ProposalThresholdPolicy. After this date and time, the invitee can no longer create a member and join the network using this InvitationId."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/InvitationStatus"
},
{
"description": "The status of the invitation:
PENDING - The invitee hasn't created a member to join the network, and the invitation hasn't yet expired.
ACCEPTING - The invitee has begun creating a member, and creation hasn't yet completed.
ACCEPTED - The invitee created a member and joined the network using the InvitationID.
REJECTED - The invitee rejected the invitation.
EXPIRED - The invitee neither created a member nor rejected the invitation before the ExpirationDate.