Auth0 · Schema

FlowActionStripeAddress

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
line1 string
line2 string
postalCode string
city string
state string
country string
View JSON Schema on GitHub

JSON Schema

auth0-flowactionstripeaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionStripeAddress",
  "title": "FlowActionStripeAddress",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "line1": {
      "type": "string",
      "maxLength": 250
    },
    "line2": {
      "type": "string",
      "maxLength": 250
    },
    "postalCode": {
      "type": "string",
      "maxLength": 250
    },
    "city": {
      "type": "string",
      "maxLength": 250
    },
    "state": {
      "type": "string",
      "maxLength": 250
    },
    "country": {
      "type": "string",
      "maxLength": 250
    }
  }
}