A person's name split into first and last components.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/affirm/refs/heads/main/json-schema/checkout-name-object-schema.json", "title": "NameObject", "description": "A person's name split into first and last components.", "type": "object", "properties": { "first": { "type": "string", "description": "First name.", "example": "example_value" }, "last": { "type": "string", "description": "Last name.", "example": "example_value" }, "full": { "type": "string", "description": "Full name as a single string.", "example": "example_value" } } }