{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DriverProfile", "title": "DriverProfile", "type": "object", "properties": { "uuid": { "type": "string", "description": "Unique identifier for the driver." }, "first_name": { "type": "string", "description": "First name of the driver." }, "last_name": { "type": "string", "description": "Last name of the driver." }, "email": { "type": "string", "format": "email", "description": "Email address of the driver." }, "phone_number": { "type": "string", "description": "Phone number of the driver." }, "picture": { "type": "string", "format": "uri", "description": "Profile picture URL for the driver." }, "promo_code": { "type": "string", "description": "Driver's referral promo code." }, "activation_status": { "type": "string", "description": "Driver activation status." } } }