{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MemberSummary", "title": "MemberSummary", "type": "object", "description": "A summary of a member who performed an action.", "properties": { "_id": { "type": "string", "description": "The unique identifier of the member." }, "email": { "type": "string", "format": "email", "description": "The email address of the member." }, "firstName": { "type": "string", "description": "The first name of the member." }, "lastName": { "type": "string", "description": "The last name of the member." }, "_links": { "$ref": "#/components/schemas/Links" } } }