{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/recipient_name", "title": "recipient_name", "description": "The name of the recipient to whom the card will be shipped", "properties": { "first_name": { "example": "Thea", "type": "string" }, "last_name": { "example": "Ritchie", "type": "string" }, "middle_name": { "example": "a", "type": "string" } }, "required": [ "first_name", "last_name" ], "type": "object" }