Data Formatting and Transformation Examples

/app/tests/data-formatting-examples.yaml

medium
10 Steps
Duration: 22ms
Success Rate: 100%
Successful Steps
10
100% success rate
Failed Steps
0
0% of total
⏭️
Skipped Steps
0
0% of total
🔗
HTTP Requests
10
100% requests
🔄
Iterações
0
0 steps com iterações

📊 Execution Timeline

# Status Step Name Type Duration Started At Details
1
Get user data for formatting
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
2
Format users - Essential fields only
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
3
Format users - Summary report
POST /post
request
1ms 19/10/2025, 10:28:39
✅ Request completed successfully
4
Get product data for formatting
POST /post
request
1ms 19/10/2025, 10:28:39
✅ Request completed successfully
5
Format products - Multiple catalog views
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
6
Advanced formatting - Complex transformations
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
7
Format for CSV-style output
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
8
Format for API response structure
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
9
Conditional formatting based on data values
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
10
Collect formatting results summary
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully

🌐 HTTP Requests Debug Info

Get user data for formatting

Step #1

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","last_login":"2024-01-15T10:30:00Z","profile":{"department":"Engineering","level":"senior","salary":95000}},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","last_login":"2024-01-14T15:45:00Z","profile":{"department":"Sales","level":"junior","salary":65000}},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","last_login":"2023-12-20T09:15:00Z","profile":{"department":"Marketing","level":"mid","salary":75000}}],"metadata":{"total_count":3,"timestamp":"2024-01-15T12:00:00Z","source":"user_management_system"}}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "users": [
    {
      "id": 1,
      "name": "Alice Johnson",
      "email": "alice@example.com",
      "status": "active",
      "role": "admin",
      "last_login": "2024-01-15T10:30:00Z",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      }
    },
    {
      "id": 2,
      "name": "Bob Smith",
      "email": "bob@example.com",
      "status": "active",
      "role": "user",
      "last_login": "2024-01-14T15:45:00Z",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      }
    },
    {
      "id": 3,
      "name": "Charlie Brown",
      "email": "charlie@example.com",
      "status": "inactive",
      "role": "moderator",
      "last_login": "2023-12-20T09:15:00Z",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      }
    }
  ],
  "metadata": {
    "total_count": 3,
    "timestamp": "2024-01-15T12:00:00Z",
    "source": "user_management_system"
  }
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1847 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 2404
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"last_login\":\"2024-01-15T10:30:00Z\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000}},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"last_login\":\"2024-01-14T15:45:00Z\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000}},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"last_login\":\"2023-12-20T09:15:00Z\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000}}],\"metadata\":{\"total_count\":3,\"timestamp\":\"2024-01-15T12:00:00Z\",\"source\":\"user_management_system\"}}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "699",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "metadata": {
      "source": "user_management_system",
      "timestamp": "2024-01-15T12:00:00Z",
      "total_count": 3
    },
    "users": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "raw_users_data": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ],
  "response_metadata": {
    "source": "user_management_system",
    "timestamp": "2024-01-15T12:00:00Z",
    "total_count": 3
  }
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Format users - Essential fields only

