{ "$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 the CreationDate 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:

" } ] }, "NetworkSummary": { "$ref": "#/components/schemas/NetworkSummary" }, "Arn": { "allOf": [ { "$ref": "#/components/schemas/ArnString" }, { "description": "The Amazon Resource Name (ARN) of the invitation. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference." } ] } } }