Auth0 · Schema

FlowActionStripeAddTaxIdParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
customer_id string
type string
value string
View JSON Schema on GitHub

JSON Schema

auth0-flowactionstripeaddtaxidparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionStripeAddTaxIdParams",
  "title": "FlowActionStripeAddTaxIdParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "customer_id",
    "type",
    "value"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "customer_id": {
      "type": "string",
      "maxLength": 250
    },
    "type": {
      "type": "string",
      "maxLength": 250
    },
    "value": {
      "type": "string",
      "maxLength": 250
    }
  }
}