{ "$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-summary-schema.json", "title": "ProposalSummary", "description": "

Properties of a proposal.

Applies only to Hyperledger Fabric.

", "type": "object", "properties": { "ProposalId": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": " The unique identifier of the proposal. " } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/DescriptionString" }, { "description": " The description of the proposal. " } ] }, "ProposedByMemberId": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": " The unique identifier of the member that created the proposal. " } ] }, "ProposedByMemberName": { "allOf": [ { "$ref": "#/components/schemas/NetworkMemberNameString" }, { "description": " The name of the member that created the proposal. " } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/ProposalStatus" }, { "description": "

The status of the proposal. Values are as follows:

" } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": " The date and time that the proposal was created. " } ] }, "ExpirationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": " The date and time that the proposal expires. This is the CreationDate plus the ProposalDurationInHours that is specified in the ProposalThresholdPolicy. After this date and time, if members haven't cast enough votes to determine the outcome according to the voting policy, the proposal is EXPIRED and Actions aren't carried out. " } ] }, "Arn": { "allOf": [ { "$ref": "#/components/schemas/ArnString" }, { "description": "The Amazon Resource Name (ARN) of the proposal. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference." } ] } } }