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

A summary of configuration properties for a member.

Applies only to Hyperledger Fabric.

", "type": "object", "properties": { "Id": { "allOf": [ { "$ref": "#/components/schemas/ResourceIdString" }, { "description": "The unique identifier of the member." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/NetworkMemberNameString" }, { "description": "The name of the member." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/DescriptionString" }, { "description": "An optional description of the member." } ] }, "Status": { "allOf": [ { "$ref": "#/components/schemas/MemberStatus" }, { "description": "

The status of the member.

" } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time that the member was created." } ] }, "IsOwned": { "allOf": [ { "$ref": "#/components/schemas/IsOwned" }, { "description": "An indicator of whether the member is owned by your Amazon Web Services account or a different Amazon Web Services account." } ] }, "Arn": { "allOf": [ { "$ref": "#/components/schemas/ArnString" }, { "description": "The Amazon Resource Name (ARN) of the member. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference." } ] } } }