Amazon Managed Blockchain · Schema
Invitation
An invitation to an Amazon Web Services account to create a member and join the network.
Applies only to Hyperledger Fabric.
BlockchainDistributed LedgerHyperledger FabricEthereum
Properties
| Name | Type | Description |
|---|---|---|
| InvitationId | object | |
| CreationDate | object | |
| ExpirationDate | object | |
| Status | object | |
| NetworkSummary | object | |
| Arn | object |
JSON Schema
{
"$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": "<p>An invitation to an Amazon Web Services account to create a member and join the network.</p> <p>Applies only to Hyperledger Fabric.</p>",
"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 <code>CreationDate</code> plus the <code>ProposalDurationInHours</code> that is specified in the <code>ProposalThresholdPolicy</code>. After this date and time, the invitee can no longer create a member and join the network using this <code>InvitationId</code>."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/InvitationStatus"
},
{
"description": "<p>The status of the invitation:</p> <ul> <li> <p> <code>PENDING</code> - The invitee hasn't created a member to join the network, and the invitation hasn't yet expired.</p> </li> <li> <p> <code>ACCEPTING</code> - The invitee has begun creating a member, and creation hasn't yet completed.</p> </li> <li> <p> <code>ACCEPTED</code> - The invitee created a member and joined the network using the <code>InvitationID</code>.</p> </li> <li> <p> <code>REJECTED</code> - The invitee rejected the invitation.</p> </li> <li> <p> <code>EXPIRED</code> - The invitee neither created a member nor rejected the invitation before the <code>ExpirationDate</code>.</p> </li> </ul>"
}
]
},
"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 <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>."
}
]
}
}
}