changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "instructions": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "message": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "previous_status": {
+ "description": "The prior session status if this call is restarting a stale session",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "One of: already_verified, processing, redirect_required",
+ "type": "string"
+ },
+ "verification_url": {
+ "description": "Stripe Identity URL the user opens in their browser. Present when status=redirect_required.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "verified_name": {
+ "description": "Set when status=already_verified",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "status"
+ ],
+ "type": "object"
+}