Step #2

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"format_users_essential","raw_data":[{"email":"alice@example.com","id":1,"last_login":"2024-01-15T10:30:00Z","name":"Alice Johnson","profile":{"department":"Engineering","level":"senior","salary":95000},"role":"admin","status":"active"},{"email":"bob@example.com","id":2,"last_login":"2024-01-14T15:45:00Z","name":"Bob Smith","profile":{"department":"Sales","level":"junior","salary":65000},"role":"user","status":"active"},{"email":"charlie@example.com","id":3,"last_login":"2023-12-20T09:15:00Z","name":"Charlie Brown","profile":{"department":"Marketing","level":"mid","salary":75000},"role":"moderator","status":"inactive"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "format_users_essential",
  "raw_data": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1723 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 2249
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"format_users_essential\",\"raw_data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "641",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "format_users_essential",
    "raw_data": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "essential_users": [
    {
      "user_id": 1,
      "full_name": "Alice Johnson",
      "email_address": "alice@example.com"
    },
    {
      "user_id": 2,
      "full_name": "Bob Smith",
      "email_address": "bob@example.com"
    },
    {
      "user_id": 3,
      "full_name": "Charlie Brown",
      "email_address": "charlie@example.com"
    }
  ],
  "user_names_only": [
    "Alice Johnson",
    "Bob Smith",
    "Charlie Brown"
  ],
  "active_user_emails": [
    "alice@example.com",
    "bob@example.com"
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Format users - Summary report

Step #3

1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"format_users_summary","users":[{"email":"alice@example.com","id":1,"last_login":"2024-01-15T10:30:00Z","name":"Alice Johnson","profile":{"department":"Engineering","level":"senior","salary":95000},"role":"admin","status":"active"},{"email":"bob@example.com","id":2,"last_login":"2024-01-14T15:45:00Z","name":"Bob Smith","profile":{"department":"Sales","level":"junior","salary":65000},"role":"user","status":"active"},{"email":"charlie@example.com","id":3,"last_login":"2023-12-20T09:15:00Z","name":"Charlie Brown","profile":{"department":"Marketing","level":"mid","salary":75000},"role":"moderator","status":"inactive"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "format_users_summary",
  "users": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 1ms
Size: 1713 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 2239
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"format_users_summary\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "636",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "format_users_summary",
    "users": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "user_summary": {
    "total_users": 3,
    "active_count": 2,
    "department_list": [
      "Engineering",
      "Sales",
      "Marketing"
    ]
  },
  "salary_report": [
    {
      "name": "Alice Johnson",
      "department": "Engineering",
      "salary_formatted": 95000
    },
    {
      "name": "Bob Smith",
      "department": "Sales",
      "salary_formatted": 65000
    },
    {
      "name": "Charlie Brown",
      "department": "Marketing",
      "salary_formatted": 75000
    }
  ],
  "admin_users": [
    {
      "name": "Alice Johnson",
      "email": "alice@example.com"
    }
  ],
  "regular_users": [
    {
      "name": "Bob Smith",
      "department": "Sales"
    }
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Get product data for formatting

Step #4

1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"products":[{"id":"PROD-001","title":"Premium Laptop","price":1299.99,"category":"electronics","brand":"TechCorp","tags":["premium","laptop","gaming"],"inventory":{"stock":25,"warehouse":"US-WEST"}},{"id":"PROD-002","title":"Basic Mouse","price":19.99,"category":"accessories","brand":"BasicTech","tags":["basic","mouse","office"],"inventory":{"stock":150,"warehouse":"US-EAST"}}],"catalog_info":{"total_items":2,"last_updated":"2024-01-15T10:00:00Z"}}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "products": [
    {
      "id": "PROD-001",
      "title": "Premium Laptop",
      "price": 1299.99,
      "category": "electronics",
      "brand": "TechCorp",
      "tags": [
        "premium",
        "laptop",
        "gaming"
      ],
      "inventory": {
        "stock": 25,
        "warehouse": "US-WEST"
      }
    },
    {
      "id": "PROD-002",
      "title": "Basic Mouse",
      "price": 19.99,
      "category": "accessories",
      "brand": "BasicTech",
      "tags": [
        "basic",
        "mouse",
        "office"
      ],
      "inventory": {
        "stock": 150,
        "warehouse": "US-EAST"
      }
    }
  ],
  "catalog_info": {
    "total_items": 2,
    "last_updated": "2024-01-15T10:00:00Z"
  }
}

📥 Response

Status Code: 200
Duration: 1ms
Size: 1317 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1789
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"products\":[{\"id\":\"PROD-001\",\"title\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"}},{\"id\":\"PROD-002\",\"title\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"tags\":[\"basic\",\"mouse\",\"office\"],\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"}}],\"catalog_info\":{\"total_items\":2,\"last_updated\":\"2024-01-15T10:00:00Z\"}}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "453",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "catalog_info": {
      "last_updated": "2024-01-15T10:00:00Z",
      "total_items": 2
    },
    "products": [
      {
        "brand": "TechCorp",
        "category": "electronics",
        "id": "PROD-001",
        "inventory": {
          "stock": 25,
          "warehouse": "US-WEST"
        },
        "price": 1299.99,
        "tags": [
          "premium",
          "laptop",
          "gaming"
        ],
        "title": "Premium Laptop"
      },
      {
        "brand": "BasicTech",
        "category": "accessories",
        "id": "PROD-002",
        "inventory": {
          "stock": 150,
          "warehouse": "US-EAST"
        },
        "price": 19.99,
        "tags": [
          "basic",
          "mouse",
          "office"
        ],
        "title": "Basic Mouse"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "raw_products_data": [
    {
      "brand": "TechCorp",
      "category": "electronics",
      "id": "PROD-001",
      "inventory": {
        "stock": 25,
        "warehouse": "US-WEST"
      },
      "price": 1299.99,
      "tags": [
        "premium",
        "laptop",
        "gaming"
      ],
      "title": "Premium Laptop"
    },
    {
      "brand": "BasicTech",
      "category": "accessories",
      "id": "PROD-002",
      "inventory": {
        "stock": 150,
        "warehouse": "US-EAST"
      },
      "price": 19.99,
      "tags": [
        "basic",
        "mouse",
        "office"
      ],
      "title": "Basic Mouse"
    }
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Format products - Multiple catalog views

Step #5

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"format_product_catalog","products":[{"brand":"TechCorp","category":"electronics","id":"PROD-001","inventory":{"stock":25,"warehouse":"US-WEST"},"price":1299.99,"tags":["premium","laptop","gaming"],"title":"Premium Laptop"},{"brand":"BasicTech","category":"accessories","id":"PROD-002","inventory":{"stock":150,"warehouse":"US-EAST"},"price":19.99,"tags":["basic","mouse","office"],"title":"Basic Mouse"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "format_product_catalog",
  "products": [
    {
      "brand": "TechCorp",
      "category": "electronics",
      "id": "PROD-001",
      "inventory": {
        "stock": 25,
        "warehouse": "US-WEST"
      },
      "price": 1299.99,
      "tags": [
        "premium",
        "laptop",
        "gaming"
      ],
      "title": "Premium Laptop"
    },
    {
      "brand": "BasicTech",
      "category": "accessories",
      "id": "PROD-002",
      "inventory": {
        "stock": 150,
        "warehouse": "US-EAST"
      },
      "price": 19.99,
      "tags": [
        "basic",
        "mouse",
        "office"
      ],
      "title": "Basic Mouse"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1245 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1695
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"format_product_catalog\",\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "419",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "format_product_catalog",
    "products": [
      {
        "brand": "TechCorp",
        "category": "electronics",
        "id": "PROD-001",
        "inventory": {
          "stock": 25,
          "warehouse": "US-WEST"
        },
        "price": 1299.99,
        "tags": [
          "premium",
          "laptop",
          "gaming"
        ],
        "title": "Premium Laptop"
      },
      {
        "brand": "BasicTech",
        "category": "accessories",
        "id": "PROD-002",
        "inventory": {
          "stock": 150,
          "warehouse": "US-EAST"
        },
        "price": 19.99,
        "tags": [
          "basic",
          "mouse",
          "office"
        ],
        "title": "Basic Mouse"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "product_catalog_simple": [
    {
      "id": "PROD-001",
      "name": "Premium Laptop",
      "price": 1299.99,
      "available": 25
    },
    {
      "id": "PROD-002",
      "name": "Basic Mouse",
      "price": 19.99,
      "available": 150
    }
  ],
  "price_list": [
    {
      "product": "Premium Laptop",
      "price_usd": 1299.99,
      "category": "electronics"
    },
    {
      "product": "Basic Mouse",
      "price_usd": 19.99,
      "category": "accessories"
    }
  ],
  "inventory_status": [
    {
      "item_code": "PROD-001",
      "stock_level": 25,
      "location": "US-WEST"
    },
    {
      "item_code": "PROD-002",
      "stock_level": 150,
      "location": "US-EAST"
    }
  ],
  "product_tags_flat": [
    "premium",
    "laptop",
    "gaming",
    "basic",
    "mouse",
    "office"
  ],
  "brand_catalog": [
    {
      "brand": "TechCorp",
      "products": "Premium Laptop",
      "category": "electronics"
    },
    {
      "brand": "BasicTech",
      "products": "Basic Mouse",
      "category": "accessories"
    }
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Advanced formatting - Complex transformations

Step #6

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"advanced_formatting","users":[{"email":"alice@example.com","id":1,"last_login":"2024-01-15T10:30:00Z","name":"Alice Johnson","profile":{"department":"Engineering","level":"senior","salary":95000},"role":"admin","status":"active"},{"email":"bob@example.com","id":2,"last_login":"2024-01-14T15:45:00Z","name":"Bob Smith","profile":{"department":"Sales","level":"junior","salary":65000},"role":"user","status":"active"},{"email":"charlie@example.com","id":3,"last_login":"2023-12-20T09:15:00Z","name":"Charlie Brown","profile":{"department":"Marketing","level":"mid","salary":75000},"role":"moderator","status":"inactive"}],"products":[{"brand":"TechCorp","category":"electronics","id":"PROD-001","inventory":{"stock":25,"warehouse":"US-WEST"},"price":1299.99,"tags":["premium","laptop","gaming"],"title":"Premium Laptop"},{"brand":"BasicTech","category":"accessories","id":"PROD-002","inventory":{"stock":150,"warehouse":"US-EAST"},"price":19.99,"tags":["basic","mouse","office"],"title":"Basic Mouse"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "advanced_formatting",
  "users": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ],
  "products": [
    {
      "brand": "TechCorp",
      "category": "electronics",
      "id": "PROD-001",
      "inventory": {
        "stock": 25,
        "warehouse": "US-WEST"
      },
      "price": 1299.99,
      "tags": [
        "premium",
        "laptop",
        "gaming"
      ],
      "title": "Premium Laptop"
    },
    {
      "brand": "BasicTech",
      "category": "accessories",
      "id": "PROD-002",
      "inventory": {
        "stock": 150,
        "warehouse": "US-EAST"
      },
      "price": 19.99,
      "tags": [
        "basic",
        "mouse",
        "office"
      ],
      "title": "Basic Mouse"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 2544 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3419
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"advanced_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "1016",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "advanced_formatting",
    "products": [
      {
        "brand": "TechCorp",
        "category": "electronics",
        "id": "PROD-001",
        "inventory": {
          "stock": 25,
          "warehouse": "US-WEST"
        },
        "price": 1299.99,
        "tags": [
          "premium",
          "laptop",
          "gaming"
        ],
        "title": "Premium Laptop"
      },
      {
        "brand": "BasicTech",
        "category": "accessories",
        "id": "PROD-002",
        "inventory": {
          "stock": 150,
          "warehouse": "US-EAST"
        },
        "price": 19.99,
        "tags": [
          "basic",
          "mouse",
          "office"
        ],
        "title": "Basic Mouse"
      }
    ],
    "users": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "department_hierarchy": [
    {
      "department": "Engineering",
      "employees": [
        {
          "name": null,
          "level": "senior",
          "role": null
        }
      ]
    },
    {
      "department": "Sales",
      "employees": [
        {
          "name": null,
          "level": "junior",
          "role": null
        }
      ]
    },
    {
      "department": "Marketing",
      "employees": [
        {
          "name": null,
          "level": "mid",
          "role": null
        }
      ]
    }
  ],
  "salary_by_department": [
    {
      "dept": "Engineering",
      "salary": 95000
    },
    {
      "dept": "Sales",
      "salary": 65000
    },
    {
      "dept": "Marketing",
      "salary": 75000
    }
  ],
  "user_product_matrix": {
    "user_count": 3,
    "product_count": 2,
    "active_users": []
  }
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Format for CSV-style output

Step #7

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"csv_format","users":[{"email":"alice@example.com","id":1,"last_login":"2024-01-15T10:30:00Z","name":"Alice Johnson","profile":{"department":"Engineering","level":"senior","salary":95000},"role":"admin","status":"active"},{"email":"bob@example.com","id":2,"last_login":"2024-01-14T15:45:00Z","name":"Bob Smith","profile":{"department":"Sales","level":"junior","salary":65000},"role":"user","status":"active"},{"email":"charlie@example.com","id":3,"last_login":"2023-12-20T09:15:00Z","name":"Charlie Brown","profile":{"department":"Marketing","level":"mid","salary":75000},"role":"moderator","status":"inactive"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "csv_format",
  "users": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1693 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 2219
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"csv_format\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "626",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "csv_format",
    "users": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "csv_headers": [
    "ID",
    "Name",
    "Email",
    "Department",
    "Status"
  ],
  "csv_data": [
    [
      1,
      "Alice Johnson",
      "alice@example.com",
      "Engineering",
      "active"
    ],
    [
      2,
      "Bob Smith",
      "bob@example.com",
      "Sales",
      "active"
    ],
    [
      3,
      "Charlie Brown",
      "charlie@example.com",
      "Marketing",
      "inactive"
    ]
  ],
  "table_data": [
    {
      "col1": 1,
      "col2": "Alice Johnson",
      "col3": "alice@example.com",
      "col4": "Engineering",
      "col5": "active"
    },
    {
      "col1": 2,
      "col2": "Bob Smith",
      "col3": "bob@example.com",
      "col4": "Sales",
      "col5": "active"
    },
    {
      "col1": 3,
      "col2": "Charlie Brown",
      "col3": "charlie@example.com",
      "col4": "Marketing",
      "col5": "inactive"
    }
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Format for API response structure

Step #8

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"api_response_format","data":[{"email":"alice@example.com","id":1,"last_login":"2024-01-15T10:30:00Z","name":"Alice Johnson","profile":{"department":"Engineering","level":"senior","salary":95000},"role":"admin","status":"active"},{"email":"bob@example.com","id":2,"last_login":"2024-01-14T15:45:00Z","name":"Bob Smith","profile":{"department":"Sales","level":"junior","salary":65000},"role":"user","status":"active"},{"email":"charlie@example.com","id":3,"last_login":"2023-12-20T09:15:00Z","name":"Charlie Brown","profile":{"department":"Marketing","level":"mid","salary":75000},"role":"moderator","status":"inactive"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "api_response_format",
  "data": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1709 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 2235
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"api_response_format\",\"data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "634",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "data": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ],
    "operation": "api_response_format"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "api_response_format": {
    "success": true,
    "data": [
      {
        "id": 1,
        "attributes": {
          "name": "Alice Johnson",
          "email": "alice@example.com",
          "profile": {
            "department": "Engineering",
            "level": "senior",
            "salary": 95000
          }
        }
      },
      {
        "id": 2,
        "attributes": {
          "name": "Bob Smith",
          "email": "bob@example.com",
          "profile": {
            "department": "Sales",
            "level": "junior",
            "salary": 65000
          }
        }
      },
      {
        "id": 3,
        "attributes": {
          "name": "Charlie Brown",
          "email": "charlie@example.com",
          "profile": {
            "department": "Marketing",
            "level": "mid",
            "salary": 75000
          }
        }
      }
    ],
    "meta": {
      "count": 3,
      "timestamp": "2024-01-15T12:00:00Z"
    }
  },
  "paginated_format": {
    "page": 1,
    "per_page": 10,
    "total": 3,
    "items": [
      {
        "id": 1,
        "name": "Alice Johnson",
        "email": "alice@example.com"
      },
      {
        "id": 2,
        "name": "Bob Smith",
        "email": "bob@example.com"
      },
      {
        "id": 3,
        "name": "Charlie Brown",
        "email": "charlie@example.com"
      }
    ]
  }
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "api_response_format": {
    "success": true,
    "data": [
      {
        "id": 1,
        "attributes": {
          "name": "Alice Johnson",
          "email": "alice@example.com",
          "profile": {
            "department": "Engineering",
            "level": "senior",
            "salary": 95000
          }
        }
      },
      {
        "id": 2,
        "attributes": {
          "name": "Bob Smith",
          "email": "bob@example.com",
          "profile": {
            "department": "Sales",
            "level": "junior",
            "salary": 65000
          }
        }
      },
      {
        "id": 3,
        "attributes": {
          "name": "Charlie Brown",
          "email": "charlie@example.com",
          "profile": {
            "department": "Marketing",
            "level": "mid",
            "salary": 75000
          }
        }
      }
    ],
    "meta": {
      "count": 3,
      "timestamp": "2024-01-15T12:00:00Z"
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Conditional formatting based on data values

Step #9

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"conditional_formatting","users":[{"email":"alice@example.com","id":1,"last_login":"2024-01-15T10:30:00Z","name":"Alice Johnson","profile":{"department":"Engineering","level":"senior","salary":95000},"role":"admin","status":"active"},{"email":"bob@example.com","id":2,"last_login":"2024-01-14T15:45:00Z","name":"Bob Smith","profile":{"department":"Sales","level":"junior","salary":65000},"role":"user","status":"active"},{"email":"charlie@example.com","id":3,"last_login":"2023-12-20T09:15:00Z","name":"Charlie Brown","profile":{"department":"Marketing","level":"mid","salary":75000},"role":"moderator","status":"inactive"}],"products":[{"brand":"TechCorp","category":"electronics","id":"PROD-001","inventory":{"stock":25,"warehouse":"US-WEST"},"price":1299.99,"tags":["premium","laptop","gaming"],"title":"Premium Laptop"},{"brand":"BasicTech","category":"accessories","id":"PROD-002","inventory":{"stock":150,"warehouse":"US-EAST"},"price":19.99,"tags":["basic","mouse","office"],"title":"Basic Mouse"}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "conditional_formatting",
  "users": [
    {
      "email": "alice@example.com",
      "id": 1,
      "last_login": "2024-01-15T10:30:00Z",
      "name": "Alice Johnson",
      "profile": {
        "department": "Engineering",
        "level": "senior",
        "salary": 95000
      },
      "role": "admin",
      "status": "active"
    },
    {
      "email": "bob@example.com",
      "id": 2,
      "last_login": "2024-01-14T15:45:00Z",
      "name": "Bob Smith",
      "profile": {
        "department": "Sales",
        "level": "junior",
        "salary": 65000
      },
      "role": "user",
      "status": "active"
    },
    {
      "email": "charlie@example.com",
      "id": 3,
      "last_login": "2023-12-20T09:15:00Z",
      "name": "Charlie Brown",
      "profile": {
        "department": "Marketing",
        "level": "mid",
        "salary": 75000
      },
      "role": "moderator",
      "status": "inactive"
    }
  ],
  "products": [
    {
      "brand": "TechCorp",
      "category": "electronics",
      "id": "PROD-001",
      "inventory": {
        "stock": 25,
        "warehouse": "US-WEST"
      },
      "price": 1299.99,
      "tags": [
        "premium",
        "laptop",
        "gaming"
      ],
      "title": "Premium Laptop"
    },
    {
      "brand": "BasicTech",
      "category": "accessories",
      "id": "PROD-002",
      "inventory": {
        "stock": 150,
        "warehouse": "US-EAST"
      },
      "price": 19.99,
      "tags": [
        "basic",
        "mouse",
        "office"
      ],
      "title": "Basic Mouse"
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 2550 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3425
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"conditional_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "1019",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "conditional_formatting",
    "products": [
      {
        "brand": "TechCorp",
        "category": "electronics",
        "id": "PROD-001",
        "inventory": {
          "stock": 25,
          "warehouse": "US-WEST"
        },
        "price": 1299.99,
        "tags": [
          "premium",
          "laptop",
          "gaming"
        ],
        "title": "Premium Laptop"
      },
      {
        "brand": "BasicTech",
        "category": "accessories",
        "id": "PROD-002",
        "inventory": {
          "stock": 150,
          "warehouse": "US-EAST"
        },
        "price": 19.99,
        "tags": [
          "basic",
          "mouse",
          "office"
        ],
        "title": "Basic Mouse"
      }
    ],
    "users": [
      {
        "email": "alice@example.com",
        "id": 1,
        "last_login": "2024-01-15T10:30:00Z",
        "name": "Alice Johnson",
        "profile": {
          "department": "Engineering",
          "level": "senior",
          "salary": 95000
        },
        "role": "admin",
        "status": "active"
      },
      {
        "email": "bob@example.com",
        "id": 2,
        "last_login": "2024-01-14T15:45:00Z",
        "name": "Bob Smith",
        "profile": {
          "department": "Sales",
          "level": "junior",
          "salary": 65000
        },
        "role": "user",
        "status": "active"
      },
      {
        "email": "charlie@example.com",
        "id": 3,
        "last_login": "2023-12-20T09:15:00Z",
        "name": "Charlie Brown",
        "profile": {
          "department": "Marketing",
          "level": "mid",
          "salary": 75000
        },
        "role": "moderator",
        "status": "inactive"
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "users_with_indicators": [
    {
      "name": "Alice Johnson",
      "email": "alice@example.com",
      "status_icon": "✓",
      "priority": "high"
    },
    {
      "name": "Bob Smith",
      "email": "bob@example.com",
      "status_icon": "✓",
      "priority": "normal"
    },
    {
      "name": "Charlie Brown",
      "email": "charlie@example.com",
      "status_icon": "✗",
      "priority": "normal"
    }
  ],
  "products_with_categories": [
    {
      "name": "Premium Laptop",
      "price": 1299.99,
      "price_category": "premium"
    },
    {
      "name": "Basic Mouse",
      "price": 19.99,
      "price_category": "budget"
    }
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "api_response_format": {
    "success": true,
    "data": [
      {
        "id": 1,
        "attributes": {
          "name": "Alice Johnson",
          "email": "alice@example.com",
          "profile": {
            "department": "Engineering",
            "level": "senior",
            "salary": 95000
          }
        }
      },
      {
        "id": 2,
        "attributes": {
          "name": "Bob Smith",
          "email": "bob@example.com",
          "profile": {
            "department": "Sales",
            "level": "junior",
            "salary": 65000
          }
        }
      },
      {
        "id": 3,
        "attributes": {
          "name": "Charlie Brown",
          "email": "charlie@example.com",
          "profile": {
            "department": "Marketing",
            "level": "mid",
            "salary": 75000
          }
        }
      }
    ],
    "meta": {
      "count": 3,
      "timestamp": "2024-01-15T12:00:00Z"
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

Collect formatting results summary

Step #10

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"test_summary":"data_formatting_examples","transformations_applied":["essential_field_extraction","summary_reports","catalog_views","hierarchical_transformation","csv_formatting","api_response_formatting","conditional_formatting"],"total_examples":9}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "test_summary": "data_formatting_examples",
  "transformations_applied": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "total_examples": 9
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 857 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1032
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"test_summary\":\"data_formatting_examples\",\"transformations_applied\":[\"essential_field_extraction\",\"summary_reports\",\"catalog_views\",\"hierarchical_transformation\",\"csv_formatting\",\"api_response_formatting\",\"conditional_formatting\"],\"total_examples\":9}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "251",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "test_summary": "data_formatting_examples",
    "total_examples": 9,
    "transformations_applied": [
      "essential_field_extraction",
      "summary_reports",
      "catalog_views",
      "hierarchical_transformation",
      "csv_formatting",
      "api_response_formatting",
      "conditional_formatting"
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
1
assertions
Passed
1
assertion
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
  "formatted_data": {
    "test_summary": "data_formatting_examples",
    "total_examples": 9,
    "transformations_applied": [
      "essential_field_extraction",
      "summary_reports",
      "catalog_views",
      "hierarchical_transformation",
      "csv_formatting",
      "api_response_formatting",
      "conditional_formatting"
    ]
  },
  "transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "api_response_format": {
    "success": true,
    "data": [
      {
        "id": 1,
        "attributes": {
          "name": "Alice Johnson",
          "email": "alice@example.com",
          "profile": {
            "department": "Engineering",
            "level": "senior",
            "salary": 95000
          }
        }
      },
      {
        "id": 2,
        "attributes": {
          "name": "Bob Smith",
          "email": "bob@example.com",
          "profile": {
            "department": "Sales",
            "level": "junior",
            "salary": 65000
          }
        }
      },
      {
        "id": 3,
        "attributes": {
          "name": "Charlie Brown",
          "email": "charlie@example.com",
          "profile": {
            "department": "Marketing",
            "level": "mid",
            "salary": 75000
          }
        }
      }
    ],
    "meta": {
      "count": 3,
      "timestamp": "2024-01-15T12:00:00Z"
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null,
  "complex_scenarios_test.user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "complex_scenarios_test.scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "complex_scenarios_test.conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  },
  "integration_full.e2e_test_summary": {
    "generated_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "imported_flows": {
      "auth": {
        "token_present": true,
        "user_authenticated": true
      },
      "setup": {
        "environment": "integration",
        "session_active": true
      }
    },
    "performance": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "test_summary": {
      "all_steps_completed": true,
      "environment": "integration",
      "initialization": true,
      "test_id": "INTEG_001"
    }
  },
  "integration_full.performance_metrics": {
    "crud_performance": "excellent",
    "crud_success": true,
    "performance_rating": "excellent",
    "performance_score": 100
  },
  "integration_full.user_journey_data": {
    "active_user_count": "length(2)",
    "test_user": null,
    "total_transactions": 10,
    "total_users_processed": 5
  },
  "integration_full.final_validation_result": "all_tests_passed",
  "advanced_scenarios.auth_status": "authenticated",
  "advanced_scenarios.performance_rating": "excellent",
  "advanced_scenarios.error_count": 1,
  "advanced_scenarios.final_scenario_result": "partial_success",
  "file_upload_test.file_id": "FILE-12345",
  "file_upload_test.upload_metadata": {
    "original_filename": "test_document.pdf",
    "file_size": 256000,
    "upload_time": "2024-01-01T10:00:00Z",
    "file_id": "{{file_id}}"
  },
  "file_upload_test.file_operations_summary": {
    "total_operations": 7,
    "upload_success": true,
    "download_success": true,
    "integrity_verified": true,
    "deletion_confirmed": true,
    "supported_formats_count": 4
  },
  "interactive-input-examples.selected_user_data": "user_001",
  "interactive-input-examples.user_action_result": "view_activity",
  "interactive-input-examples.final_config": {
    "action_performed": "view_activity",
    "batch_size": 10,
    "execution_metadata": {
      "confirmed": null,
      "reason": "{{action_reason}}",
      "test_run": true,
      "timestamp": "2024-01-15T12:00:00Z"
    },
    "notification_settings": {
      "email": "admin@company.com",
      "webhook": "{{webhook_url}}"
    },
    "selected_user": "user_001"
  },
  "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
  "faker-advanced-integration.generated_name": "Jeffery Romaguera",
  "faker-advanced-integration.generated_city": "Coral Springs",
  "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
  "faker-advanced-integration.locale_name": "Gail Ward",
  "microservices_integration_test.service_health_status": {
    "pre_transaction": "{{all_services_up}}",
    "post_transaction": "{{post_transaction_health}}",
    "degradation_detected": "false"
  },
  "microservices_integration_test.integration_results": {
    "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
    "services_coordination": "successful",
    "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
    "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
  },
  "microservices_integration_test.transaction_trace": {
    "trace_id": "{{tracing_headers.trace_id}}",
    "correlation_id": "{{tracing_headers.correlation_id}}",
    "total_steps": 12,
    "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
    "service_calls": 11,
    "cross_service_calls": 6
  },
  "microservices_integration_test.service_dependencies": [
    {
      "service": "user-service",
      "dependencies": [],
      "dependents": [
        "order-service",
        "notification-service"
      ]
    },
    {
      "service": "inventory-service",
      "dependencies": [],
      "dependents": [
        "order-service"
      ]
    },
    {
      "service": "order-service",
      "dependencies": [
        "user-service",
        "inventory-service"
      ],
      "dependents": [
        "payment-service",
        "notification-service"
      ]
    },
    {
      "service": "payment-service",
      "dependencies": [
        "order-service"
      ],
      "dependents": [
        "order-service",
        "inventory-service"
      ]
    },
    {
      "service": "notification-service",
      "dependencies": [
        "user-service",
        "order-service"
      ],
      "dependents": []
    }
  ],
  "microservices_integration_test.payment_approved": "true",
  "performance_test.performance_metrics": {
    "response_time_analysis": {
      "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
      "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
      "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
    },
    "load_test_results": {
      "light_load_success": "{{light_load_success}}",
      "medium_load_degradation": "{{medium_load_degradation}}",
      "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
      "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
    },
    "performance_thresholds": {
      "baseline_met": "{{baseline_success}}",
      "acceptable_met": "{{small_payload_success && medium_payload_success}}",
      "critical_met": "{{large_payload_success}}"
    },
    "system_characteristics": {
      "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
      "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
      "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
    }
  },
  "performance_test.response_times": [
    {
      "endpoint": "baseline_get",
      "time": "{{baseline_response_time}}",
      "grade": "{{baseline_performance_grade}}"
    },
    {
      "endpoint": "small_payload_post",
      "time": "{{small_payload_time}}",
      "success": "{{small_payload_success}}"
    },
    {
      "endpoint": "medium_payload_post",
      "time": "{{medium_payload_time}}",
      "success": "{{medium_payload_success}}"
    },
    {
      "endpoint": "large_payload_post",
      "time": "{{large_payload_time}}",
      "success": "{{large_payload_success}}"
    }
  ],
  "performance_test.throughput_results": {
    "baseline_rps": "{{requests_per_second}}",
    "performance_comparison": "{{performance_comparison}}",
    "degradation_under_load": "{{medium_load_degradation}}"
  },
  "performance_test.load_test_summary": {
    "total_scenarios_tested": 3,
    "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
    "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
    "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
    "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
  }
}

📄 Raw Suite Data

Complete Suite Data
{
  "node_id": "data-formatting-examples",
  "suite_name": "Data Formatting and Transformation Examples",
  "file_path": "/app/tests/data-formatting-examples.yaml",
  "priority": "medium",
  "start_time": "2025-10-19T10:28:39.283Z",
  "end_time": "2025-10-19T10:28:39.305Z",
  "duration_ms": 22,
  "status": "success",
  "steps_executed": 10,
  "steps_successful": 10,
  "steps_failed": 0,
  "success_rate": 100,
  "steps_results": [
    {
      "step_id": "step-1-get-user-data-for-formatting",
      "qualified_step_id": "data-formatting-examples::step-1-get-user-data-for-formatting",
      "step_name": "Get user data for formatting",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "users": [
            {
              "id": 1,
              "name": "Alice Johnson",
              "email": "alice@example.com",
              "status": "active",
              "role": "admin",
              "last_login": "2024-01-15T10:30:00Z",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              }
            },
            {
              "id": 2,
              "name": "Bob Smith",
              "email": "bob@example.com",
              "status": "active",
              "role": "user",
              "last_login": "2024-01-14T15:45:00Z",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              }
            },
            {
              "id": 3,
              "name": "Charlie Brown",
              "email": "charlie@example.com",
              "status": "inactive",
              "role": "moderator",
              "last_login": "2023-12-20T09:15:00Z",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              }
            }
          ],
          "metadata": {
            "total_count": 3,
            "timestamp": "2024-01-15T12:00:00Z",
            "source": "user_management_system"
          }
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"last_login\":\"2024-01-15T10:30:00Z\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000}},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"last_login\":\"2024-01-14T15:45:00Z\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000}},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"last_login\":\"2023-12-20T09:15:00Z\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000}}],\"metadata\":{\"total_count\":3,\"timestamp\":\"2024-01-15T12:00:00Z\",\"source\":\"user_management_system\"}}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 699\r\n\r\n{\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"last_login\":\"2024-01-15T10:30:00Z\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000}},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"last_login\":\"2024-01-14T15:45:00Z\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000}},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"last_login\":\"2023-12-20T09:15:00Z\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000}}],\"metadata\":{\"total_count\":3,\"timestamp\":\"2024-01-15T12:00:00Z\",\"source\":\"user_management_system\"}}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "2404",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"last_login\":\"2024-01-15T10:30:00Z\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000}},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"last_login\":\"2024-01-14T15:45:00Z\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000}},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"last_login\":\"2023-12-20T09:15:00Z\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000}}],\"metadata\":{\"total_count\":3,\"timestamp\":\"2024-01-15T12:00:00Z\",\"source\":\"user_management_system\"}}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "699",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "metadata": {
              "source": "user_management_system",
              "timestamp": "2024-01-15T12:00:00Z",
              "total_count": 3
            },
            "users": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1847,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2404\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000}},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000}},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000}}],\\\"metadata\\\":{\\\"total_count\\\":3,\\\"timestamp\\\":\\\"2024-01-15T12:00:00Z\\\",\\\"source\\\":\\\"user_management_system\\\"}}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"699\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"metadata\": {\n      \"source\": \"user_management_system\",\n      \"timestamp\": \"2024-01-15T12:00:00Z\",\n      \"total_count\": 3\n    },\n    \"users\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "raw_users_data": [
          {
            "email": "alice@example.com",
            "id": 1,
            "last_login": "2024-01-15T10:30:00Z",
            "name": "Alice Johnson",
            "profile": {
              "department": "Engineering",
              "level": "senior",
              "salary": 95000
            },
            "role": "admin",
            "status": "active"
          },
          {
            "email": "bob@example.com",
            "id": 2,
            "last_login": "2024-01-14T15:45:00Z",
            "name": "Bob Smith",
            "profile": {
              "department": "Sales",
              "level": "junior",
              "salary": 65000
            },
            "role": "user",
            "status": "active"
          },
          {
            "email": "charlie@example.com",
            "id": 3,
            "last_login": "2023-12-20T09:15:00Z",
            "name": "Charlie Brown",
            "profile": {
              "department": "Marketing",
              "level": "mid",
              "salary": 75000
            },
            "role": "moderator",
            "status": "inactive"
          }
        ],
        "response_metadata": {
          "source": "user_management_system",
          "timestamp": "2024-01-15T12:00:00Z",
          "total_count": 3
        }
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-2-format-users-essential-fields-only",
      "qualified_step_id": "data-formatting-examples::step-2-format-users-essential-fields-only",
      "step_name": "Format users - Essential fields only",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "format_users_essential",
          "raw_data": [
            {
              "email": "alice@example.com",
              "id": 1,
              "last_login": "2024-01-15T10:30:00Z",
              "name": "Alice Johnson",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              },
              "role": "admin",
              "status": "active"
            },
            {
              "email": "bob@example.com",
              "id": 2,
              "last_login": "2024-01-14T15:45:00Z",
              "name": "Bob Smith",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              },
              "role": "user",
              "status": "active"
            },
            {
              "email": "charlie@example.com",
              "id": 3,
              "last_login": "2023-12-20T09:15:00Z",
              "name": "Charlie Brown",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              },
              "role": "moderator",
              "status": "inactive"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"format_users_essential\",\"raw_data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 641\r\n\r\n{\"operation\":\"format_users_essential\",\"raw_data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "2249",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"format_users_essential\",\"raw_data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "641",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "format_users_essential",
            "raw_data": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1723,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2249\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"format_users_essential\\\",\\\"raw_data\\\":[{\\\"email\\\":\\\"alice@example.com\\\",\\\"id\\\":1,\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"name\\\":\\\"Alice Johnson\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000},\\\"role\\\":\\\"admin\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"bob@example.com\\\",\\\"id\\\":2,\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"name\\\":\\\"Bob Smith\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000},\\\"role\\\":\\\"user\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"charlie@example.com\\\",\\\"id\\\":3,\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"name\\\":\\\"Charlie Brown\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000},\\\"role\\\":\\\"moderator\\\",\\\"status\\\":\\\"inactive\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"641\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"format_users_essential\",\n    \"raw_data\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "essential_users": [
          {
            "user_id": 1,
            "full_name": "Alice Johnson",
            "email_address": "alice@example.com"
          },
          {
            "user_id": 2,
            "full_name": "Bob Smith",
            "email_address": "bob@example.com"
          },
          {
            "user_id": 3,
            "full_name": "Charlie Brown",
            "email_address": "charlie@example.com"
          }
        ],
        "user_names_only": [
          "Alice Johnson",
          "Bob Smith",
          "Charlie Brown"
        ],
        "active_user_emails": [
          "alice@example.com",
          "bob@example.com"
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-3-format-users-summary-report",
      "qualified_step_id": "data-formatting-examples::step-3-format-users-summary-report",
      "step_name": "Format users - Summary report",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "format_users_summary",
          "users": [
            {
              "email": "alice@example.com",
              "id": 1,
              "last_login": "2024-01-15T10:30:00Z",
              "name": "Alice Johnson",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              },
              "role": "admin",
              "status": "active"
            },
            {
              "email": "bob@example.com",
              "id": 2,
              "last_login": "2024-01-14T15:45:00Z",
              "name": "Bob Smith",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              },
              "role": "user",
              "status": "active"
            },
            {
              "email": "charlie@example.com",
              "id": 3,
              "last_login": "2023-12-20T09:15:00Z",
              "name": "Charlie Brown",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              },
              "role": "moderator",
              "status": "inactive"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"format_users_summary\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 636\r\n\r\n{\"operation\":\"format_users_summary\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "2239",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"format_users_summary\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "636",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "format_users_summary",
            "users": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1713,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2239\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"format_users_summary\\\",\\\"users\\\":[{\\\"email\\\":\\\"alice@example.com\\\",\\\"id\\\":1,\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"name\\\":\\\"Alice Johnson\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000},\\\"role\\\":\\\"admin\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"bob@example.com\\\",\\\"id\\\":2,\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"name\\\":\\\"Bob Smith\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000},\\\"role\\\":\\\"user\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"charlie@example.com\\\",\\\"id\\\":3,\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"name\\\":\\\"Charlie Brown\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000},\\\"role\\\":\\\"moderator\\\",\\\"status\\\":\\\"inactive\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"636\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"format_users_summary\",\n    \"users\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "user_summary": {
          "total_users": 3,
          "active_count": 2,
          "department_list": [
            "Engineering",
            "Sales",
            "Marketing"
          ]
        },
        "salary_report": [
          {
            "name": "Alice Johnson",
            "department": "Engineering",
            "salary_formatted": 95000
          },
          {
            "name": "Bob Smith",
            "department": "Sales",
            "salary_formatted": 65000
          },
          {
            "name": "Charlie Brown",
            "department": "Marketing",
            "salary_formatted": 75000
          }
        ],
        "admin_users": [
          {
            "name": "Alice Johnson",
            "email": "alice@example.com"
          }
        ],
        "regular_users": [
          {
            "name": "Bob Smith",
            "department": "Sales"
          }
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-4-get-product-data-for-formatting",
      "qualified_step_id": "data-formatting-examples::step-4-get-product-data-for-formatting",
      "step_name": "Get product data for formatting",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "products": [
            {
              "id": "PROD-001",
              "title": "Premium Laptop",
              "price": 1299.99,
              "category": "electronics",
              "brand": "TechCorp",
              "tags": [
                "premium",
                "laptop",
                "gaming"
              ],
              "inventory": {
                "stock": 25,
                "warehouse": "US-WEST"
              }
            },
            {
              "id": "PROD-002",
              "title": "Basic Mouse",
              "price": 19.99,
              "category": "accessories",
              "brand": "BasicTech",
              "tags": [
                "basic",
                "mouse",
                "office"
              ],
              "inventory": {
                "stock": 150,
                "warehouse": "US-EAST"
              }
            }
          ],
          "catalog_info": {
            "total_items": 2,
            "last_updated": "2024-01-15T10:00:00Z"
          }
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"products\":[{\"id\":\"PROD-001\",\"title\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"}},{\"id\":\"PROD-002\",\"title\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"tags\":[\"basic\",\"mouse\",\"office\"],\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"}}],\"catalog_info\":{\"total_items\":2,\"last_updated\":\"2024-01-15T10:00:00Z\"}}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 453\r\n\r\n{\"products\":[{\"id\":\"PROD-001\",\"title\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"}},{\"id\":\"PROD-002\",\"title\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"tags\":[\"basic\",\"mouse\",\"office\"],\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"}}],\"catalog_info\":{\"total_items\":2,\"last_updated\":\"2024-01-15T10:00:00Z\"}}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "1789",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"products\":[{\"id\":\"PROD-001\",\"title\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"}},{\"id\":\"PROD-002\",\"title\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"tags\":[\"basic\",\"mouse\",\"office\"],\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"}}],\"catalog_info\":{\"total_items\":2,\"last_updated\":\"2024-01-15T10:00:00Z\"}}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "453",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "catalog_info": {
              "last_updated": "2024-01-15T10:00:00Z",
              "total_items": 2
            },
            "products": [
              {
                "brand": "TechCorp",
                "category": "electronics",
                "id": "PROD-001",
                "inventory": {
                  "stock": 25,
                  "warehouse": "US-WEST"
                },
                "price": 1299.99,
                "tags": [
                  "premium",
                  "laptop",
                  "gaming"
                ],
                "title": "Premium Laptop"
              },
              {
                "brand": "BasicTech",
                "category": "accessories",
                "id": "PROD-002",
                "inventory": {
                  "stock": 150,
                  "warehouse": "US-EAST"
                },
                "price": 19.99,
                "tags": [
                  "basic",
                  "mouse",
                  "office"
                ],
                "title": "Basic Mouse"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1317,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1789\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"title\\\":\\\"Premium Laptop\\\",\\\"price\\\":1299.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"TechCorp\\\",\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\"],\\\"inventory\\\":{\\\"stock\\\":25,\\\"warehouse\\\":\\\"US-WEST\\\"}},{\\\"id\\\":\\\"PROD-002\\\",\\\"title\\\":\\\"Basic Mouse\\\",\\\"price\\\":19.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"BasicTech\\\",\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"],\\\"inventory\\\":{\\\"stock\\\":150,\\\"warehouse\\\":\\\"US-EAST\\\"}}],\\\"catalog_info\\\":{\\\"total_items\\\":2,\\\"last_updated\\\":\\\"2024-01-15T10:00:00Z\\\"}}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"453\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"catalog_info\": {\n      \"last_updated\": \"2024-01-15T10:00:00Z\",\n      \"total_items\": 2\n    },\n    \"products\": [\n      {\n        \"brand\": \"TechCorp\",\n        \"category\": \"electronics\",\n        \"id\": \"PROD-001\",\n        \"inventory\": {\n          \"stock\": 25,\n          \"warehouse\": \"US-WEST\"\n        },\n        \"price\": 1299.99,\n        \"tags\": [\n          \"premium\",\n          \"laptop\",\n          \"gaming\"\n        ],\n        \"title\": \"Premium Laptop\"\n      },\n      {\n        \"brand\": \"BasicTech\",\n        \"category\": \"accessories\",\n        \"id\": \"PROD-002\",\n        \"inventory\": {\n          \"stock\": 150,\n          \"warehouse\": \"US-EAST\"\n        },\n        \"price\": 19.99,\n        \"tags\": [\n          \"basic\",\n          \"mouse\",\n          \"office\"\n        ],\n        \"title\": \"Basic Mouse\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "raw_products_data": [
          {
            "brand": "TechCorp",
            "category": "electronics",
            "id": "PROD-001",
            "inventory": {
              "stock": 25,
              "warehouse": "US-WEST"
            },
            "price": 1299.99,
            "tags": [
              "premium",
              "laptop",
              "gaming"
            ],
            "title": "Premium Laptop"
          },
          {
            "brand": "BasicTech",
            "category": "accessories",
            "id": "PROD-002",
            "inventory": {
              "stock": 150,
              "warehouse": "US-EAST"
            },
            "price": 19.99,
            "tags": [
              "basic",
              "mouse",
              "office"
            ],
            "title": "Basic Mouse"
          }
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-5-format-products-multiple-catalog-views",
      "qualified_step_id": "data-formatting-examples::step-5-format-products-multiple-catalog-views",
      "step_name": "Format products - Multiple catalog views",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "format_product_catalog",
          "products": [
            {
              "brand": "TechCorp",
              "category": "electronics",
              "id": "PROD-001",
              "inventory": {
                "stock": 25,
                "warehouse": "US-WEST"
              },
              "price": 1299.99,
              "tags": [
                "premium",
                "laptop",
                "gaming"
              ],
              "title": "Premium Laptop"
            },
            {
              "brand": "BasicTech",
              "category": "accessories",
              "id": "PROD-002",
              "inventory": {
                "stock": 150,
                "warehouse": "US-EAST"
              },
              "price": 19.99,
              "tags": [
                "basic",
                "mouse",
                "office"
              ],
              "title": "Basic Mouse"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"format_product_catalog\",\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 419\r\n\r\n{\"operation\":\"format_product_catalog\",\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "1695",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"format_product_catalog\",\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "419",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "format_product_catalog",
            "products": [
              {
                "brand": "TechCorp",
                "category": "electronics",
                "id": "PROD-001",
                "inventory": {
                  "stock": 25,
                  "warehouse": "US-WEST"
                },
                "price": 1299.99,
                "tags": [
                  "premium",
                  "laptop",
                  "gaming"
                ],
                "title": "Premium Laptop"
              },
              {
                "brand": "BasicTech",
                "category": "accessories",
                "id": "PROD-002",
                "inventory": {
                  "stock": 150,
                  "warehouse": "US-EAST"
                },
                "price": 19.99,
                "tags": [
                  "basic",
                  "mouse",
                  "office"
                ],
                "title": "Basic Mouse"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1245,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1695\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"format_product_catalog\\\",\\\"products\\\":[{\\\"brand\\\":\\\"TechCorp\\\",\\\"category\\\":\\\"electronics\\\",\\\"id\\\":\\\"PROD-001\\\",\\\"inventory\\\":{\\\"stock\\\":25,\\\"warehouse\\\":\\\"US-WEST\\\"},\\\"price\\\":1299.99,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\"],\\\"title\\\":\\\"Premium Laptop\\\"},{\\\"brand\\\":\\\"BasicTech\\\",\\\"category\\\":\\\"accessories\\\",\\\"id\\\":\\\"PROD-002\\\",\\\"inventory\\\":{\\\"stock\\\":150,\\\"warehouse\\\":\\\"US-EAST\\\"},\\\"price\\\":19.99,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"],\\\"title\\\":\\\"Basic Mouse\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"419\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"format_product_catalog\",\n    \"products\": [\n      {\n        \"brand\": \"TechCorp\",\n        \"category\": \"electronics\",\n        \"id\": \"PROD-001\",\n        \"inventory\": {\n          \"stock\": 25,\n          \"warehouse\": \"US-WEST\"\n        },\n        \"price\": 1299.99,\n        \"tags\": [\n          \"premium\",\n          \"laptop\",\n          \"gaming\"\n        ],\n        \"title\": \"Premium Laptop\"\n      },\n      {\n        \"brand\": \"BasicTech\",\n        \"category\": \"accessories\",\n        \"id\": \"PROD-002\",\n        \"inventory\": {\n          \"stock\": 150,\n          \"warehouse\": \"US-EAST\"\n        },\n        \"price\": 19.99,\n        \"tags\": [\n          \"basic\",\n          \"mouse\",\n          \"office\"\n        ],\n        \"title\": \"Basic Mouse\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "product_catalog_simple": [
          {
            "id": "PROD-001",
            "name": "Premium Laptop",
            "price": 1299.99,
            "available": 25
          },
          {
            "id": "PROD-002",
            "name": "Basic Mouse",
            "price": 19.99,
            "available": 150
          }
        ],
        "price_list": [
          {
            "product": "Premium Laptop",
            "price_usd": 1299.99,
            "category": "electronics"
          },
          {
            "product": "Basic Mouse",
            "price_usd": 19.99,
            "category": "accessories"
          }
        ],
        "inventory_status": [
          {
            "item_code": "PROD-001",
            "stock_level": 25,
            "location": "US-WEST"
          },
          {
            "item_code": "PROD-002",
            "stock_level": 150,
            "location": "US-EAST"
          }
        ],
        "product_tags_flat": [
          "premium",
          "laptop",
          "gaming",
          "basic",
          "mouse",
          "office"
        ],
        "brand_catalog": [
          {
            "brand": "TechCorp",
            "products": "Premium Laptop",
            "category": "electronics"
          },
          {
            "brand": "BasicTech",
            "products": "Basic Mouse",
            "category": "accessories"
          }
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-6-advanced-formatting-complex-transformations",
      "qualified_step_id": "data-formatting-examples::step-6-advanced-formatting-complex-transformations",
      "step_name": "Advanced formatting - Complex transformations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "advanced_formatting",
          "users": [
            {
              "email": "alice@example.com",
              "id": 1,
              "last_login": "2024-01-15T10:30:00Z",
              "name": "Alice Johnson",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              },
              "role": "admin",
              "status": "active"
            },
            {
              "email": "bob@example.com",
              "id": 2,
              "last_login": "2024-01-14T15:45:00Z",
              "name": "Bob Smith",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              },
              "role": "user",
              "status": "active"
            },
            {
              "email": "charlie@example.com",
              "id": 3,
              "last_login": "2023-12-20T09:15:00Z",
              "name": "Charlie Brown",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              },
              "role": "moderator",
              "status": "inactive"
            }
          ],
          "products": [
            {
              "brand": "TechCorp",
              "category": "electronics",
              "id": "PROD-001",
              "inventory": {
                "stock": 25,
                "warehouse": "US-WEST"
              },
              "price": 1299.99,
              "tags": [
                "premium",
                "laptop",
                "gaming"
              ],
              "title": "Premium Laptop"
            },
            {
              "brand": "BasicTech",
              "category": "accessories",
              "id": "PROD-002",
              "inventory": {
                "stock": 150,
                "warehouse": "US-EAST"
              },
              "price": 19.99,
              "tags": [
                "basic",
                "mouse",
                "office"
              ],
              "title": "Basic Mouse"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"advanced_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1016\r\n\r\n{\"operation\":\"advanced_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "3419",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"advanced_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "1016",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "advanced_formatting",
            "products": [
              {
                "brand": "TechCorp",
                "category": "electronics",
                "id": "PROD-001",
                "inventory": {
                  "stock": 25,
                  "warehouse": "US-WEST"
                },
                "price": 1299.99,
                "tags": [
                  "premium",
                  "laptop",
                  "gaming"
                ],
                "title": "Premium Laptop"
              },
              {
                "brand": "BasicTech",
                "category": "accessories",
                "id": "PROD-002",
                "inventory": {
                  "stock": 150,
                  "warehouse": "US-EAST"
                },
                "price": 19.99,
                "tags": [
                  "basic",
                  "mouse",
                  "office"
                ],
                "title": "Basic Mouse"
              }
            ],
            "users": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 2544,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3419\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"advanced_formatting\\\",\\\"users\\\":[{\\\"email\\\":\\\"alice@example.com\\\",\\\"id\\\":1,\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"name\\\":\\\"Alice Johnson\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000},\\\"role\\\":\\\"admin\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"bob@example.com\\\",\\\"id\\\":2,\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"name\\\":\\\"Bob Smith\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000},\\\"role\\\":\\\"user\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"charlie@example.com\\\",\\\"id\\\":3,\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"name\\\":\\\"Charlie Brown\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000},\\\"role\\\":\\\"moderator\\\",\\\"status\\\":\\\"inactive\\\"}],\\\"products\\\":[{\\\"brand\\\":\\\"TechCorp\\\",\\\"category\\\":\\\"electronics\\\",\\\"id\\\":\\\"PROD-001\\\",\\\"inventory\\\":{\\\"stock\\\":25,\\\"warehouse\\\":\\\"US-WEST\\\"},\\\"price\\\":1299.99,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\"],\\\"title\\\":\\\"Premium Laptop\\\"},{\\\"brand\\\":\\\"BasicTech\\\",\\\"category\\\":\\\"accessories\\\",\\\"id\\\":\\\"PROD-002\\\",\\\"inventory\\\":{\\\"stock\\\":150,\\\"warehouse\\\":\\\"US-EAST\\\"},\\\"price\\\":19.99,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"],\\\"title\\\":\\\"Basic Mouse\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"1016\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"advanced_formatting\",\n    \"products\": [\n      {\n        \"brand\": \"TechCorp\",\n        \"category\": \"electronics\",\n        \"id\": \"PROD-001\",\n        \"inventory\": {\n          \"stock\": 25,\n          \"warehouse\": \"US-WEST\"\n        },\n        \"price\": 1299.99,\n        \"tags\": [\n          \"premium\",\n          \"laptop\",\n          \"gaming\"\n        ],\n        \"title\": \"Premium Laptop\"\n      },\n      {\n        \"brand\": \"BasicTech\",\n        \"category\": \"accessories\",\n        \"id\": \"PROD-002\",\n        \"inventory\": {\n          \"stock\": 150,\n          \"warehouse\": \"US-EAST\"\n        },\n        \"price\": 19.99,\n        \"tags\": [\n          \"basic\",\n          \"mouse\",\n          \"office\"\n        ],\n        \"title\": \"Basic Mouse\"\n      }\n    ],\n    \"users\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "department_hierarchy": [
          {
            "department": "Engineering",
            "employees": [
              {
                "name": null,
                "level": "senior",
                "role": null
              }
            ]
          },
          {
            "department": "Sales",
            "employees": [
              {
                "name": null,
                "level": "junior",
                "role": null
              }
            ]
          },
          {
            "department": "Marketing",
            "employees": [
              {
                "name": null,
                "level": "mid",
                "role": null
              }
            ]
          }
        ],
        "salary_by_department": [
          {
            "dept": "Engineering",
            "salary": 95000
          },
          {
            "dept": "Sales",
            "salary": 65000
          },
          {
            "dept": "Marketing",
            "salary": 75000
          }
        ],
        "user_product_matrix": {
          "user_count": 3,
          "product_count": 2,
          "active_users": []
        }
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-7-format-for-csv-style-output",
      "qualified_step_id": "data-formatting-examples::step-7-format-for-csv-style-output",
      "step_name": "Format for CSV-style output",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "csv_format",
          "users": [
            {
              "email": "alice@example.com",
              "id": 1,
              "last_login": "2024-01-15T10:30:00Z",
              "name": "Alice Johnson",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              },
              "role": "admin",
              "status": "active"
            },
            {
              "email": "bob@example.com",
              "id": 2,
              "last_login": "2024-01-14T15:45:00Z",
              "name": "Bob Smith",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              },
              "role": "user",
              "status": "active"
            },
            {
              "email": "charlie@example.com",
              "id": 3,
              "last_login": "2023-12-20T09:15:00Z",
              "name": "Charlie Brown",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              },
              "role": "moderator",
              "status": "inactive"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"csv_format\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 626\r\n\r\n{\"operation\":\"csv_format\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "2219",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"csv_format\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "626",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "csv_format",
            "users": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1693,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2219\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"csv_format\\\",\\\"users\\\":[{\\\"email\\\":\\\"alice@example.com\\\",\\\"id\\\":1,\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"name\\\":\\\"Alice Johnson\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000},\\\"role\\\":\\\"admin\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"bob@example.com\\\",\\\"id\\\":2,\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"name\\\":\\\"Bob Smith\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000},\\\"role\\\":\\\"user\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"charlie@example.com\\\",\\\"id\\\":3,\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"name\\\":\\\"Charlie Brown\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000},\\\"role\\\":\\\"moderator\\\",\\\"status\\\":\\\"inactive\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"626\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"csv_format\",\n    \"users\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "csv_headers": [
          "ID",
          "Name",
          "Email",
          "Department",
          "Status"
        ],
        "csv_data": [
          [
            1,
            "Alice Johnson",
            "alice@example.com",
            "Engineering",
            "active"
          ],
          [
            2,
            "Bob Smith",
            "bob@example.com",
            "Sales",
            "active"
          ],
          [
            3,
            "Charlie Brown",
            "charlie@example.com",
            "Marketing",
            "inactive"
          ]
        ],
        "table_data": [
          {
            "col1": 1,
            "col2": "Alice Johnson",
            "col3": "alice@example.com",
            "col4": "Engineering",
            "col5": "active"
          },
          {
            "col1": 2,
            "col2": "Bob Smith",
            "col3": "bob@example.com",
            "col4": "Sales",
            "col5": "active"
          },
          {
            "col1": 3,
            "col2": "Charlie Brown",
            "col3": "charlie@example.com",
            "col4": "Marketing",
            "col5": "inactive"
          }
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-8-format-for-api-response-structure",
      "qualified_step_id": "data-formatting-examples::step-8-format-for-api-response-structure",
      "step_name": "Format for API response structure",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "api_response_format",
          "data": [
            {
              "email": "alice@example.com",
              "id": 1,
              "last_login": "2024-01-15T10:30:00Z",
              "name": "Alice Johnson",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              },
              "role": "admin",
              "status": "active"
            },
            {
              "email": "bob@example.com",
              "id": 2,
              "last_login": "2024-01-14T15:45:00Z",
              "name": "Bob Smith",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              },
              "role": "user",
              "status": "active"
            },
            {
              "email": "charlie@example.com",
              "id": 3,
              "last_login": "2023-12-20T09:15:00Z",
              "name": "Charlie Brown",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              },
              "role": "moderator",
              "status": "inactive"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"api_response_format\",\"data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 634\r\n\r\n{\"operation\":\"api_response_format\",\"data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "2235",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"api_response_format\",\"data\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "634",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "data": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ],
            "operation": "api_response_format"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1709,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2235\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"api_response_format\\\",\\\"data\\\":[{\\\"email\\\":\\\"alice@example.com\\\",\\\"id\\\":1,\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"name\\\":\\\"Alice Johnson\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000},\\\"role\\\":\\\"admin\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"bob@example.com\\\",\\\"id\\\":2,\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"name\\\":\\\"Bob Smith\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000},\\\"role\\\":\\\"user\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"charlie@example.com\\\",\\\"id\\\":3,\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"name\\\":\\\"Charlie Brown\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000},\\\"role\\\":\\\"moderator\\\",\\\"status\\\":\\\"inactive\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"634\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"data\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ],\n    \"operation\": \"api_response_format\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "api_response_format": {
          "success": true,
          "data": [
            {
              "id": 1,
              "attributes": {
                "name": "Alice Johnson",
                "email": "alice@example.com",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                }
              }
            },
            {
              "id": 2,
              "attributes": {
                "name": "Bob Smith",
                "email": "bob@example.com",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                }
              }
            },
            {
              "id": 3,
              "attributes": {
                "name": "Charlie Brown",
                "email": "charlie@example.com",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                }
              }
            }
          ],
          "meta": {
            "count": 3,
            "timestamp": "2024-01-15T12:00:00Z"
          }
        },
        "paginated_format": {
          "page": 1,
          "per_page": 10,
          "total": 3,
          "items": [
            {
              "id": 1,
              "name": "Alice Johnson",
              "email": "alice@example.com"
            },
            {
              "id": 2,
              "name": "Bob Smith",
              "email": "bob@example.com"
            },
            {
              "id": 3,
              "name": "Charlie Brown",
              "email": "charlie@example.com"
            }
          ]
        }
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "api_response_format": {
          "success": true,
          "data": [
            {
              "id": 1,
              "attributes": {
                "name": "Alice Johnson",
                "email": "alice@example.com",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                }
              }
            },
            {
              "id": 2,
              "attributes": {
                "name": "Bob Smith",
                "email": "bob@example.com",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                }
              }
            },
            {
              "id": 3,
              "attributes": {
                "name": "Charlie Brown",
                "email": "charlie@example.com",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                }
              }
            }
          ],
          "meta": {
            "count": 3,
            "timestamp": "2024-01-15T12:00:00Z"
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-9-conditional-formatting-based-on-data-values",
      "qualified_step_id": "data-formatting-examples::step-9-conditional-formatting-based-on-data-values",
      "step_name": "Conditional formatting based on data values",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "conditional_formatting",
          "users": [
            {
              "email": "alice@example.com",
              "id": 1,
              "last_login": "2024-01-15T10:30:00Z",
              "name": "Alice Johnson",
              "profile": {
                "department": "Engineering",
                "level": "senior",
                "salary": 95000
              },
              "role": "admin",
              "status": "active"
            },
            {
              "email": "bob@example.com",
              "id": 2,
              "last_login": "2024-01-14T15:45:00Z",
              "name": "Bob Smith",
              "profile": {
                "department": "Sales",
                "level": "junior",
                "salary": 65000
              },
              "role": "user",
              "status": "active"
            },
            {
              "email": "charlie@example.com",
              "id": 3,
              "last_login": "2023-12-20T09:15:00Z",
              "name": "Charlie Brown",
              "profile": {
                "department": "Marketing",
                "level": "mid",
                "salary": 75000
              },
              "role": "moderator",
              "status": "inactive"
            }
          ],
          "products": [
            {
              "brand": "TechCorp",
              "category": "electronics",
              "id": "PROD-001",
              "inventory": {
                "stock": 25,
                "warehouse": "US-WEST"
              },
              "price": 1299.99,
              "tags": [
                "premium",
                "laptop",
                "gaming"
              ],
              "title": "Premium Laptop"
            },
            {
              "brand": "BasicTech",
              "category": "accessories",
              "id": "PROD-002",
              "inventory": {
                "stock": 150,
                "warehouse": "US-EAST"
              },
              "price": 19.99,
              "tags": [
                "basic",
                "mouse",
                "office"
              ],
              "title": "Basic Mouse"
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"conditional_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1019\r\n\r\n{\"operation\":\"conditional_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "3425",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"conditional_formatting\",\"users\":[{\"email\":\"alice@example.com\",\"id\":1,\"last_login\":\"2024-01-15T10:30:00Z\",\"name\":\"Alice Johnson\",\"profile\":{\"department\":\"Engineering\",\"level\":\"senior\",\"salary\":95000},\"role\":\"admin\",\"status\":\"active\"},{\"email\":\"bob@example.com\",\"id\":2,\"last_login\":\"2024-01-14T15:45:00Z\",\"name\":\"Bob Smith\",\"profile\":{\"department\":\"Sales\",\"level\":\"junior\",\"salary\":65000},\"role\":\"user\",\"status\":\"active\"},{\"email\":\"charlie@example.com\",\"id\":3,\"last_login\":\"2023-12-20T09:15:00Z\",\"name\":\"Charlie Brown\",\"profile\":{\"department\":\"Marketing\",\"level\":\"mid\",\"salary\":75000},\"role\":\"moderator\",\"status\":\"inactive\"}],\"products\":[{\"brand\":\"TechCorp\",\"category\":\"electronics\",\"id\":\"PROD-001\",\"inventory\":{\"stock\":25,\"warehouse\":\"US-WEST\"},\"price\":1299.99,\"tags\":[\"premium\",\"laptop\",\"gaming\"],\"title\":\"Premium Laptop\"},{\"brand\":\"BasicTech\",\"category\":\"accessories\",\"id\":\"PROD-002\",\"inventory\":{\"stock\":150,\"warehouse\":\"US-EAST\"},\"price\":19.99,\"tags\":[\"basic\",\"mouse\",\"office\"],\"title\":\"Basic Mouse\"}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "1019",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "conditional_formatting",
            "products": [
              {
                "brand": "TechCorp",
                "category": "electronics",
                "id": "PROD-001",
                "inventory": {
                  "stock": 25,
                  "warehouse": "US-WEST"
                },
                "price": 1299.99,
                "tags": [
                  "premium",
                  "laptop",
                  "gaming"
                ],
                "title": "Premium Laptop"
              },
              {
                "brand": "BasicTech",
                "category": "accessories",
                "id": "PROD-002",
                "inventory": {
                  "stock": 150,
                  "warehouse": "US-EAST"
                },
                "price": 19.99,
                "tags": [
                  "basic",
                  "mouse",
                  "office"
                ],
                "title": "Basic Mouse"
              }
            ],
            "users": [
              {
                "email": "alice@example.com",
                "id": 1,
                "last_login": "2024-01-15T10:30:00Z",
                "name": "Alice Johnson",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                },
                "role": "admin",
                "status": "active"
              },
              {
                "email": "bob@example.com",
                "id": 2,
                "last_login": "2024-01-14T15:45:00Z",
                "name": "Bob Smith",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                },
                "role": "user",
                "status": "active"
              },
              {
                "email": "charlie@example.com",
                "id": 3,
                "last_login": "2023-12-20T09:15:00Z",
                "name": "Charlie Brown",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                },
                "role": "moderator",
                "status": "inactive"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 2550,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3425\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"conditional_formatting\\\",\\\"users\\\":[{\\\"email\\\":\\\"alice@example.com\\\",\\\"id\\\":1,\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\",\\\"name\\\":\\\"Alice Johnson\\\",\\\"profile\\\":{\\\"department\\\":\\\"Engineering\\\",\\\"level\\\":\\\"senior\\\",\\\"salary\\\":95000},\\\"role\\\":\\\"admin\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"bob@example.com\\\",\\\"id\\\":2,\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\",\\\"name\\\":\\\"Bob Smith\\\",\\\"profile\\\":{\\\"department\\\":\\\"Sales\\\",\\\"level\\\":\\\"junior\\\",\\\"salary\\\":65000},\\\"role\\\":\\\"user\\\",\\\"status\\\":\\\"active\\\"},{\\\"email\\\":\\\"charlie@example.com\\\",\\\"id\\\":3,\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\",\\\"name\\\":\\\"Charlie Brown\\\",\\\"profile\\\":{\\\"department\\\":\\\"Marketing\\\",\\\"level\\\":\\\"mid\\\",\\\"salary\\\":75000},\\\"role\\\":\\\"moderator\\\",\\\"status\\\":\\\"inactive\\\"}],\\\"products\\\":[{\\\"brand\\\":\\\"TechCorp\\\",\\\"category\\\":\\\"electronics\\\",\\\"id\\\":\\\"PROD-001\\\",\\\"inventory\\\":{\\\"stock\\\":25,\\\"warehouse\\\":\\\"US-WEST\\\"},\\\"price\\\":1299.99,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\"],\\\"title\\\":\\\"Premium Laptop\\\"},{\\\"brand\\\":\\\"BasicTech\\\",\\\"category\\\":\\\"accessories\\\",\\\"id\\\":\\\"PROD-002\\\",\\\"inventory\\\":{\\\"stock\\\":150,\\\"warehouse\\\":\\\"US-EAST\\\"},\\\"price\\\":19.99,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"],\\\"title\\\":\\\"Basic Mouse\\\"}]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"1019\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"conditional_formatting\",\n    \"products\": [\n      {\n        \"brand\": \"TechCorp\",\n        \"category\": \"electronics\",\n        \"id\": \"PROD-001\",\n        \"inventory\": {\n          \"stock\": 25,\n          \"warehouse\": \"US-WEST\"\n        },\n        \"price\": 1299.99,\n        \"tags\": [\n          \"premium\",\n          \"laptop\",\n          \"gaming\"\n        ],\n        \"title\": \"Premium Laptop\"\n      },\n      {\n        \"brand\": \"BasicTech\",\n        \"category\": \"accessories\",\n        \"id\": \"PROD-002\",\n        \"inventory\": {\n          \"stock\": 150,\n          \"warehouse\": \"US-EAST\"\n        },\n        \"price\": 19.99,\n        \"tags\": [\n          \"basic\",\n          \"mouse\",\n          \"office\"\n        ],\n        \"title\": \"Basic Mouse\"\n      }\n    ],\n    \"users\": [\n      {\n        \"email\": \"alice@example.com\",\n        \"id\": 1,\n        \"last_login\": \"2024-01-15T10:30:00Z\",\n        \"name\": \"Alice Johnson\",\n        \"profile\": {\n          \"department\": \"Engineering\",\n          \"level\": \"senior\",\n          \"salary\": 95000\n        },\n        \"role\": \"admin\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"bob@example.com\",\n        \"id\": 2,\n        \"last_login\": \"2024-01-14T15:45:00Z\",\n        \"name\": \"Bob Smith\",\n        \"profile\": {\n          \"department\": \"Sales\",\n          \"level\": \"junior\",\n          \"salary\": 65000\n        },\n        \"role\": \"user\",\n        \"status\": \"active\"\n      },\n      {\n        \"email\": \"charlie@example.com\",\n        \"id\": 3,\n        \"last_login\": \"2023-12-20T09:15:00Z\",\n        \"name\": \"Charlie Brown\",\n        \"profile\": {\n          \"department\": \"Marketing\",\n          \"level\": \"mid\",\n          \"salary\": 75000\n        },\n        \"role\": \"moderator\",\n        \"status\": \"inactive\"\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "users_with_indicators": [
          {
            "name": "Alice Johnson",
            "email": "alice@example.com",
            "status_icon": "✓",
            "priority": "high"
          },
          {
            "name": "Bob Smith",
            "email": "bob@example.com",
            "status_icon": "✓",
            "priority": "normal"
          },
          {
            "name": "Charlie Brown",
            "email": "charlie@example.com",
            "status_icon": "✗",
            "priority": "normal"
          }
        ],
        "products_with_categories": [
          {
            "name": "Premium Laptop",
            "price": 1299.99,
            "price_category": "premium"
          },
          {
            "name": "Basic Mouse",
            "price": 19.99,
            "price_category": "budget"
          }
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "api_response_format": {
          "success": true,
          "data": [
            {
              "id": 1,
              "attributes": {
                "name": "Alice Johnson",
                "email": "alice@example.com",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                }
              }
            },
            {
              "id": 2,
              "attributes": {
                "name": "Bob Smith",
                "email": "bob@example.com",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                }
              }
            },
            {
              "id": 3,
              "attributes": {
                "name": "Charlie Brown",
                "email": "charlie@example.com",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                }
              }
            }
          ],
          "meta": {
            "count": 3,
            "timestamp": "2024-01-15T12:00:00Z"
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    },
    {
      "step_id": "step-10-collect-formatting-results-summary",
      "qualified_step_id": "data-formatting-examples::step-10-collect-formatting-results-summary",
      "step_name": "Collect formatting results summary",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "test_summary": "data_formatting_examples",
          "transformations_applied": [
            "essential_field_extraction",
            "summary_reports",
            "catalog_views",
            "hierarchical_transformation",
            "csv_formatting",
            "api_response_formatting",
            "conditional_formatting"
          ],
          "total_examples": 9
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"test_summary\":\"data_formatting_examples\",\"transformations_applied\":[\"essential_field_extraction\",\"summary_reports\",\"catalog_views\",\"hierarchical_transformation\",\"csv_formatting\",\"api_response_formatting\",\"conditional_formatting\"],\"total_examples\":9}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 251\r\n\r\n{\"test_summary\":\"data_formatting_examples\",\"transformations_applied\":[\"essential_field_extraction\",\"summary_reports\",\"catalog_views\",\"hierarchical_transformation\",\"csv_formatting\",\"api_response_formatting\",\"conditional_formatting\"],\"total_examples\":9}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "1032",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"test_summary\":\"data_formatting_examples\",\"transformations_applied\":[\"essential_field_extraction\",\"summary_reports\",\"catalog_views\",\"hierarchical_transformation\",\"csv_formatting\",\"api_response_formatting\",\"conditional_formatting\"],\"total_examples\":9}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "251",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "test_summary": "data_formatting_examples",
            "total_examples": 9,
            "transformations_applied": [
              "essential_field_extraction",
              "summary_reports",
              "catalog_views",
              "hierarchical_transformation",
              "csv_formatting",
              "api_response_formatting",
              "conditional_formatting"
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 857,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1032\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"test_summary\\\":\\\"data_formatting_examples\\\",\\\"transformations_applied\\\":[\\\"essential_field_extraction\\\",\\\"summary_reports\\\",\\\"catalog_views\\\",\\\"hierarchical_transformation\\\",\\\"csv_formatting\\\",\\\"api_response_formatting\\\",\\\"conditional_formatting\\\"],\\\"total_examples\\\":9}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"251\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"test_summary\": \"data_formatting_examples\",\n    \"total_examples\": 9,\n    \"transformations_applied\": [\n      \"essential_field_extraction\",\n      \"summary_reports\",\n      \"catalog_views\",\n      \"hierarchical_transformation\",\n      \"csv_formatting\",\n      \"api_response_formatting\",\n      \"conditional_formatting\"\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "formatted_data": {
          "test_summary": "data_formatting_examples",
          "total_examples": 9,
          "transformations_applied": [
            "essential_field_extraction",
            "summary_reports",
            "catalog_views",
            "hierarchical_transformation",
            "csv_formatting",
            "api_response_formatting",
            "conditional_formatting"
          ]
        },
        "transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "api_response_format": {
          "success": true,
          "data": [
            {
              "id": 1,
              "attributes": {
                "name": "Alice Johnson",
                "email": "alice@example.com",
                "profile": {
                  "department": "Engineering",
                  "level": "senior",
                  "salary": 95000
                }
              }
            },
            {
              "id": 2,
              "attributes": {
                "name": "Bob Smith",
                "email": "bob@example.com",
                "profile": {
                  "department": "Sales",
                  "level": "junior",
                  "salary": 65000
                }
              }
            },
            {
              "id": 3,
              "attributes": {
                "name": "Charlie Brown",
                "email": "charlie@example.com",
                "profile": {
                  "department": "Marketing",
                  "level": "mid",
                  "salary": 75000
                }
              }
            }
          ],
          "meta": {
            "count": 3,
            "timestamp": "2024-01-15T12:00:00Z"
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null,
        "complex_scenarios_test.user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "complex_scenarios_test.scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "complex_scenarios_test.conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        },
        "integration_full.e2e_test_summary": {
          "generated_data": {
            "active_user_count": "length(2)",
            "test_user": null,
            "total_transactions": 10,
            "total_users_processed": 5
          },
          "imported_flows": {
            "auth": {
              "token_present": true,
              "user_authenticated": true
            },
            "setup": {
              "environment": "integration",
              "session_active": true
            }
          },
          "performance": {
            "crud_performance": "excellent",
            "crud_success": true,
            "performance_rating": "excellent",
            "performance_score": 100
          },
          "test_summary": {
            "all_steps_completed": true,
            "environment": "integration",
            "initialization": true,
            "test_id": "INTEG_001"
          }
        },
        "integration_full.performance_metrics": {
          "crud_performance": "excellent",
          "crud_success": true,
          "performance_rating": "excellent",
          "performance_score": 100
        },
        "integration_full.user_journey_data": {
          "active_user_count": "length(2)",
          "test_user": null,
          "total_transactions": 10,
          "total_users_processed": 5
        },
        "integration_full.final_validation_result": "all_tests_passed",
        "advanced_scenarios.auth_status": "authenticated",
        "advanced_scenarios.performance_rating": "excellent",
        "advanced_scenarios.error_count": 1,
        "advanced_scenarios.final_scenario_result": "partial_success",
        "file_upload_test.file_id": "FILE-12345",
        "file_upload_test.upload_metadata": {
          "original_filename": "test_document.pdf",
          "file_size": 256000,
          "upload_time": "2024-01-01T10:00:00Z",
          "file_id": "{{file_id}}"
        },
        "file_upload_test.file_operations_summary": {
          "total_operations": 7,
          "upload_success": true,
          "download_success": true,
          "integrity_verified": true,
          "deletion_confirmed": true,
          "supported_formats_count": 4
        },
        "interactive-input-examples.selected_user_data": "user_001",
        "interactive-input-examples.user_action_result": "view_activity",
        "interactive-input-examples.final_config": {
          "action_performed": "view_activity",
          "batch_size": 10,
          "execution_metadata": {
            "confirmed": null,
            "reason": "{{action_reason}}",
            "test_run": true,
            "timestamp": "2024-01-15T12:00:00Z"
          },
          "notification_settings": {
            "email": "admin@company.com",
            "webhook": "{{webhook_url}}"
          },
          "selected_user": "user_001"
        },
        "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
        "faker-advanced-integration.generated_name": "Jeffery Romaguera",
        "faker-advanced-integration.generated_city": "Coral Springs",
        "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
        "faker-advanced-integration.locale_name": "Gail Ward",
        "microservices_integration_test.service_health_status": {
          "pre_transaction": "{{all_services_up}}",
          "post_transaction": "{{post_transaction_health}}",
          "degradation_detected": "false"
        },
        "microservices_integration_test.integration_results": {
          "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
          "services_coordination": "successful",
          "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
          "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
        },
        "microservices_integration_test.transaction_trace": {
          "trace_id": "{{tracing_headers.trace_id}}",
          "correlation_id": "{{tracing_headers.correlation_id}}",
          "total_steps": 12,
          "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
          "service_calls": 11,
          "cross_service_calls": 6
        },
        "microservices_integration_test.service_dependencies": [
          {
            "service": "user-service",
            "dependencies": [],
            "dependents": [
              "order-service",
              "notification-service"
            ]
          },
          {
            "service": "inventory-service",
            "dependencies": [],
            "dependents": [
              "order-service"
            ]
          },
          {
            "service": "order-service",
            "dependencies": [
              "user-service",
              "inventory-service"
            ],
            "dependents": [
              "payment-service",
              "notification-service"
            ]
          },
          {
            "service": "payment-service",
            "dependencies": [
              "order-service"
            ],
            "dependents": [
              "order-service",
              "inventory-service"
            ]
          },
          {
            "service": "notification-service",
            "dependencies": [
              "user-service",
              "order-service"
            ],
            "dependents": []
          }
        ],
        "microservices_integration_test.payment_approved": "true",
        "performance_test.performance_metrics": {
          "response_time_analysis": {
            "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
            "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
            "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
          },
          "load_test_results": {
            "light_load_success": "{{light_load_success}}",
            "medium_load_degradation": "{{medium_load_degradation}}",
            "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
            "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
          },
          "performance_thresholds": {
            "baseline_met": "{{baseline_success}}",
            "acceptable_met": "{{small_payload_success && medium_payload_success}}",
            "critical_met": "{{large_payload_success}}"
          },
          "system_characteristics": {
            "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
            "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
            "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
          }
        },
        "performance_test.response_times": [
          {
            "endpoint": "baseline_get",
            "time": "{{baseline_response_time}}",
            "grade": "{{baseline_performance_grade}}"
          },
          {
            "endpoint": "small_payload_post",
            "time": "{{small_payload_time}}",
            "success": "{{small_payload_success}}"
          },
          {
            "endpoint": "medium_payload_post",
            "time": "{{medium_payload_time}}",
            "success": "{{medium_payload_success}}"
          },
          {
            "endpoint": "large_payload_post",
            "time": "{{large_payload_time}}",
            "success": "{{large_payload_success}}"
          }
        ],
        "performance_test.throughput_results": {
          "baseline_rps": "{{requests_per_second}}",
          "performance_comparison": "{{performance_comparison}}",
          "degradation_under_load": "{{medium_load_degradation}}"
        },
        "performance_test.load_test_summary": {
          "total_scenarios_tested": 3,
          "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
          "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
          "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
          "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
        }
      }
    }
  ],
  "variables_captured": {},
  "available_variables": {
    "api_base_url": "http://localhost:8080",
    "api_response_format": {
      "success": true,
      "data": [
        {
          "id": 1,
          "attributes": {
            "name": "Alice Johnson",
            "email": "alice@example.com",
            "profile": {
              "department": "Engineering",
              "level": "senior",
              "salary": 95000
            }
          }
        },
        {
          "id": 2,
          "attributes": {
            "name": "Bob Smith",
            "email": "bob@example.com",
            "profile": {
              "department": "Sales",
              "level": "junior",
              "salary": 65000
            }
          }
        },
        {
          "id": 3,
          "attributes": {
            "name": "Charlie Brown",
            "email": "charlie@example.com",
            "profile": {
              "department": "Marketing",
              "level": "mid",
              "salary": 75000
            }
          }
        }
      ],
      "meta": {
        "count": 3,
        "timestamp": "2024-01-15T12:00:00Z"
      }
    },
    "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
    "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
    "auth_flows_test.user_permissions": [
      "read",
      "write"
    ],
    "auth_flows_test.auth_flow_results": {
      "jwt_authentication": {
        "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
        "tokens_issued": 2,
        "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
      },
      "oauth2_authentication": {
        "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
        "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
        "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
      },
      "security_validation": {
        "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
        "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
        "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
      },
      "session_management": {
        "logout_success": "{{js: Boolean(variables.complete_logout)}}",
        "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
      }
    },
    "complex-workflows-test.workflow_results": {
      "api_contract_validations": {
        "order_service": null,
        "payment_service": null,
        "user_service": null
      },
      "business_outcomes": {
        "customer_id": "{{customer_id}}",
        "items_purchased": 3,
        "order_id": null,
        "total_revenue": 594.96,
        "transaction_id": null,
        "workflow_completion": null
      },
      "ecommerce_workflow_results": {
        "cart_management": "success",
        "catalog_browsing": null,
        "customer_registration": null,
        "fulfillment_initiated": null,
        "order_created": null,
        "payment_processed": null,
        "product_details": null,
        "promotions_applied": null,
        "shipping_calculated": null
      },
      "end_to_end_success": true,
      "microservices_communication": {
        "inventory_service": null,
        "notification_service": null
      },
      "test_summary": "complex_workflows_ecommerce_contracts",
      "total_complex_workflow_tests": 13,
      "workflow_patterns_tested": [
        "customer_lifecycle_management",
        "product_catalog_interaction",
        "cart_and_checkout_process",
        "payment_transaction_flow",
        "order_fulfillment_pipeline",
        "api_contract_validation",
        "microservices_integration",
        "end_to_end_business_process",
        "workflow_analytics_tracking"
      ],
      "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
    },
    "complex-workflows-test.ecommerce_data": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "complex-workflows-test.contract_validation_results": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
    "input-capture-test.normalized_email": "John.Doe@Example.COM",
    "input-capture-test.email_domain": "John.Doe@Example.COM",
    "input-capture-test.full_name": "John Michael Doe",
    "dependency-setup.auth_token": "test_user",
    "dependency-setup.session_id": "172.18.0.3",
    "dependency-setup.config_id": "v2",
    "dependency-setup.setup_timestamp": true,
    "comprehensive_basic.captured_echo_data": {
      "action": "create_resource",
      "metadata": {
        "api_version": "v2.1",
        "test_mode": true,
        "timestamp": "2024-01-01T00:00:00Z"
      },
      "user_id": 12345,
      "username": "flow_test_user"
    },
    "comprehensive_basic.generated_uuid": "httpbin",
    "comprehensive_basic.final_status": "completed",
    "javascript-expressions.js_calculated": 50,
    "javascript-expressions.js_timestamp": 1760869717656,
    "iteration-examples.users_tested": null,
    "iteration-examples.range_test_summary": null,
    "sensitive-data-security.security_test_passed": null,
    "sensitive-data-security.sensitive_data_masked": null,
    "sensitive-data-security.auth_tokens_secure": null,
    "webhooks-realtime.webhook_delivered": true,
    "webhooks-realtime.webhook_system_healthy": false,
    "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
    "webhooks-realtime.stream_event_count": 3,
    "retry-logic-comprehensive.retry_attempts": 1,
    "retry-logic-comprehensive.retry_system_functional": false,
    "retry-logic-comprehensive.jittered_response_time": null,
    "file-upload-multipart-test.upload_results": {
      "content_types_tested": [
        "text/plain",
        "application/json",
        "application/octet-stream",
        "image/jpeg",
        "application/pdf",
        "video/mp4",
        "multipart/form-data"
      ],
      "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
      "test_patterns": [
        "single_file_upload",
        "multiple_file_upload",
        "large_file_handling",
        "chunked_upload_process",
        "upload_validation",
        "error_handling",
        "resume_functionality"
      ],
      "test_summary": "file_upload_multipart_comprehensive",
      "total_upload_tests": 12,
      "upload_results": {
        "binary_upload": null,
        "chunked_upload": null,
        "image_upload": null,
        "json_upload": null,
        "large_file": null,
        "mixed_form": null,
        "multiple_upload": null,
        "resume_upload": null,
        "text_upload": null,
        "validated_upload": null
      },
      "upload_scenarios_tested": [
        "text_file_upload",
        "json_file_upload",
        "binary_file_upload",
        "image_file_upload",
        "multiple_files_upload",
        "mixed_form_data",
        "large_file_upload",
        "chunked_upload",
        "validated_upload",
        "error_scenarios",
        "resume_upload"
      ]
    },
    "file-upload-multipart-test.multipart_data": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "file-upload-multipart-test.file_handling_status": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ],
    "advanced-assertions-test.assertion_results": {
      "assertion_types_tested": [
        "regex_matching",
        "length_validation",
        "type_checking",
        "oneof_validation",
        "numeric_ranges",
        "complex_nested",
        "array_elements",
        "conditional_exists",
        "error_structure",
        "performance_combined"
      ],
      "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
      "test_patterns": {
        "array_length": null,
        "complex_nested": null,
        "email_regex": null,
        "length_exact": null,
        "oneof_strings": null,
        "phone_regex": null,
        "type_validation": null,
        "url_regex": null,
        "uuid_regex": null
      },
      "test_summary": "advanced_assertions_comprehensive",
      "total_assertion_tests": 11
    },
    "advanced-assertions-test.validation_data": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "advanced-assertions-test.regex_test_results": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "advanced-retry-patterns.retry_results": {
      "base_delay_ms": 1000,
      "max_retries_configured": 3,
      "patterns_tested": [
        "exponential_backoff",
        "linear_backoff",
        "fixed_delay",
        "conditional_retry",
        "no_retry_4xx",
        "timeout_retry_combo",
        "high_frequency",
        "multi_condition",
        "performance_tracking",
        "retry_chain"
      ],
      "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
      "test_summary": "advanced_retry_patterns",
      "total_retry_tests": 12
    },
    "advanced-retry-patterns.backoff_measurements": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "environment-feature-flags-test.environment_results": {
      "current_environment": null,
      "deployment_stage": null,
      "environment_configurations": {
        "development": {
          "debug_logging": true,
          "retry_attempts": 3,
          "timeout": 30000
        },
        "production": {
          "debug_logging": false,
          "retry_attempts": 1,
          "timeout": 5000
        },
        "staging": {
          "debug_logging": false,
          "retry_attempts": 2,
          "timeout": 15000
        },
        "test": {
          "debug_logging": false,
          "retry_attempts": 2,
          "timeout": 10000
        }
      },
      "environment_specific_tests": {
        "development": "skipped",
        "production": "skipped",
        "staging": "skipped",
        "test": "skipped"
      },
      "environment_urls": {
        "development": "http://localhost:3000",
        "production": "https://api.example.com",
        "staging": "https://staging-api.example.com",
        "test": "http://localhost:8080"
      },
      "feature_flag_results": {
        "advanced_analytics": "skipped",
        "api_v2": "skipped",
        "beta_program": "skipped",
        "debug_mode": "skipped",
        "experimental_features": "skipped",
        "new_ui": "skipped"
      },
      "feature_flags_tested": {
        "advanced_analytics": null,
        "api_v2": null,
        "beta_program": null,
        "debug_mode": null,
        "experimental_features": null,
        "new_ui": null
      },
      "test_environment": null,
      "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
      "test_patterns": [
        "environment_detection",
        "environment_specific_operations",
        "feature_flag_conditional_execution",
        "multi_environment_configuration",
        "environment_based_data_handling",
        "feature_flag_combinations"
      ],
      "test_summary": "environment_feature_flags_comprehensive",
      "total_environment_tests": 13
    },
    "environment-feature-flags-test.feature_flag_data": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "environment-feature-flags-test.multi_env_config": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "error-handling-test.error_handling_results": {
      "error_handling_results": {
        "bad_gateway": null,
        "bad_request": null,
        "chain_recovery": "error_recovery",
        "cleanup_status": null,
        "continue_after_failure": null,
        "degradation_mode": null,
        "fallback_service": null,
        "forbidden": null,
        "not_found": null,
        "primary_service": null,
        "rate_limit": null,
        "server_error": null,
        "service_unavailable": null,
        "timeout_handling": "{{timeout_result}}",
        "unauthorized": null
      },
      "error_scenarios_tested": [
        "continue_on_failure",
        "timeout_handling",
        "http_error_codes",
        "error_recovery_fallback",
        "graceful_degradation",
        "chain_failure_recovery",
        "error_propagation",
        "network_errors",
        "cleanup_after_errors"
      ],
      "http_status_codes_handled": [
        400,
        401,
        403,
        404,
        422,
        429,
        500,
        502,
        503
      ],
      "recovery_patterns": [
        "fallback_services",
        "graceful_degradation",
        "error_chain_recovery",
        "resource_cleanup"
      ],
      "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
      "test_summary": "error_handling_comprehensive",
      "total_error_tests": 10
    },
    "error-handling-test.failure_scenarios": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "error-handling-test.recovery_data": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
    "faker_demo.generatedUserId": 8456786969362432,
    "httpbin-test.captured_username": "alpha_user",
    "httpbin-test.auth_token": "httpbin",
    "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
    "variable_cleanup_test.variable_state_before": null,
    "variable_cleanup_test.variable_state_after": null,
    "environment-variables.env_user": null,
    "environment-variables.env_home": null,
    "environment-variables.env_test_passed": true,
    "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
    "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
    "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
    "variable_interpolation.captured_user_data": null,
    "variable_interpolation.extracted_numbers": null,
    "variable_interpolation.processed_array": null,
    "variable_interpolation.nested_extraction": null,
    "variable_interpolation.final_computed_value": null,
    "complex_scenarios_test.user_access_matrix": {
      "guest_valid": false,
      "registered_valid": false,
      "premium_valid": false,
      "admin_valid": false
    },
    "complex_scenarios_test.scenario_results": {
      "guest_scenario": "not_tested",
      "registered_scenario": "not_tested",
      "premium_scenario": "not_tested",
      "admin_scenario": "not_tested",
      "cross_validation": "not_tested"
    },
    "complex_scenarios_test.conditional_flow_summary": {
      "total_scenarios": 6,
      "conditions_tested": 12,
      "user_types_validated": 4,
      "matrix_validation": false,
      "test_complete": true
    },
    "integration_full.e2e_test_summary": {
      "generated_data": {
        "active_user_count": "length(2)",
        "test_user": null,
        "total_transactions": 10,
        "total_users_processed": 5
      },
      "imported_flows": {
        "auth": {
          "token_present": true,
          "user_authenticated": true
        },
        "setup": {
          "environment": "integration",
          "session_active": true
        }
      },
      "performance": {
        "crud_performance": "excellent",
        "crud_success": true,
        "performance_rating": "excellent",
        "performance_score": 100
      },
      "test_summary": {
        "all_steps_completed": true,
        "environment": "integration",
        "initialization": true,
        "test_id": "INTEG_001"
      }
    },
    "integration_full.performance_metrics": {
      "crud_performance": "excellent",
      "crud_success": true,
      "performance_rating": "excellent",
      "performance_score": 100
    },
    "integration_full.user_journey_data": {
      "active_user_count": "length(2)",
      "test_user": null,
      "total_transactions": 10,
      "total_users_processed": 5
    },
    "integration_full.final_validation_result": "all_tests_passed",
    "advanced_scenarios.auth_status": "authenticated",
    "advanced_scenarios.performance_rating": "excellent",
    "advanced_scenarios.error_count": 1,
    "advanced_scenarios.final_scenario_result": "partial_success",
    "file_upload_test.file_id": "FILE-12345",
    "file_upload_test.upload_metadata": {
      "original_filename": "test_document.pdf",
      "file_size": 256000,
      "upload_time": "2024-01-01T10:00:00Z",
      "file_id": "{{file_id}}"
    },
    "file_upload_test.file_operations_summary": {
      "total_operations": 7,
      "upload_success": true,
      "download_success": true,
      "integrity_verified": true,
      "deletion_confirmed": true,
      "supported_formats_count": 4
    },
    "interactive-input-examples.selected_user_data": "user_001",
    "interactive-input-examples.user_action_result": "view_activity",
    "interactive-input-examples.final_config": {
      "action_performed": "view_activity",
      "batch_size": 10,
      "execution_metadata": {
        "confirmed": null,
        "reason": "{{action_reason}}",
        "test_run": true,
        "timestamp": "2024-01-15T12:00:00Z"
      },
      "notification_settings": {
        "email": "admin@company.com",
        "webhook": "{{webhook_url}}"
      },
      "selected_user": "user_001"
    },
    "faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
    "faker-advanced-integration.generated_name": "Jeffery Romaguera",
    "faker-advanced-integration.generated_city": "Coral Springs",
    "faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
    "faker-advanced-integration.locale_name": "Gail Ward",
    "microservices_integration_test.service_health_status": {
      "pre_transaction": "{{all_services_up}}",
      "post_transaction": "{{post_transaction_health}}",
      "degradation_detected": "false"
    },
    "microservices_integration_test.integration_results": {
      "transaction_success": "{{payment_approved && order_updated && notification_sent}}",
      "services_coordination": "successful",
      "data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
      "error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
    },
    "microservices_integration_test.transaction_trace": {
      "trace_id": "{{tracing_headers.trace_id}}",
      "correlation_id": "{{tracing_headers.correlation_id}}",
      "total_steps": 12,
      "execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
      "service_calls": 11,
      "cross_service_calls": 6
    },
    "microservices_integration_test.service_dependencies": [
      {
        "service": "user-service",
        "dependencies": [],
        "dependents": [
          "order-service",
          "notification-service"
        ]
      },
      {
        "service": "inventory-service",
        "dependencies": [],
        "dependents": [
          "order-service"
        ]
      },
      {
        "service": "order-service",
        "dependencies": [
          "user-service",
          "inventory-service"
        ],
        "dependents": [
          "payment-service",
          "notification-service"
        ]
      },
      {
        "service": "payment-service",
        "dependencies": [
          "order-service"
        ],
        "dependents": [
          "order-service",
          "inventory-service"
        ]
      },
      {
        "service": "notification-service",
        "dependencies": [
          "user-service",
          "order-service"
        ],
        "dependents": []
      }
    ],
    "microservices_integration_test.payment_approved": "true",
    "performance_test.performance_metrics": {
      "response_time_analysis": {
        "fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
        "slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
        "average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
      },
      "load_test_results": {
        "light_load_success": "{{light_load_success}}",
        "medium_load_degradation": "{{medium_load_degradation}}",
        "heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
        "load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
      },
      "performance_thresholds": {
        "baseline_met": "{{baseline_success}}",
        "acceptable_met": "{{small_payload_success && medium_payload_success}}",
        "critical_met": "{{large_payload_success}}"
      },
      "system_characteristics": {
        "payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
        "load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
        "timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
      }
    },
    "performance_test.response_times": [
      {
        "endpoint": "baseline_get",
        "time": "{{baseline_response_time}}",
        "grade": "{{baseline_performance_grade}}"
      },
      {
        "endpoint": "small_payload_post",
        "time": "{{small_payload_time}}",
        "success": "{{small_payload_success}}"
      },
      {
        "endpoint": "medium_payload_post",
        "time": "{{medium_payload_time}}",
        "success": "{{medium_payload_success}}"
      },
      {
        "endpoint": "large_payload_post",
        "time": "{{large_payload_time}}",
        "success": "{{large_payload_success}}"
      }
    ],
    "performance_test.throughput_results": {
      "baseline_rps": "{{requests_per_second}}",
      "performance_comparison": "{{performance_comparison}}",
      "degradation_under_load": "{{medium_load_degradation}}"
    },
    "performance_test.load_test_summary": {
      "total_scenarios_tested": 3,
      "light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
      "medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
      "heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
      "overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
    }
  },
  "suite_yaml_content": "suite_name: \"Data Formatting and Transformation Examples\"\nnode_id: \"data-formatting-examples\"\ndescription: \"Demonstrates various data formatting and transformation techniques using JMESPath projections and extractions\"\nbase_url: \"{{httpbin_url}}\"\n\nmetadata:\n  priority: \"medium\"\n  tags: [\"formatting\", \"transformation\", \"jmespath\", \"data-manipulation\"]\n  estimated_duration_ms: 8000\n\nvariables:\n  # Simulated data for testing formatting capabilities\n  sample_users:\n    - id: 1\n      name: \"Alice Johnson\"\n      email: \"alice@example.com\"\n      status: \"active\"\n      role: \"admin\"\n      last_login: \"2024-01-15T10:30:00Z\"\n      profile:\n        department: \"Engineering\"\n        level: \"senior\"\n        salary: 95000\n    - id: 2\n      name: \"Bob Smith\"\n      email: \"bob@example.com\"\n      status: \"active\"\n      role: \"user\"\n      last_login: \"2024-01-14T15:45:00Z\"\n      profile:\n        department: \"Sales\"\n        level: \"junior\"\n        salary: 65000\n    - id: 3\n      name: \"Charlie Brown\"\n      email: \"charlie@example.com\"\n      status: \"inactive\"\n      role: \"moderator\"\n      last_login: \"2023-12-20T09:15:00Z\"\n      profile:\n        department: \"Marketing\"\n        level: \"mid\"\n        salary: 75000\n\n  sample_products:\n    - id: \"PROD-001\"\n      title: \"Premium Laptop\"\n      price: 1299.99\n      category: \"electronics\"\n      brand: \"TechCorp\"\n      tags: [\"premium\", \"laptop\", \"gaming\"]\n      inventory:\n        stock: 25\n        warehouse: \"US-WEST\"\n    - id: \"PROD-002\"\n      title: \"Basic Mouse\"\n      price: 19.99\n      category: \"accessories\"\n      brand: \"BasicTech\"\n      tags: [\"basic\", \"mouse\", \"office\"]\n      inventory:\n        stock: 150\n        warehouse: \"US-EAST\"\n\nexports: [\"formatted_data\", \"transformation_results\"]\n\nsteps:\n  # 1. Get raw data to format\n  - name: \"Get user data for formatting\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        users: \"{{sample_users}}\"\n        metadata:\n          total_count: 3\n          timestamp: \"2024-01-15T12:00:00Z\"\n          source: \"user_management_system\"\n    assert:\n      status_code: 200\n    capture:\n      raw_users_data: \"body.json.users\"\n      response_metadata: \"body.json.metadata\"\n\n  # 2. Format user data - Extract only essential fields\n  - name: \"Format users - Essential fields only\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"format_users_essential\"\n        raw_data: \"{{raw_users_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Extract only id, name, and email using JMESPath projection\n      essential_users: \"body.json.raw_data[*].{user_id: id, full_name: name, email_address: email}\"\n      # Extract just the names as simple array\n      user_names_only: \"body.json.raw_data[*].name\"\n      # Extract just active user emails\n      active_user_emails: \"body.json.raw_data[?status == 'active'].email\"\n\n  # 3. Format user data - Create summary report\n  - name: \"Format users - Summary report\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"format_users_summary\"\n        users: \"{{raw_users_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Create a summary object with formatted data\n      user_summary: \"body.json.{total_users: length(users), active_count: length(users[?status == 'active']), department_list: users[*].profile.department}\"\n      # Extract salary information formatted\n      salary_report: \"body.json.users[*].{name: name, department: profile.department, salary_formatted: profile.salary}\"\n      # Create role-based grouping\n      admin_users: \"body.json.users[?role == 'admin'].{name: name, email: email}\"\n      regular_users: \"body.json.users[?role == 'user'].{name: name, department: profile.department}\"\n\n  # 4. Get product data for complex formatting\n  - name: \"Get product data for formatting\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        products: \"{{sample_products}}\"\n        catalog_info:\n          total_items: 2\n          last_updated: \"2024-01-15T10:00:00Z\"\n    assert:\n      status_code: 200\n    capture:\n      raw_products_data: \"body.json.products\"\n\n  # 5. Format product data - Create catalog views\n  - name: \"Format products - Multiple catalog views\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"format_product_catalog\"\n        products: \"{{raw_products_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Simple product list for display\n      product_catalog_simple: \"body.json.products[*].{id: id, name: title, price: price, available: inventory.stock}\"\n      # Price-focused view\n      price_list: \"body.json.products[*].{product: title, price_usd: price, category: category}\"\n      # Inventory report\n      inventory_status: \"body.json.products[*].{item_code: id, stock_level: inventory.stock, location: inventory.warehouse}\"\n      # Tag-based organization\n      product_tags_flat: \"body.json.products[*].tags[]\"\n      # Brand summary\n      brand_catalog: \"body.json.products[*].{brand: brand, products: title, category: category}\"\n\n  # 6. Advanced formatting - Nested data transformation\n  - name: \"Advanced formatting - Complex transformations\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"advanced_formatting\"\n        users: \"{{raw_users_data}}\"\n        products: \"{{raw_products_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Create hierarchical department view\n      department_hierarchy: \"body.json.users[*].profile.{department: department, employees: [{name: name, level: level, role: role}]}\"\n      # Calculate aggregated salary by department (using available data)\n      salary_by_department: \"body.json.users[*].{dept: profile.department, salary: profile.salary}\"\n      # Create user-product cross reference (simulated)\n      user_product_matrix: \"body.json.{user_count: length(users), product_count: length(products), active_users: users[?status == 'active'][*].name}\"\n\n  # 7. Format for different output formats\n  - name: \"Format for CSV-style output\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"csv_format\"\n        users: \"{{raw_users_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # CSV-like structure (array of arrays)\n      csv_headers: \"body.json.['ID', 'Name', 'Email', 'Department', 'Status']\"\n      csv_data: \"body.json.users[*].[id, name, email, profile.department, status]\"\n      # JSON structure optimized for table display\n      table_data: \"body.json.users[*].{col1: id, col2: name, col3: email, col4: profile.department, col5: status}\"\n\n  # 8. Format for API responses\n  - name: \"Format for API response structure\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"api_response_format\"\n        data: \"{{raw_users_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Standard API response format\n      api_response_format: \"body.json.{success: `true`, data: data[*].{id: id, attributes: {name: name, email: email, profile: profile}}, meta: {count: length(data), timestamp: '2024-01-15T12:00:00Z'}}\"\n      # Paginated response format\n      paginated_format: \"body.json.{page: `1`, per_page: `10`, total: length(data), items: data[*].{id: id, name: name, email: email}}\"\n\n  # 9. Format with conditional logic\n  - name: \"Conditional formatting based on data values\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"conditional_formatting\"\n        users: \"{{raw_users_data}}\"\n        products: \"{{raw_products_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Format users with status indicators\n      users_with_indicators: \"body.json.users[*].{name: name, email: email, status_icon: status == 'active' && '✓' || '✗', priority: profile.level == 'senior' && 'high' || 'normal'}\"\n      # Format products with price categories\n      products_with_categories: \"body.json.products[*].{name: title, price: price, price_category: price > `1000` && 'premium' || price > `100` && 'standard' || 'budget'}\"\n\n  # 10. Final summary - Collect all formatted data\n  - name: \"Collect formatting results summary\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        test_summary: \"data_formatting_examples\"\n        transformations_applied:\n          - \"essential_field_extraction\"\n          - \"summary_reports\"\n          - \"catalog_views\"\n          - \"hierarchical_transformation\"\n          - \"csv_formatting\"\n          - \"api_response_formatting\"\n          - \"conditional_formatting\"\n        total_examples: 9\n    assert:\n      status_code: 200\n    capture:\n      formatted_data: \"body.json\"\n      transformation_results: \"body.json.transformations_applied\""
}
Flow Test Engine
Report generated on 10/19/2025, 10:28:45 AM
© 2025 Flow Test Engine. Dynamic Reporting System.