{ "$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-proposal-actions-schema.json", "title": "ProposalActions", "description": "
The actions to carry out if a proposal is APPROVED.
Applies only to Hyperledger Fabric.
", "type": "object", "properties": { "Invitations": { "allOf": [ { "$ref": "#/components/schemas/InviteActionList" }, { "description": " The actions to perform for anAPPROVED proposal to invite an Amazon Web Services account to create a member and join the network. "
}
]
},
"Removals": {
"allOf": [
{
"$ref": "#/components/schemas/RemoveActionList"
},
{
"description": " The actions to perform for an APPROVED proposal to remove a member from the network, which deletes the member and all associated member resources from the network. "
}
]
}
}
}