PayPal · Schema

Birth details

Date of birth data provided by the user

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
date_of_birth object date of birth, fomrat [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).
View JSON Schema on GitHub

JSON Schema

paypal-birth-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/birth_details",
  "title": "Birth details",
  "type": "object",
  "description": "Date of birth data provided by the user",
  "properties": {
    "date_of_birth": {
      "description": "date of birth, fomrat [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).",
      "$ref": "#/components/schemas/date_no_time"
    }
  },
  "required": [
    "date_of_birth"
  ]
}