{
  "page_ir": {
    "page_id": "register",
    "page_goal": "Allow new users to create an account with email, password, display name, agree to terms, and optionally sign up via social login. Inline validation and password strength indicator guide the user.",
    "style": {
      "tone": "friendly",
      "theme": "light",
      "density": "comfortable",
      "color_intent": "Pokemon brand red with clean white background"
    },
    "accessibility": {
      "required_labels": [
        "email_input",
        "password_input",
        "confirm_password_input",
        "display_name_input",
        "terms_checkbox",
        "privacy_checkbox",
        "submit_button"
      ],
      "skip_navigation": true,
      "focus_management": true,
      "announce_changes": []
    },
    "responsive": {
      "breakpoints": {
        "sm": 576,
        "md": 768,
        "lg": 992
      },
      "collapse_rules": [
        "social_buttons_row stacks vertically below sm",
        "form_card takes full width below md"
      ],
      "hidden_on_small": [],
      "stack_on_small": []
    },
    "constraints": [
      "Password minimum 8 characters with uppercase, lowercase, and number",
      "Confirm password must match password",
      "Email must be valid format",
      "Terms and Privacy checkboxes must be checked before submit"
    ],
    "seo_title": null,
    "seo_description": null
  },
  "data_ir": {
    "types": {},
    "state": {
      "loading": {
        "type": "boolean",
        "initial": false,
        "required": false,
        "constraints": {},
        "item_type": null
      },
      "passwordStrength": {
        "type": "number",
        "initial": 0,
        "required": false,
        "constraints": {
          "min": 0,
          "max": 4
        },
        "item_type": null
      },
      "passwordStrengthLabel": {
        "type": "string",
        "initial": "",
        "required": false,
        "constraints": {},
        "item_type": null
      }
    },
    "derived": {}
  },
  "data_fetch_ir": {
    "endpoints": {
      "2d518b0285b24f268baaa0e5df2b13a5": {
        "endpoint_id": "2d518b0285b24f268baaa0e5df2b13a5",
        "module": "User Management",
        "endpoint": "/users/register",
        "method": "POST",
        "path_params": {},
        "query_params": {},
        "body": {
          "email": "$form.email",
          "password": "$form.password",
          "role": "BUYER",
          "is_active": true,
          "is_verified": false
        },
        "fields": [
          "email"
        ],
        "response_target": "user",
        "response_transform": null,
        "trigger": "manual",
        "depends_on": [],
        "debounce_ms": null,
        "loading_field": null,
        "error_field": null
      },
      "d5a0ee769cde42089138335f104c0f2d": {
        "endpoint_id": "d5a0ee769cde42089138335f104c0f2d",
        "module": "User Management",
        "endpoint": "/users/profiles",
        "method": "POST",
        "path_params": {},
        "query_params": {},
        "body": {
          "display_name": "$form.display_name",
          "user_id": "$state.registeredUserId"
        },
        "fields": [
          "display_name",
          "id",
          "user_id"
        ],
        "response_target": "userProfile",
        "response_transform": null,
        "trigger": "manual",
        "depends_on": [],
        "debounce_ms": null,
        "loading_field": null,
        "error_field": null
      }
    }
  },
  "data_model_ir": {
    "entities": {
      "user": {
        "name": "User",
        "backend_module": "User Management",
        "fields": [
          "email",
          "password",
          "role",
          "is_active",
          "is_verified"
        ],
        "computed": [],
        "display_fields": [
          "email"
        ],
        "search_fields": [],
        "filters": [],
        "default_sort": null,
        "default_sort_dir": "asc"
      },
      "userProfile": {
        "name": "UserProfile",
        "backend_module": "User Management",
        "fields": [
          "first_name",
          "last_name",
          "display_name",
          "bio",
          "avatar_url",
          "phone",
          "location",
          "timezone",
          "id",
          "user_id",
          "created_at",
          "updated_at"
        ],
        "computed": [],
        "display_fields": [
          "display_name"
        ],
        "search_fields": [],
        "filters": [],
        "default_sort": null,
        "default_sort_dir": "asc"
      }
    },
    "relationships": []
  },
  "behaviour_ir": {
    "events": {
      "onPasswordChange": {
        "type": "mutation",
        "updates": [
          {
            "target": "state.passwordStrength",
            "expr": "calculatePasswordStrength(value)"
          },
          {
            "target": "state.passwordStrengthLabel",
            "expr": "getPasswordStrengthLabel(calculatePasswordStrength(value))"
          }
        ],
        "description": ""
      }
    },
    "actions": {
      "01357691c30841799ee130d5ffbcedac": {
        "action_id": "01357691c30841799ee130d5ffbcedac",
        "trigger": "form_submit",
        "target_component_id": "register_form",
        "operation": "create",
        "description": "",
        "payload": {},
        "guard": null,
        "requires_confirmation": false,
        "confirmation_message": null,
        "validation_rules": [
          {
            "rule_id": "val_0",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"email\", \"message\": \"Please enter your email address\", \"rule_id\": \"val_email\", \"type\": \"required\"}",
            "message": "{\"field\": \"email\", \"message\": \"Please enter your email address\", \"rule_id\": \"val_email\", \"type\": \"required\"}"
          },
          {
            "rule_id": "val_1",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"email\", \"message\": \"Please enter a valid email address\", \"rule_id\": \"val_email_format\", \"type\": \"email\"}",
            "message": "{\"field\": \"email\", \"message\": \"Please enter a valid email address\", \"rule_id\": \"val_email_format\", \"type\": \"email\"}"
          },
          {
            "rule_id": "val_2",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"display_name\", \"message\": \"Please enter a display name\", \"rule_id\": \"val_display_name\", \"type\": \"required\"}",
            "message": "{\"field\": \"display_name\", \"message\": \"Please enter a display name\", \"rule_id\": \"val_display_name\", \"type\": \"required\"}"
          },
          {
            "rule_id": "val_3",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"display_name\", \"message\": \"Display name must be at least 2 characters\", \"rule_id\": \"val_display_name_min\", \"type\": \"min_length\", \"value\": 2}",
            "message": "{\"field\": \"display_name\", \"message\": \"Display name must be at least 2 characters\", \"rule_id\": \"val_display_name_min\", \"type\": \"min_length\", \"value\": 2}"
          },
          {
            "rule_id": "val_4",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"password\", \"message\": \"Please enter a password\", \"rule_id\": \"val_password\", \"type\": \"required\"}",
            "message": "{\"field\": \"password\", \"message\": \"Please enter a password\", \"rule_id\": \"val_password\", \"type\": \"required\"}"
          },
          {
            "rule_id": "val_5",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"password\", \"message\": \"Password must be at least 8 characters\", \"rule_id\": \"val_password_min\", \"type\": \"min_length\", \"value\": 8}",
            "message": "{\"field\": \"password\", \"message\": \"Password must be at least 8 characters\", \"rule_id\": \"val_password_min\", \"type\": \"min_length\", \"value\": 8}"
          },
          {
            "rule_id": "val_6",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"password\", \"message\": \"Password must contain uppercase, lowercase, and a number\", \"rule_id\": \"val_password_pattern\", \"type\": \"pattern\", \"value\": \"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\\\d).{8,}$\"}",
            "message": "{\"field\": \"password\", \"message\": \"Password must contain uppercase, lowercase, and a number\", \"rule_id\": \"val_password_pattern\", \"type\": \"pattern\", \"value\": \"^(?=.*[a-z])(?=.*[A-Z])(?=.*\\\\d).{8,}$\"}"
          },
          {
            "rule_id": "val_7",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"confirm_password\", \"message\": \"Please confirm your password\", \"rule_id\": \"val_confirm_password\", \"type\": \"required\"}",
            "message": "{\"field\": \"confirm_password\", \"message\": \"Please confirm your password\", \"rule_id\": \"val_confirm_password\", \"type\": \"required\"}"
          },
          {
            "rule_id": "val_8",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"confirm_password\", \"message\": \"Passwords do not match\", \"rule_id\": \"val_confirm_match\", \"type\": \"custom\", \"value\": \"confirm_password === password\"}",
            "message": "{\"field\": \"confirm_password\", \"message\": \"Passwords do not match\", \"rule_id\": \"val_confirm_match\", \"type\": \"custom\", \"value\": \"confirm_password === password\"}"
          },
          {
            "rule_id": "val_9",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"terms_accepted\", \"message\": \"You must accept the Terms of Service\", \"rule_id\": \"val_terms\", \"type\": \"required\"}",
            "message": "{\"field\": \"terms_accepted\", \"message\": \"You must accept the Terms of Service\", \"rule_id\": \"val_terms\", \"type\": \"required\"}"
          },
          {
            "rule_id": "val_10",
            "field": null,
            "type": "custom",
            "value": null,
            "expression": "{\"field\": \"privacy_accepted\", \"message\": \"You must accept the Privacy Policy\", \"rule_id\": \"val_privacy\", \"type\": \"required\"}",
            "message": "{\"field\": \"privacy_accepted\", \"message\": \"You must accept the Privacy Policy\", \"rule_id\": \"val_privacy\", \"type\": \"required\"}"
          }
        ],
        "validation_messages": {},
        "updates": [
          {
            "target": "state.loading",
            "expr": "true"
          }
        ],
        "api_endpoint": "2d518b0285b24f268baaa0e5df2b13a5",
        "api_body": "{ email: formValues.email, password: formValues.password, role: 'BUYER', is_active: true, is_verified: false }",
        "side_effects": [
          {
            "type": "toast",
            "config": {
              "message": "Account created! Please check your email to verify your account.",
              "type": "success"
            }
          },
          {
            "type": "navigate",
            "config": {
              "path": "/login"
            }
          }
        ],
        "then": null,
        "catch": null,
        "data_action": null
      },
      "af7c34b405e54f02bffa0f6e109f3312": {
        "action_id": "af7c34b405e54f02bffa0f6e109f3312",
        "trigger": "button_click",
        "target_component_id": "login_link",
        "operation": "custom",
        "description": "",
        "payload": {},
        "guard": null,
        "requires_confirmation": false,
        "confirmation_message": null,
        "validation_rules": [],
        "validation_messages": {},
        "updates": [],
        "api_endpoint": null,
        "api_body": null,
        "side_effects": [
          {
            "type": "navigate",
            "config": {
              "path": "/login"
            }
          }
        ],
        "then": null,
        "catch": null,
        "data_action": null
      },
      "6037582b2be24451844b7c1cdff096b6": {
        "action_id": "6037582b2be24451844b7c1cdff096b6",
        "trigger": "button_click",
        "target_component_id": "google_login_btn",
        "operation": "custom",
        "description": "",
        "payload": {
          "provider": "google"
        },
        "guard": null,
        "requires_confirmation": false,
        "confirmation_message": null,
        "validation_rules": [],
        "validation_messages": {},
        "updates": [],
        "api_endpoint": null,
        "api_body": null,
        "side_effects": [
          {
            "type": "custom",
            "config": {
              "action": "initiate_oauth",
              "provider": "google"
            }
          }
        ],
        "then": null,
        "catch": null,
        "data_action": null
      },
      "6b176ab9703d4b81a2c428ffa0ce5725": {
        "action_id": "6b176ab9703d4b81a2c428ffa0ce5725",
        "trigger": "button_click",
        "target_component_id": "facebook_login_btn",
        "operation": "custom",
        "description": "",
        "payload": {
          "provider": "facebook"
        },
        "guard": null,
        "requires_confirmation": false,
        "confirmation_message": null,
        "validation_rules": [],
        "validation_messages": {},
        "updates": [],
        "api_endpoint": null,
        "api_body": null,
        "side_effects": [
          {
            "type": "custom",
            "config": {
              "action": "initiate_oauth",
              "provider": "facebook"
            }
          }
        ],
        "then": null,
        "catch": null,
        "data_action": null
      }
    },
    "feedback": {
      "01357691c30841799ee130d5ffbcedac": {
        "action_id": "01357691c30841799ee130d5ffbcedac",
        "loading_indicator": "spinner",
        "loading_text": null,
        "success_message": "Account created successfully! Please check your email to verify.",
        "error_message": "Registration failed. Please try again.",
        "ui_updates": [
          "state.loading = false"
        ]
      },
      "af7c34b405e54f02bffa0f6e109f3312": {
        "action_id": "af7c34b405e54f02bffa0f6e109f3312",
        "loading_indicator": "none",
        "loading_text": null,
        "success_message": "",
        "error_message": "",
        "ui_updates": []
      },
      "6037582b2be24451844b7c1cdff096b6": {
        "action_id": "6037582b2be24451844b7c1cdff096b6",
        "loading_indicator": "spinner",
        "loading_text": null,
        "success_message": "Signed in with Google!",
        "error_message": "Google sign-in failed. Please try again.",
        "ui_updates": []
      },
      "6b176ab9703d4b81a2c428ffa0ce5725": {
        "action_id": "6b176ab9703d4b81a2c428ffa0ce5725",
        "loading_indicator": "spinner",
        "loading_text": null,
        "success_message": "Signed in with Facebook!",
        "error_message": "Facebook sign-in failed. Please try again.",
        "ui_updates": []
      }
    }
  },
  "component_ir": {
    "library": "antd",
    "theme": {
      "primaryColor": "#E3350D",
      "secondaryColor": "#1a1a2e",
      "successColor": null,
      "warningColor": null,
      "errorColor": null,
      "fontFamily": "sans-serif",
      "fontSize": null,
      "borderRadius": 8
    },
    "components": {
      "page_container": {
        "type": "div",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "minHeight": "100vh",
          "width": "100%",
          "display": "flex",
          "flexDirection": "column",
          "alignItems": "center",
          "justifyContent": "center",
          "background": "linear-gradient(135deg, #fef3f0 0%, #ffffff 50%, #fff5f3 100%)",
          "padding": "24px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "form_card": {
        "type": "Card",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "bordered": false
        },
        "dynamic_props": {},
        "styles": {
          "width": "100%",
          "maxWidth": "480px",
          "boxShadow": "0 4px 24px rgba(0,0,0,0.08)",
          "borderRadius": "12px",
          "padding": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "header_section": {
        "type": "div",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "textAlign": "center",
          "marginBottom": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "logo_text": {
        "type": "Typography.Title",
        "label": "PokeResell",
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "level": 3
        },
        "dynamic_props": {},
        "styles": {
          "color": "#E3350D",
          "marginBottom": "4px",
          "fontWeight": 700
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "page_title": {
        "type": "Typography.Title",
        "label": "Create Your Account",
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "level": 4
        },
        "dynamic_props": {},
        "styles": {
          "marginBottom": "4px",
          "marginTop": "0"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "page_subtitle": {
        "type": "Typography.Text",
        "label": "Join the largest Pokémon card marketplace",
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "type": "secondary"
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "social_section": {
        "type": "div",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "marginBottom": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "social_buttons_row": {
        "type": "Space",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "direction": "vertical",
          "size": 12,
          "style": {
            "width": "100%"
          }
        },
        "dynamic_props": {},
        "styles": {
          "width": "100%"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "google_login_btn": {
        "type": "Button",
        "label": "Continue with Google",
        "description": null,
        "bind": null,
        "onClick": "socialLoginGoogle",
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "block": true,
          "size": "large",
          "icon": "GoogleOutlined"
        },
        "dynamic_props": {},
        "styles": {
          "height": "44px",
          "borderRadius": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "facebook_login_btn": {
        "type": "Button",
        "label": "Continue with Facebook",
        "description": null,
        "bind": null,
        "onClick": "socialLoginFacebook",
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "block": true,
          "size": "large",
          "icon": "FacebookOutlined"
        },
        "dynamic_props": {},
        "styles": {
          "height": "44px",
          "borderRadius": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "divider": {
        "type": "Divider",
        "label": "or sign up with email",
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "margin": "16px 0"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "register_form": {
        "type": "Form",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "layout": "vertical",
          "requiredMark": true,
          "size": "large"
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "display_name_field": {
        "type": "Form.Item",
        "label": "Display Name",
        "description": null,
        "bind": "display_name",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "name": "display_name",
          "rules": [
            {
              "required": true,
              "message": "Please enter a display name"
            },
            {
              "min": 2,
              "message": "Display name must be at least 2 characters"
            }
          ]
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "display_name_input": {
        "type": "Input",
        "label": "Display Name",
        "description": null,
        "bind": "display_name",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "placeholder": "Choose a display name",
          "prefix": "UserOutlined",
          "maxLength": 50
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "email_field": {
        "type": "Form.Item",
        "label": "Email Address",
        "description": null,
        "bind": "email",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "name": "email",
          "rules": [
            {
              "required": true,
              "message": "Please enter your email address"
            },
            {
              "type": "email",
              "message": "Please enter a valid email address"
            }
          ]
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "email_input": {
        "type": "Input",
        "label": "Email Address",
        "description": null,
        "bind": "email",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "placeholder": "you@example.com",
          "prefix": "MailOutlined",
          "type": "email"
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "password_field": {
        "type": "Form.Item",
        "label": "Password",
        "description": null,
        "bind": "password",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "name": "password",
          "rules": [
            {
              "required": true,
              "message": "Please enter a password"
            },
            {
              "min": 8,
              "message": "Password must be at least 8 characters"
            },
            {
              "pattern": "^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d).{8,}$",
              "message": "Must contain uppercase, lowercase, and a number"
            }
          ]
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "password_input": {
        "type": "Input.Password",
        "label": "Password",
        "description": null,
        "bind": "password",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "placeholder": "Create a strong password",
          "prefix": "LockOutlined"
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "password_strength_container": {
        "type": "div",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "marginTop": "-16px",
          "marginBottom": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "password_strength_bar": {
        "type": "Progress",
        "label": null,
        "description": null,
        "bind": "state.passwordStrength",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "percent": "state.passwordStrength * 25",
          "showInfo": false,
          "size": "small",
          "strokeColor": {
            "0": "#ff4d4f",
            "25": "#ff7a45",
            "50": "#ffc53d",
            "75": "#73d13d",
            "100": "#52c41a"
          }
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "password_strength_text": {
        "type": "Typography.Text",
        "label": null,
        "description": null,
        "bind": "state.passwordStrengthLabel",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "type": "secondary"
        },
        "dynamic_props": {},
        "styles": {
          "fontSize": "12px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "confirm_password_field": {
        "type": "Form.Item",
        "label": "Confirm Password",
        "description": null,
        "bind": "confirm_password",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "name": "confirm_password",
          "dependencies": [
            "password"
          ],
          "rules": [
            {
              "required": true,
              "message": "Please confirm your password"
            },
            {
              "validator": "matchPassword",
              "message": "Passwords do not match"
            }
          ]
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "confirm_password_input": {
        "type": "Input.Password",
        "label": "Confirm Password",
        "description": null,
        "bind": "confirm_password",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "placeholder": "Re-enter your password",
          "prefix": "LockOutlined"
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "agreements_section": {
        "type": "div",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "marginBottom": "16px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "terms_field": {
        "type": "Form.Item",
        "label": null,
        "description": null,
        "bind": "terms_accepted",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "name": "terms_accepted",
          "valuePropName": "checked",
          "rules": [
            {
              "validator": "checkboxRequired",
              "message": "You must accept the Terms of Service"
            }
          ]
        },
        "dynamic_props": {},
        "styles": {
          "marginBottom": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "terms_checkbox": {
        "type": "Checkbox",
        "label": "I agree to the Terms of Service",
        "description": null,
        "bind": "terms_accepted",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "privacy_field": {
        "type": "Form.Item",
        "label": null,
        "description": null,
        "bind": "privacy_accepted",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "name": "privacy_accepted",
          "valuePropName": "checked",
          "rules": [
            {
              "validator": "checkboxRequired",
              "message": "You must accept the Privacy Policy"
            }
          ]
        },
        "dynamic_props": {},
        "styles": {
          "marginBottom": "8px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "privacy_checkbox": {
        "type": "Checkbox",
        "label": "I agree to the Privacy Policy",
        "description": null,
        "bind": "privacy_accepted",
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "submit_button": {
        "type": "Button",
        "label": "Create Account",
        "description": null,
        "bind": null,
        "onClick": "submitRegistration",
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "type": "primary",
          "htmlType": "submit",
          "block": true,
          "size": "large",
          "loading": "state.loading"
        },
        "dynamic_props": {},
        "styles": {
          "height": "48px",
          "borderRadius": "8px",
          "fontWeight": 600,
          "fontSize": "16px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "login_section": {
        "type": "div",
        "label": null,
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {},
        "dynamic_props": {},
        "styles": {
          "textAlign": "center",
          "marginTop": "16px"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "login_prompt_text": {
        "type": "Typography.Text",
        "label": "Already have an account? ",
        "description": null,
        "bind": null,
        "onClick": null,
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "type": "secondary"
        },
        "dynamic_props": {},
        "styles": {},
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      },
      "login_link": {
        "type": "Typography.Link",
        "label": "Log In",
        "description": null,
        "bind": null,
        "onClick": "navigateToLogin",
        "onChange": null,
        "onSubmit": null,
        "onHover": null,
        "onKeyPress": null,
        "props": {
          "strong": true
        },
        "dynamic_props": {},
        "styles": {
          "color": "#E3350D"
        },
        "dynamic_styles": {},
        "class_name": null,
        "dynamic_class": null,
        "transitions": [],
        "visible_when": null,
        "disabled_when": null,
        "repeat": null,
        "slots": {},
        "a11y_role": null,
        "a11y_label": null
      }
    }
  },
  "layout_ir": {
    "root": "page_container",
    "children": {
      "page_container": [
        "form_card"
      ],
      "form_card": [
        "header_section",
        "social_section",
        "divider",
        "register_form",
        "login_section"
      ],
      "header_section": [
        "logo_text",
        "page_title",
        "page_subtitle"
      ],
      "social_section": [
        "social_buttons_row"
      ],
      "social_buttons_row": [
        "google_login_btn",
        "facebook_login_btn"
      ],
      "register_form": [
        "display_name_field",
        "email_field",
        "password_field",
        "password_strength_container",
        "confirm_password_field",
        "agreements_section",
        "submit_button"
      ],
      "display_name_field": [
        "display_name_input"
      ],
      "email_field": [
        "email_input"
      ],
      "password_field": [
        "password_input"
      ],
      "password_strength_container": [
        "password_strength_bar",
        "password_strength_text"
      ],
      "confirm_password_field": [
        "confirm_password_input"
      ],
      "agreements_section": [
        "terms_field",
        "privacy_field"
      ],
      "terms_field": [
        "terms_checkbox"
      ],
      "privacy_field": [
        "privacy_checkbox"
      ],
      "login_section": [
        "login_prompt_text",
        "login_link"
      ]
    },
    "layout": {
      "page_container": {
        "type": "vertical",
        "gap": 0,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "form_card": {
        "type": "vertical",
        "gap": 0,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "header_section": {
        "type": "vertical",
        "gap": 4,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "social_section": {
        "type": "vertical",
        "gap": 12,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "social_buttons_row": {
        "type": "vertical",
        "gap": 12,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "register_form": {
        "type": "vertical",
        "gap": 0,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "password_strength_container": {
        "type": "vertical",
        "gap": 4,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "agreements_section": {
        "type": "vertical",
        "gap": 0,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      },
      "login_section": {
        "type": "horizontal",
        "gap": 4,
        "padding": null,
        "columns": null,
        "column_template": null,
        "row_template": null,
        "align_items": null,
        "justify_content": null,
        "wrap": false,
        "min_height": null,
        "overflow": null
      }
    },
    "layout_zones": [
      {
        "zone_id": "main_form_zone",
        "component": "form_card",
        "anchor": "center",
        "size_hint": "480px",
        "z_layer": "base",
        "notes": "Centered registration card with max-width constraint"
      }
    ],
    "responsive_overrides": []
  },
  "navigation_ir": {
    "tabs": [],
    "modals": {},
    "drawers": {},
    "routes": [],
    "breadcrumb": null,
    "default_tab": null
  },
  "realtime_ir": {
    "timers": {},
    "polling": {}
  },
  "metadata": {
    "ir_version": "3.5",
    "generated_at": "",
    "source_prompt": null,
    "schema_session_id": null,
    "warnings": []
  },
  "page_data_contract": null,
  "schema_ir": null
}
