Nested Array Filtering and Flatten Projections

/app/tests/nested-array-filtering-examples.yaml

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

📊 Execution Timeline

# Status Step Name Type Duration Started At Details
1
Basic flatten operations
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
2
Filter sub-arrays by conditions
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
3
Filter nested arrays in objects
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
4
Product catalog nested array filtering
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
5
Advanced matrix filtering and operations
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
6
Time series data filtering
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
7
Multi-level filtering combinations
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
8
Conditional nested array filtering
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
9
Array transformation with nested structures
POST /post
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
10
Performance testing with nested arrays
POST /post
request
1ms 19/10/2025, 10:28:39
✅ Request completed successfully
11
Nested array filtering summary
POST /post
request
1ms 19/10/2025, 10:28:39
✅ Request completed successfully

🌐 HTTP Requests Debug Info

Basic flatten operations

Step #1

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"basic_flatten","number_matrix":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],"coordinates":[[10,20],[30,40],[50,60],[70,80],[90,100]],"categories":[["electronics","phones","tablets"],["clothing","shirts","pants","shoes"],["books","fiction","non-fiction"],["sports","football","basketball"]]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "basic_flatten",
  "number_matrix": [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ],
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "coordinates": [
    [
      10,
      20
    ],
    [
      30,
      40
    ],
    [
      50,
      60
    ],
    [
      70,
      80
    ],
    [
      90,
      100
    ]
  ],
  "categories": [
    [
      "electronics",
      "phones",
      "tablets"
    ],
    [
      "clothing",
      "shirts",
      "pants",
      "shoes"
    ],
    [
      "books",
      "fiction",
      "non-fiction"
    ],
    [
      "sports",
      "football",
      "basketball"
    ]
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 961 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: 1627
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"basic_flatten\",\"number_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"categories\":[[\"electronics\",\"phones\",\"tablets\"],[\"clothing\",\"shirts\",\"pants\",\"shoes\"],[\"books\",\"fiction\",\"non-fiction\"],[\"sports\",\"football\",\"basketball\"]]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "296",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "categories": [
      [
        "electronics",
        "phones",
        "tablets"
      ],
      [
        "clothing",
        "shirts",
        "pants",
        "shoes"
      ],
      [
        "books",
        "fiction",
        "non-fiction"
      ],
      [
        "sports",
        "football",
        "basketball"
      ]
    ],
    "coordinates": [
      [
        10,
        20
      ],
      [
        30,
        40
      ],
      [
        50,
        60
      ],
      [
        70,
        80
      ],
      [
        90,
        100
      ]
    ],
    "number_matrix": [
      [
        1,
        2,
        3
      ],
      [
        4,
        5,
        6
      ],
      [
        7,
        8,
        9
      ],
      [
        10,
        11,
        12
      ]
    ],
    "operation": "basic_flatten"
  },
  "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
{
  "flattened_numbers": [
    1,
    2,
    3,
    4,
    5,
    6,
    7,
    8,
    9,
    10,
    11,
    12
  ],
  "all_coordinates": [
    10,
    20,
    30,
    40,
    50,
    60,
    70,
    80,
    90,
    100
  ],
  "all_categories": [
    "electronics",
    "phones",
    "tablets",
    "clothing",
    "shirts",
    "pants",
    "shoes",
    "books",
    "fiction",
    "non-fiction",
    "sports",
    "football",
    "basketball"
  ],
  "total_numbers": 12
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Filter sub-arrays by conditions

Step #2

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_subarrays","matrix":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],"coordinates":[[10,20],[30,40],[50,60],[70,80],[90,100]]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "filter_subarrays",
  "matrix": [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ],
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "coordinates": [
    [
      10,
      20
    ],
    [
      30,
      40
    ],
    [
      50,
      60
    ],
    [
      70,
      80
    ],
    [
      90,
      100
    ]
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 611 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: 1080
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"filter_subarrays\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "135",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "coordinates": [
      [
        10,
        20
      ],
      [
        30,
        40
      ],
      [
        50,
        60
      ],
      [
        70,
        80
      ],
      [
        90,
        100
      ]
    ],
    "matrix": [
      [
        1,
        2,
        3
      ],
      [
        4,
        5,
        6
      ],
      [
        7,
        8,
        9
      ],
      [
        10,
        11,
        12
      ]
    ],
    "operation": "filter_subarrays"
  },
  "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
{
  "rows_starting_gt5": [
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "high_x_coordinates": [
    [
      70,
      80
    ],
    [
      90,
      100
    ]
  ],
  "even_y_coordinates": [
    [
      10,
      20
    ],
    [
      30,
      40
    ],
    [
      50,
      60
    ],
    [
      70,
      80
    ],
    [
      90,
      100
    ]
  ],
  "second_elements": [
    2,
    5,
    8,
    11
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Filter nested arrays in objects

Step #3

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_nested_objects","users":[{"id":1,"name":"Alice Admin","department":"IT","permission_groups":[["user:read","user:write","user:delete"],["system:admin","system:config"],["reports:view","reports:create"]],"skill_categories":[["programming","javascript","python"],["devops","docker","kubernetes"]]},{"id":2,"name":"Bob Manager","department":"Sales","permission_groups":[["user:read","user:write"],["sales:view","sales:edit"],["reports:view"]],"skill_categories":[["management","team-lead","strategy"],["sales","crm","negotiation"]]},{"id":3,"name":"Carol Developer","department":"Engineering","permission_groups":[["user:read"],["code:read","code:write"],["deploy:staging"]],"skill_categories":[["programming","java","spring"],["database","sql","mongodb"]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "filter_nested_objects",
  "users": [
    {
      "id": 1,
      "name": "Alice Admin",
      "department": "IT",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    },
    {
      "id": 2,
      "name": "Bob Manager",
      "department": "Sales",
      "permission_groups": [
        [
          "user:read",
          "user:write"
        ],
        [
          "sales:view",
          "sales:edit"
        ],
        [
          "reports:view"
        ]
      ],
      "skill_categories": [
        [
          "management",
          "team-lead",
          "strategy"
        ],
        [
          "sales",
          "crm",
          "negotiation"
        ]
      ]
    },
    {
      "id": 3,
      "name": "Carol Developer",
      "department": "Engineering",
      "permission_groups": [
        [
          "user:read"
        ],
        [
          "code:read",
          "code:write"
        ],
        [
          "deploy:staging"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "java",
          "spring"
        ],
        [
          "database",
          "sql",
          "mongodb"
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 2001 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: 3174
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"filter_nested_objects\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "776",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "filter_nested_objects",
    "users": [
      {
        "department": "IT",
        "id": 1,
        "name": "Alice Admin",
        "permission_groups": [
          [
            "user:read",
            "user:write",
            "user:delete"
          ],
          [
            "system:admin",
            "system:config"
          ],
          [
            "reports:view",
            "reports:create"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "javascript",
            "python"
          ],
          [
            "devops",
            "docker",
            "kubernetes"
          ]
        ]
      },
      {
        "department": "Sales",
        "id": 2,
        "name": "Bob Manager",
        "permission_groups": [
          [
            "user:read",
            "user:write"
          ],
          [
            "sales:view",
            "sales:edit"
          ],
          [
            "reports:view"
          ]
        ],
        "skill_categories": [
          [
            "management",
            "team-lead",
            "strategy"
          ],
          [
            "sales",
            "crm",
            "negotiation"
          ]
        ]
      },
      {
        "department": "Engineering",
        "id": 3,
        "name": "Carol Developer",
        "permission_groups": [
          [
            "user:read"
          ],
          [
            "code:read",
            "code:write"
          ],
          [
            "deploy:staging"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "java",
            "spring"
          ],
          [
            "database",
            "sql",
            "mongodb"
          ]
        ]
      }
    ]
  },
  "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
{
  "all_permissions": [
    "user:read",
    "user:write",
    "user:delete",
    "system:admin",
    "system:config",
    "reports:view",
    "reports:create",
    "user:read",
    "user:write",
    "sales:view",
    "sales:edit",
    "reports:view",
    "user:read",
    "code:read",
    "code:write",
    "deploy:staging"
  ],
  "all_skills": [
    "programming",
    "javascript",
    "python",
    "devops",
    "docker",
    "kubernetes",
    "management",
    "team-lead",
    "strategy",
    "sales",
    "crm",
    "negotiation",
    "programming",
    "java",
    "spring",
    "database",
    "sql",
    "mongodb"
  ],
  "users_with_admin": [
    {
      "department": "IT",
      "id": 1,
      "name": "Alice Admin",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    }
  ],
  "programming_skills": [
    [
      "programming",
      "javascript",
      "python"
    ],
    [
      "programming",
      "java",
      "spring"
    ]
  ],
  "it_permissions": []
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Product catalog nested array filtering

Step #4

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"product_nested_filtering","products":[{"id":"PROD-001","name":"Smartphone","price":599.99,"category_hierarchy":["electronics","mobile","smartphones"],"tag_groups":[["premium","flagship"],["5g","wireless-charging"],["camera","photography"]],"feature_matrix":[["display","6.1inch","oled"],["camera","triple","48mp"],["battery","4000mah","fast-charge"]]},{"id":"PROD-002","name":"Laptop","price":1299.99,"category_hierarchy":["electronics","computers","laptops"],"tag_groups":[["professional","business"],["performance","gaming"],["portable","lightweight"]],"feature_matrix":[["processor","intel-i7","8-cores"],["memory","16gb","ddr4"],["storage","512gb","ssd"]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "product_nested_filtering",
  "products": [
    {
      "id": "PROD-001",
      "name": "Smartphone",
      "price": 599.99,
      "category_hierarchy": [
        "electronics",
        "mobile",
        "smartphones"
      ],
      "tag_groups": [
        [
          "premium",
          "flagship"
        ],
        [
          "5g",
          "wireless-charging"
        ],
        [
          "camera",
          "photography"
        ]
      ],
      "feature_matrix": [
        [
          "display",
          "6.1inch",
          "oled"
        ],
        [
          "camera",
          "triple",
          "48mp"
        ],
        [
          "battery",
          "4000mah",
          "fast-charge"
        ]
      ]
    },
    {
      "id": "PROD-002",
      "name": "Laptop",
      "price": 1299.99,
      "category_hierarchy": [
        "electronics",
        "computers",
        "laptops"
      ],
      "tag_groups": [
        [
          "professional",
          "business"
        ],
        [
          "performance",
          "gaming"
        ],
        [
          "portable",
          "lightweight"
        ]
      ],
      "feature_matrix": [
        [
          "processor",
          "intel-i7",
          "8-cores"
        ],
        [
          "memory",
          "16gb",
          "ddr4"
        ],
        [
          "storage",
          "512gb",
          "ssd"
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1795 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: 2871
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"product_nested_filtering\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "676",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "product_nested_filtering",
    "products": [
      {
        "category_hierarchy": [
          "electronics",
          "mobile",
          "smartphones"
        ],
        "feature_matrix": [
          [
            "display",
            "6.1inch",
            "oled"
          ],
          [
            "camera",
            "triple",
            "48mp"
          ],
          [
            "battery",
            "4000mah",
            "fast-charge"
          ]
        ],
        "id": "PROD-001",
        "name": "Smartphone",
        "price": 599.99,
        "tag_groups": [
          [
            "premium",
            "flagship"
          ],
          [
            "5g",
            "wireless-charging"
          ],
          [
            "camera",
            "photography"
          ]
        ]
      },
      {
        "category_hierarchy": [
          "electronics",
          "computers",
          "laptops"
        ],
        "feature_matrix": [
          [
            "processor",
            "intel-i7",
            "8-cores"
          ],
          [
            "memory",
            "16gb",
            "ddr4"
          ],
          [
            "storage",
            "512gb",
            "ssd"
          ]
        ],
        "id": "PROD-002",
        "name": "Laptop",
        "price": 1299.99,
        "tag_groups": [
          [
            "professional",
            "business"
          ],
          [
            "performance",
            "gaming"
          ],
          [
            "portable",
            "lightweight"
          ]
        ]
      }
    ]
  },
  "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
{
  "all_categories": [
    "electronics",
    "mobile",
    "smartphones",
    "electronics",
    "computers",
    "laptops"
  ],
  "all_tags": [
    "premium",
    "flagship",
    "5g",
    "wireless-charging",
    "camera",
    "photography",
    "professional",
    "business",
    "performance",
    "gaming",
    "portable",
    "lightweight"
  ],
  "electronics_products": [
    {
      "category_hierarchy": [
        "electronics",
        "mobile",
        "smartphones"
      ],
      "feature_matrix": [
        [
          "display",
          "6.1inch",
          "oled"
        ],
        [
          "camera",
          "triple",
          "48mp"
        ],
        [
          "battery",
          "4000mah",
          "fast-charge"
        ]
      ],
      "id": "PROD-001",
      "name": "Smartphone",
      "price": 599.99,
      "tag_groups": [
        [
          "premium",
          "flagship"
        ],
        [
          "5g",
          "wireless-charging"
        ],
        [
          "camera",
          "photography"
        ]
      ]
    },
    {
      "category_hierarchy": [
        "electronics",
        "computers",
        "laptops"
      ],
      "feature_matrix": [
        [
          "processor",
          "intel-i7",
          "8-cores"
        ],
        [
          "memory",
          "16gb",
          "ddr4"
        ],
        [
          "storage",
          "512gb",
          "ssd"
        ]
      ],
      "id": "PROD-002",
      "name": "Laptop",
      "price": 1299.99,
      "tag_groups": [
        [
          "professional",
          "business"
        ],
        [
          "performance",
          "gaming"
        ],
        [
          "portable",
          "lightweight"
        ]
      ]
    }
  ],
  "premium_products": [
    {
      "category_hierarchy": [
        "electronics",
        "mobile",
        "smartphones"
      ],
      "feature_matrix": [
        [
          "display",
          "6.1inch",
          "oled"
        ],
        [
          "camera",
          "triple",
          "48mp"
        ],
        [
          "battery",
          "4000mah",
          "fast-charge"
        ]
      ],
      "id": "PROD-001",
      "name": "Smartphone",
      "price": 599.99,
      "tag_groups": [
        [
          "premium",
          "flagship"
        ],
        [
          "5g",
          "wireless-charging"
        ],
        [
          "camera",
          "photography"
        ]
      ]
    }
  ],
  "all_features": [
    "display",
    "6.1inch",
    "oled",
    "camera",
    "triple",
    "48mp",
    "battery",
    "4000mah",
    "fast-charge",
    "processor",
    "intel-i7",
    "8-cores",
    "memory",
    "16gb",
    "ddr4",
    "storage",
    "512gb",
    "ssd"
  ],
  "camera_features": [
    [
      [
        "camera",
        "triple",
        "48mp"
      ]
    ],
    []
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Advanced matrix filtering and operations

Step #5

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"matrix_operations","matrix":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],"products":[{"id":"PROD-001","name":"Smartphone","price":599.99,"category_hierarchy":["electronics","mobile","smartphones"],"tag_groups":[["premium","flagship"],["5g","wireless-charging"],["camera","photography"]],"feature_matrix":[["display","6.1inch","oled"],["camera","triple","48mp"],["battery","4000mah","fast-charge"]]},{"id":"PROD-002","name":"Laptop","price":1299.99,"category_hierarchy":["electronics","computers","laptops"],"tag_groups":[["professional","business"],["performance","gaming"],["portable","lightweight"]],"feature_matrix":[["processor","intel-i7","8-cores"],["memory","16gb","ddr4"],["storage","512gb","ssd"]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "matrix_operations",
  "matrix": [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ],
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "products": [
    {
      "id": "PROD-001",
      "name": "Smartphone",
      "price": 599.99,
      "category_hierarchy": [
        "electronics",
        "mobile",
        "smartphones"
      ],
      "tag_groups": [
        [
          "premium",
          "flagship"
        ],
        [
          "5g",
          "wireless-charging"
        ],
        [
          "camera",
          "photography"
        ]
      ],
      "feature_matrix": [
        [
          "display",
          "6.1inch",
          "oled"
        ],
        [
          "camera",
          "triple",
          "48mp"
        ],
        [
          "battery",
          "4000mah",
          "fast-charge"
        ]
      ]
    },
    {
      "id": "PROD-002",
      "name": "Laptop",
      "price": 1299.99,
      "category_hierarchy": [
        "electronics",
        "computers",
        "laptops"
      ],
      "tag_groups": [
        [
          "professional",
          "business"
        ],
        [
          "performance",
          "gaming"
        ],
        [
          "portable",
          "lightweight"
        ]
      ],
      "feature_matrix": [
        [
          "processor",
          "intel-i7",
          "8-cores"
        ],
        [
          "memory",
          "16gb",
          "ddr4"
        ],
        [
          "storage",
          "512gb",
          "ssd"
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 1875 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: 3138
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"matrix_operations\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "715",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "matrix": [
      [
        1,
        2,
        3
      ],
      [
        4,
        5,
        6
      ],
      [
        7,
        8,
        9
      ],
      [
        10,
        11,
        12
      ]
    ],
    "operation": "matrix_operations",
    "products": [
      {
        "category_hierarchy": [
          "electronics",
          "mobile",
          "smartphones"
        ],
        "feature_matrix": [
          [
            "display",
            "6.1inch",
            "oled"
          ],
          [
            "camera",
            "triple",
            "48mp"
          ],
          [
            "battery",
            "4000mah",
            "fast-charge"
          ]
        ],
        "id": "PROD-001",
        "name": "Smartphone",
        "price": 599.99,
        "tag_groups": [
          [
            "premium",
            "flagship"
          ],
          [
            "5g",
            "wireless-charging"
          ],
          [
            "camera",
            "photography"
          ]
        ]
      },
      {
        "category_hierarchy": [
          "electronics",
          "computers",
          "laptops"
        ],
        "feature_matrix": [
          [
            "processor",
            "intel-i7",
            "8-cores"
          ],
          [
            "memory",
            "16gb",
            "ddr4"
          ],
          [
            "storage",
            "512gb",
            "ssd"
          ]
        ],
        "id": "PROD-002",
        "name": "Laptop",
        "price": 1299.99,
        "tag_groups": [
          [
            "professional",
            "business"
          ],
          [
            "performance",
            "gaming"
          ],
          [
            "portable",
            "lightweight"
          ]
        ]
      }
    ]
  },
  "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
{
  "first_column": [
    1,
    4,
    7,
    10
  ],
  "last_elements": [
    3,
    6,
    9,
    12
  ],
  "high_sum_rows": [
    [
      4,
      5,
      6
    ],
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "processor_specs": [
    [],
    [
      [
        "processor",
        "intel-i7",
        "8-cores"
      ]
    ]
  ],
  "memory_specs": [
    [],
    [
      [
        "memory",
        "16gb",
        "ddr4"
      ]
    ]
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Time series data filtering

Step #6

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"time_series_filtering","series":[{"name":"CPU Usage","data_points":[[1640995200,45.2],[1640995260,52.1],[1640995320,48.7],[1640995380,61.3]]},{"name":"Memory Usage","data_points":[[1640995200,68.5],[1640995260,71.2],[1640995320,69.8],[1640995380,74.1]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "time_series_filtering",
  "series": [
    {
      "name": "CPU Usage",
      "data_points": [
        [
          1640995200,
          45.2
        ],
        [
          1640995260,
          52.1
        ],
        [
          1640995320,
          48.7
        ],
        [
          1640995380,
          61.3
        ]
      ]
    },
    {
      "name": "Memory Usage",
      "data_points": [
        [
          1640995200,
          68.5
        ],
        [
          1640995260,
          71.2
        ],
        [
          1640995320,
          69.8
        ],
        [
          1640995380,
          74.1
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 889 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: 1489
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"time_series_filtering\",\"series\":[{\"name\":\"CPU Usage\",\"data_points\":[[1640995200,45.2],[1640995260,52.1],[1640995320,48.7],[1640995380,61.3]]},{\"name\":\"Memory Usage\",\"data_points\":[[1640995200,68.5],[1640995260,71.2],[1640995320,69.8],[1640995380,74.1]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "269",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "time_series_filtering",
    "series": [
      {
        "data_points": [
          [
            1640995200,
            45.2
          ],
          [
            1640995260,
            52.1
          ],
          [
            1640995320,
            48.7
          ],
          [
            1640995380,
            61.3
          ]
        ],
        "name": "CPU Usage"
      },
      {
        "data_points": [
          [
            1640995200,
            68.5
          ],
          [
            1640995260,
            71.2
          ],
          [
            1640995320,
            69.8
          ],
          [
            1640995380,
            74.1
          ]
        ],
        "name": "Memory Usage"
      }
    ]
  },
  "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
{
  "all_timestamps": [
    [
      1640995200,
      1640995260,
      1640995320,
      1640995380
    ],
    [
      1640995200,
      1640995260,
      1640995320,
      1640995380
    ]
  ],
  "all_values": [
    [
      45.2,
      52.1,
      48.7,
      61.3
    ],
    [
      68.5,
      71.2,
      69.8,
      74.1
    ]
  ],
  "cpu_data": [
    [
      1640995200,
      45.2
    ],
    [
      1640995260,
      52.1
    ],
    [
      1640995320,
      48.7
    ],
    [
      1640995380,
      61.3
    ]
  ],
  "high_values": [
    [
      [
        1640995380,
        61.3
      ]
    ],
    [
      [
        1640995200,
        68.5
      ],
      [
        1640995260,
        71.2
      ],
      [
        1640995320,
        69.8
      ],
      [
        1640995380,
        74.1
      ]
    ]
  ],
  "recent_data": [
    [
      [
        1640995320,
        48.7
      ],
      [
        1640995380,
        61.3
      ]
    ],
    [
      [
        1640995320,
        69.8
      ],
      [
        1640995380,
        74.1
      ]
    ]
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Multi-level filtering combinations

Step #7

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"multi_level_filtering","users":[{"id":1,"name":"Alice Admin","department":"IT","permission_groups":[["user:read","user:write","user:delete"],["system:admin","system:config"],["reports:view","reports:create"]],"skill_categories":[["programming","javascript","python"],["devops","docker","kubernetes"]]},{"id":2,"name":"Bob Manager","department":"Sales","permission_groups":[["user:read","user:write"],["sales:view","sales:edit"],["reports:view"]],"skill_categories":[["management","team-lead","strategy"],["sales","crm","negotiation"]]},{"id":3,"name":"Carol Developer","department":"Engineering","permission_groups":[["user:read"],["code:read","code:write"],["deploy:staging"]],"skill_categories":[["programming","java","spring"],["database","sql","mongodb"]]}],"products":[{"id":"PROD-001","name":"Smartphone","price":599.99,"category_hierarchy":["electronics","mobile","smartphones"],"tag_groups":[["premium","flagship"],["5g","wireless-charging"],["camera","photography"]],"feature_matrix":[["display","6.1inch","oled"],["camera","triple","48mp"],["battery","4000mah","fast-charge"]]},{"id":"PROD-002","name":"Laptop","price":1299.99,"category_hierarchy":["electronics","computers","laptops"],"tag_groups":[["professional","business"],["performance","gaming"],["portable","lightweight"]],"feature_matrix":[["processor","intel-i7","8-cores"],["memory","16gb","ddr4"],["storage","512gb","ssd"]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "multi_level_filtering",
  "users": [
    {
      "id": 1,
      "name": "Alice Admin",
      "department": "IT",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    },
    {
      "id": 2,
      "name": "Bob Manager",
      "department": "Sales",
      "permission_groups": [
        [
          "user:read",
          "user:write"
        ],
        [
          "sales:view",
          "sales:edit"
        ],
        [
          "reports:view"
        ]
      ],
      "skill_categories": [
        [
          "management",
          "team-lead",
          "strategy"
        ],
        [
          "sales",
          "crm",
          "negotiation"
        ]
      ]
    },
    {
      "id": 3,
      "name": "Carol Developer",
      "department": "Engineering",
      "permission_groups": [
        [
          "user:read"
        ],
        [
          "code:read",
          "code:write"
        ],
        [
          "deploy:staging"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "java",
          "spring"
        ],
        [
          "database",
          "sql",
          "mongodb"
        ]
      ]
    }
  ],
  "products": [
    {
      "id": "PROD-001",
      "name": "Smartphone",
      "price": 599.99,
      "category_hierarchy": [
        "electronics",
        "mobile",
        "smartphones"
      ],
      "tag_groups": [
        [
          "premium",
          "flagship"
        ],
        [
          "5g",
          "wireless-charging"
        ],
        [
          "camera",
          "photography"
        ]
      ],
      "feature_matrix": [
        [
          "display",
          "6.1inch",
          "oled"
        ],
        [
          "camera",
          "triple",
          "48mp"
        ],
        [
          "battery",
          "4000mah",
          "fast-charge"
        ]
      ]
    },
    {
      "id": "PROD-002",
      "name": "Laptop",
      "price": 1299.99,
      "category_hierarchy": [
        "electronics",
        "computers",
        "laptops"
      ],
      "tag_groups": [
        [
          "professional",
          "business"
        ],
        [
          "performance",
          "gaming"
        ],
        [
          "portable",
          "lightweight"
        ]
      ],
      "feature_matrix": [
        [
          "processor",
          "intel-i7",
          "8-cores"
        ],
        [
          "memory",
          "16gb",
          "ddr4"
        ],
        [
          "storage",
          "512gb",
          "ssd"
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 3380 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: 5528
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"multi_level_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "1412",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "operation": "multi_level_filtering",
    "products": [
      {
        "category_hierarchy": [
          "electronics",
          "mobile",
          "smartphones"
        ],
        "feature_matrix": [
          [
            "display",
            "6.1inch",
            "oled"
          ],
          [
            "camera",
            "triple",
            "48mp"
          ],
          [
            "battery",
            "4000mah",
            "fast-charge"
          ]
        ],
        "id": "PROD-001",
        "name": "Smartphone",
        "price": 599.99,
        "tag_groups": [
          [
            "premium",
            "flagship"
          ],
          [
            "5g",
            "wireless-charging"
          ],
          [
            "camera",
            "photography"
          ]
        ]
      },
      {
        "category_hierarchy": [
          "electronics",
          "computers",
          "laptops"
        ],
        "feature_matrix": [
          [
            "processor",
            "intel-i7",
            "8-cores"
          ],
          [
            "memory",
            "16gb",
            "ddr4"
          ],
          [
            "storage",
            "512gb",
            "ssd"
          ]
        ],
        "id": "PROD-002",
        "name": "Laptop",
        "price": 1299.99,
        "tag_groups": [
          [
            "professional",
            "business"
          ],
          [
            "performance",
            "gaming"
          ],
          [
            "portable",
            "lightweight"
          ]
        ]
      }
    ],
    "users": [
      {
        "department": "IT",
        "id": 1,
        "name": "Alice Admin",
        "permission_groups": [
          [
            "user:read",
            "user:write",
            "user:delete"
          ],
          [
            "system:admin",
            "system:config"
          ],
          [
            "reports:view",
            "reports:create"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "javascript",
            "python"
          ],
          [
            "devops",
            "docker",
            "kubernetes"
          ]
        ]
      },
      {
        "department": "Sales",
        "id": 2,
        "name": "Bob Manager",
        "permission_groups": [
          [
            "user:read",
            "user:write"
          ],
          [
            "sales:view",
            "sales:edit"
          ],
          [
            "reports:view"
          ]
        ],
        "skill_categories": [
          [
            "management",
            "team-lead",
            "strategy"
          ],
          [
            "sales",
            "crm",
            "negotiation"
          ]
        ]
      },
      {
        "department": "Engineering",
        "id": 3,
        "name": "Carol Developer",
        "permission_groups": [
          [
            "user:read"
          ],
          [
            "code:read",
            "code:write"
          ],
          [
            "deploy:staging"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "java",
            "spring"
          ],
          [
            "database",
            "sql",
            "mongodb"
          ]
        ]
      }
    ]
  },
  "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
{
  "eng_programming_skills": [],
  "it_admin_permissions": [],
  "electronics_camera": [],
  "premium_electronics_tags": []
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Conditional nested array filtering

Step #8

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"conditional_nested_filtering","matrix":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],"users":[{"id":1,"name":"Alice Admin","department":"IT","permission_groups":[["user:read","user:write","user:delete"],["system:admin","system:config"],["reports:view","reports:create"]],"skill_categories":[["programming","javascript","python"],["devops","docker","kubernetes"]]},{"id":2,"name":"Bob Manager","department":"Sales","permission_groups":[["user:read","user:write"],["sales:view","sales:edit"],["reports:view"]],"skill_categories":[["management","team-lead","strategy"],["sales","crm","negotiation"]]},{"id":3,"name":"Carol Developer","department":"Engineering","permission_groups":[["user:read"],["code:read","code:write"],["deploy:staging"]],"skill_categories":[["programming","java","spring"],["database","sql","mongodb"]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "conditional_nested_filtering",
  "matrix": [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ],
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "users": [
    {
      "id": 1,
      "name": "Alice Admin",
      "department": "IT",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    },
    {
      "id": 2,
      "name": "Bob Manager",
      "department": "Sales",
      "permission_groups": [
        [
          "user:read",
          "user:write"
        ],
        [
          "sales:view",
          "sales:edit"
        ],
        [
          "reports:view"
        ]
      ],
      "skill_categories": [
        [
          "management",
          "team-lead",
          "strategy"
        ],
        [
          "sales",
          "crm",
          "negotiation"
        ]
      ]
    },
    {
      "id": 3,
      "name": "Carol Developer",
      "department": "Engineering",
      "permission_groups": [
        [
          "user:read"
        ],
        [
          "code:read",
          "code:write"
        ],
        [
          "deploy:staging"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "java",
          "spring"
        ],
        [
          "database",
          "sql",
          "mongodb"
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 2109 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: 3469
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"conditional_nested_filtering\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "829",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "matrix": [
      [
        1,
        2,
        3
      ],
      [
        4,
        5,
        6
      ],
      [
        7,
        8,
        9
      ],
      [
        10,
        11,
        12
      ]
    ],
    "operation": "conditional_nested_filtering",
    "users": [
      {
        "department": "IT",
        "id": 1,
        "name": "Alice Admin",
        "permission_groups": [
          [
            "user:read",
            "user:write",
            "user:delete"
          ],
          [
            "system:admin",
            "system:config"
          ],
          [
            "reports:view",
            "reports:create"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "javascript",
            "python"
          ],
          [
            "devops",
            "docker",
            "kubernetes"
          ]
        ]
      },
      {
        "department": "Sales",
        "id": 2,
        "name": "Bob Manager",
        "permission_groups": [
          [
            "user:read",
            "user:write"
          ],
          [
            "sales:view",
            "sales:edit"
          ],
          [
            "reports:view"
          ]
        ],
        "skill_categories": [
          [
            "management",
            "team-lead",
            "strategy"
          ],
          [
            "sales",
            "crm",
            "negotiation"
          ]
        ]
      },
      {
        "department": "Engineering",
        "id": 3,
        "name": "Carol Developer",
        "permission_groups": [
          [
            "user:read"
          ],
          [
            "code:read",
            "code:write"
          ],
          [
            "deploy:staging"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "java",
            "spring"
          ],
          [
            "database",
            "sql",
            "mongodb"
          ]
        ]
      }
    ]
  },
  "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
{
  "all_gt5_rows": [
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "read_write_users": [
    {
      "department": "IT",
      "id": 1,
      "name": "Alice Admin",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    },
    {
      "department": "Sales",
      "id": 2,
      "name": "Bob Manager",
      "permission_groups": [
        [
          "user:read",
          "user:write"
        ],
        [
          "sales:view",
          "sales:edit"
        ],
        [
          "reports:view"
        ]
      ],
      "skill_categories": [
        [
          "management",
          "team-lead",
          "strategy"
        ],
        [
          "sales",
          "crm",
          "negotiation"
        ]
      ]
    }
  ],
  "fullstack_users": [
    {
      "department": "IT",
      "id": 1,
      "name": "Alice Admin",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    }
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Array transformation with nested structures

Step #9

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"array_transformation","coordinates":[[10,20],[30,40],[50,60],[70,80],[90,100]],"users":[{"id":1,"name":"Alice Admin","department":"IT","permission_groups":[["user:read","user:write","user:delete"],["system:admin","system:config"],["reports:view","reports:create"]],"skill_categories":[["programming","javascript","python"],["devops","docker","kubernetes"]]},{"id":2,"name":"Bob Manager","department":"Sales","permission_groups":[["user:read","user:write"],["sales:view","sales:edit"],["reports:view"]],"skill_categories":[["management","team-lead","strategy"],["sales","crm","negotiation"]]},{"id":3,"name":"Carol Developer","department":"Engineering","permission_groups":[["user:read"],["code:read","code:write"],["deploy:staging"]],"skill_categories":[["programming","java","spring"],["database","sql","mongodb"]]}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "array_transformation",
  "coordinates": [
    [
      10,
      20
    ],
    [
      30,
      40
    ],
    [
      50,
      60
    ],
    [
      70,
      80
    ],
    [
      90,
      100
    ]
  ],
  "users": [
    {
      "id": 1,
      "name": "Alice Admin",
      "department": "IT",
      "permission_groups": [
        [
          "user:read",
          "user:write",
          "user:delete"
        ],
        [
          "system:admin",
          "system:config"
        ],
        [
          "reports:view",
          "reports:create"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "javascript",
          "python"
        ],
        [
          "devops",
          "docker",
          "kubernetes"
        ]
      ]
    },
    {
      "id": 2,
      "name": "Bob Manager",
      "department": "Sales",
      "permission_groups": [
        [
          "user:read",
          "user:write"
        ],
        [
          "sales:view",
          "sales:edit"
        ],
        [
          "reports:view"
        ]
      ],
      "skill_categories": [
        [
          "management",
          "team-lead",
          "strategy"
        ],
        [
          "sales",
          "crm",
          "negotiation"
        ]
      ]
    },
    {
      "id": 3,
      "name": "Carol Developer",
      "department": "Engineering",
      "permission_groups": [
        [
          "user:read"
        ],
        [
          "code:read",
          "code:write"
        ],
        [
          "deploy:staging"
        ]
      ],
      "skill_categories": [
        [
          "programming",
          "java",
          "spring"
        ],
        [
          "database",
          "sql",
          "mongodb"
        ]
      ]
    }
  ]
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 2115 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: 3469
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"array_transformation\",\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "832",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "coordinates": [
      [
        10,
        20
      ],
      [
        30,
        40
      ],
      [
        50,
        60
      ],
      [
        70,
        80
      ],
      [
        90,
        100
      ]
    ],
    "operation": "array_transformation",
    "users": [
      {
        "department": "IT",
        "id": 1,
        "name": "Alice Admin",
        "permission_groups": [
          [
            "user:read",
            "user:write",
            "user:delete"
          ],
          [
            "system:admin",
            "system:config"
          ],
          [
            "reports:view",
            "reports:create"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "javascript",
            "python"
          ],
          [
            "devops",
            "docker",
            "kubernetes"
          ]
        ]
      },
      {
        "department": "Sales",
        "id": 2,
        "name": "Bob Manager",
        "permission_groups": [
          [
            "user:read",
            "user:write"
          ],
          [
            "sales:view",
            "sales:edit"
          ],
          [
            "reports:view"
          ]
        ],
        "skill_categories": [
          [
            "management",
            "team-lead",
            "strategy"
          ],
          [
            "sales",
            "crm",
            "negotiation"
          ]
        ]
      },
      {
        "department": "Engineering",
        "id": 3,
        "name": "Carol Developer",
        "permission_groups": [
          [
            "user:read"
          ],
          [
            "code:read",
            "code:write"
          ],
          [
            "deploy:staging"
          ]
        ],
        "skill_categories": [
          [
            "programming",
            "java",
            "spring"
          ],
          [
            "database",
            "sql",
            "mongodb"
          ]
        ]
      }
    ]
  },
  "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
{
  "coordinate_objects": [
    {
      "x": 10,
      "y": 20
    },
    {
      "x": 30,
      "y": 40
    },
    {
      "x": 50,
      "y": 60
    },
    {
      "x": 70,
      "y": 80
    },
    {
      "x": 90,
      "y": 100
    }
  ],
  "user_permission_summary": [
    {
      "name": "Alice Admin",
      "total_permissions": 7,
      "admin_access": true
    },
    {
      "name": "Bob Manager",
      "total_permissions": 5,
      "admin_access": false
    },
    {
      "name": "Carol Developer",
      "total_permissions": 4,
      "admin_access": false
    }
  ],
  "user_skill_counts": [
    {
      "name": "Alice Admin",
      "skill_count": 6
    },
    {
      "name": "Bob Manager",
      "skill_count": 6
    },
    {
      "name": "Carol Developer",
      "skill_count": 6
    }
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Performance testing with nested arrays

Step #10

1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"performance_nested_arrays","large_matrix":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],"test_metadata":{"total_arrays":4,"total_elements":12,"flatten_operations":8}}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "operation": "performance_nested_arrays",
  "large_matrix": [
    [
      1,
      2,
      3
    ],
    [
      4,
      5,
      6
    ],
    [
      7,
      8,
      9
    ],
    [
      10,
      11,
      12
    ]
  ],
  "test_metadata": {
    "total_arrays": 4,
    "total_elements": 12,
    "flatten_operations": 8
  }
}

📥 Response

Status Code: 200
Duration: 1ms
Size: 689 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: 1015
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"performance_nested_arrays\",\"large_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"test_metadata\":{\"total_arrays\":4,\"total_elements\":12,\"flatten_operations\":8}}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "171",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "large_matrix": [
      [
        1,
        2,
        3
      ],
      [
        4,
        5,
        6
      ],
      [
        7,
        8,
        9
      ],
      [
        10,
        11,
        12
      ]
    ],
    "operation": "performance_nested_arrays",
    "test_metadata": {
      "flatten_operations": 8,
      "total_arrays": 4,
      "total_elements": 12
    }
  },
  "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
{
  "flatten_performance": 12,
  "processing_summary": {
    "flatten_operations": 8,
    "total_arrays": 4,
    "total_elements": 12
  }
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

Nested array filtering summary

Step #11

1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"test_summary":"nested_array_filtering_examples","techniques_demonstrated":["basic_flatten_projections","subarray_conditional_filtering","multi_level_object_array_filtering","product_catalog_nested_filtering","matrix_operations","time_series_filtering","multi_level_combinations","conditional_nested_filtering","array_transformations","performance_testing"],"jmespath_features_used":["flatten_projection_[]","double_flatten_[][]","conditional_filtering_with_nested","array_element_access_[0]_[1]","contains_with_flattened_arrays"],"total_examples":10}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "test_summary": "nested_array_filtering_examples",
  "techniques_demonstrated": [
    "basic_flatten_projections",
    "subarray_conditional_filtering",
    "multi_level_object_array_filtering",
    "product_catalog_nested_filtering",
    "matrix_operations",
    "time_series_filtering",
    "multi_level_combinations",
    "conditional_nested_filtering",
    "array_transformations",
    "performance_testing"
  ],
  "jmespath_features_used": [
    "flatten_projection_[]",
    "double_flatten_[][]",
    "conditional_filtering_with_nested",
    "array_element_access_[0]_[1]",
    "contains_with_flattened_arrays"
  ],
  "total_examples": 10
}

📥 Response

Status Code: 200
Duration: 1ms
Size: 1477 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: 1727
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"test_summary\":\"nested_array_filtering_examples\",\"techniques_demonstrated\":[\"basic_flatten_projections\",\"subarray_conditional_filtering\",\"multi_level_object_array_filtering\",\"product_catalog_nested_filtering\",\"matrix_operations\",\"time_series_filtering\",\"multi_level_combinations\",\"conditional_nested_filtering\",\"array_transformations\",\"performance_testing\"],\"jmespath_features_used\":[\"flatten_projection_[]\",\"double_flatten_[][]\",\"conditional_filtering_with_nested\",\"array_element_access_[0]_[1]\",\"contains_with_flattened_arrays\"],\"total_examples\":10}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "552",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "jmespath_features_used": [
      "flatten_projection_[]",
      "double_flatten_[][]",
      "conditional_filtering_with_nested",
      "array_element_access_[0]_[1]",
      "contains_with_flattened_arrays"
    ],
    "techniques_demonstrated": [
      "basic_flatten_projections",
      "subarray_conditional_filtering",
      "multi_level_object_array_filtering",
      "product_catalog_nested_filtering",
      "matrix_operations",
      "time_series_filtering",
      "multi_level_combinations",
      "conditional_nested_filtering",
      "array_transformations",
      "performance_testing"
    ],
    "test_summary": "nested_array_filtering_examples",
    "total_examples": 10
  },
  "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
{
  "nested_filtering_results": {
    "jmespath_features_used": [
      "flatten_projection_[]",
      "double_flatten_[][]",
      "conditional_filtering_with_nested",
      "array_element_access_[0]_[1]",
      "contains_with_flattened_arrays"
    ],
    "techniques_demonstrated": [
      "basic_flatten_projections",
      "subarray_conditional_filtering",
      "multi_level_object_array_filtering",
      "product_catalog_nested_filtering",
      "matrix_operations",
      "time_series_filtering",
      "multi_level_combinations",
      "conditional_nested_filtering",
      "array_transformations",
      "performance_testing"
    ],
    "test_summary": "nested_array_filtering_examples",
    "total_examples": 10
  },
  "flatten_examples": [
    "basic_flatten_projections",
    "subarray_conditional_filtering",
    "multi_level_object_array_filtering",
    "product_catalog_nested_filtering",
    "matrix_operations",
    "time_series_filtering",
    "multi_level_combinations",
    "conditional_nested_filtering",
    "array_transformations",
    "performance_testing"
  ]
}
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'}}"
  },
  "data-formatting-examples.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"
    ]
  },
  "data-formatting-examples.transformation_results": [
    "essential_field_extraction",
    "summary_reports",
    "catalog_views",
    "hierarchical_transformation",
    "csv_formatting",
    "api_response_formatting",
    "conditional_formatting"
  ],
  "dynamic-test-generation.generated_users": null,
  "dynamic-test-generation.dynamic_endpoints_tested": null,
  "dynamic-test-generation.test_summary": null,
  "parallel-execution.parallel_execution_effective": true,
  "parallel-execution.req1_duration": null,
  "parallel-execution.req2_duration": null,
  "parallel-execution.req3_duration": null,
  "array-filtering-examples.filtering_results": {
    "filter_types_demonstrated": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ],
    "test_summary": "array_filtering_examples",
    "total_examples": 10
  },
  "array-filtering-examples.query_examples": [
    "status_filtering",
    "numeric_range_filtering",
    "string_pattern_filtering",
    "array_content_filtering",
    "multi_condition_filtering",
    "tag_based_filtering",
    "simple_array_filtering",
    "transformation_filtering",
    "advanced_scenarios"
  ]
}

📄 Raw Suite Data

Complete Suite Data
{
  "node_id": "nested-array-filtering",
  "suite_name": "Nested Array Filtering and Flatten Projections",
  "file_path": "/app/tests/nested-array-filtering-examples.yaml",
  "priority": "medium",
  "start_time": "2025-10-19T10:28:39.359Z",
  "end_time": "2025-10-19T10:28:39.385Z",
  "duration_ms": 26,
  "status": "success",
  "steps_executed": 11,
  "steps_successful": 11,
  "steps_failed": 0,
  "success_rate": 100,
  "steps_results": [
    {
      "step_id": "step-1-basic-flatten-operations",
      "qualified_step_id": "nested-array-filtering::step-1-basic-flatten-operations",
      "step_name": "Basic flatten operations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "basic_flatten",
          "number_matrix": [
            [
              1,
              2,
              3
            ],
            [
              4,
              5,
              6
            ],
            [
              7,
              8,
              9
            ],
            [
              10,
              11,
              12
            ]
          ],
          "coordinates": [
            [
              10,
              20
            ],
            [
              30,
              40
            ],
            [
              50,
              60
            ],
            [
              70,
              80
            ],
            [
              90,
              100
            ]
          ],
          "categories": [
            [
              "electronics",
              "phones",
              "tablets"
            ],
            [
              "clothing",
              "shirts",
              "pants",
              "shoes"
            ],
            [
              "books",
              "fiction",
              "non-fiction"
            ],
            [
              "sports",
              "football",
              "basketball"
            ]
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"basic_flatten\",\"number_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"categories\":[[\"electronics\",\"phones\",\"tablets\"],[\"clothing\",\"shirts\",\"pants\",\"shoes\"],[\"books\",\"fiction\",\"non-fiction\"],[\"sports\",\"football\",\"basketball\"]]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 296\r\n\r\n{\"operation\":\"basic_flatten\",\"number_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"categories\":[[\"electronics\",\"phones\",\"tablets\"],[\"clothing\",\"shirts\",\"pants\",\"shoes\"],[\"books\",\"fiction\",\"non-fiction\"],[\"sports\",\"football\",\"basketball\"]]}",
        "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": "1627",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"basic_flatten\",\"number_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"categories\":[[\"electronics\",\"phones\",\"tablets\"],[\"clothing\",\"shirts\",\"pants\",\"shoes\"],[\"books\",\"fiction\",\"non-fiction\"],[\"sports\",\"football\",\"basketball\"]]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "296",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "categories": [
              [
                "electronics",
                "phones",
                "tablets"
              ],
              [
                "clothing",
                "shirts",
                "pants",
                "shoes"
              ],
              [
                "books",
                "fiction",
                "non-fiction"
              ],
              [
                "sports",
                "football",
                "basketball"
              ]
            ],
            "coordinates": [
              [
                10,
                20
              ],
              [
                30,
                40
              ],
              [
                50,
                60
              ],
              [
                70,
                80
              ],
              [
                90,
                100
              ]
            ],
            "number_matrix": [
              [
                1,
                2,
                3
              ],
              [
                4,
                5,
                6
              ],
              [
                7,
                8,
                9
              ],
              [
                10,
                11,
                12
              ]
            ],
            "operation": "basic_flatten"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 961,
        "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: 1627\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"basic_flatten\\\",\\\"number_matrix\\\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\\\"coordinates\\\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\\\"categories\\\":[[\\\"electronics\\\",\\\"phones\\\",\\\"tablets\\\"],[\\\"clothing\\\",\\\"shirts\\\",\\\"pants\\\",\\\"shoes\\\"],[\\\"books\\\",\\\"fiction\\\",\\\"non-fiction\\\"],[\\\"sports\\\",\\\"football\\\",\\\"basketball\\\"]]}\",\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\": \"296\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"categories\": [\n      [\n        \"electronics\",\n        \"phones\",\n        \"tablets\"\n      ],\n      [\n        \"clothing\",\n        \"shirts\",\n        \"pants\",\n        \"shoes\"\n      ],\n      [\n        \"books\",\n        \"fiction\",\n        \"non-fiction\"\n      ],\n      [\n        \"sports\",\n        \"football\",\n        \"basketball\"\n      ]\n    ],\n    \"coordinates\": [\n      [\n        10,\n        20\n      ],\n      [\n        30,\n        40\n      ],\n      [\n        50,\n        60\n      ],\n      [\n        70,\n        80\n      ],\n      [\n        90,\n        100\n      ]\n    ],\n    \"number_matrix\": [\n      [\n        1,\n        2,\n        3\n      ],\n      [\n        4,\n        5,\n        6\n      ],\n      [\n        7,\n        8,\n        9\n      ],\n      [\n        10,\n        11,\n        12\n      ]\n    ],\n    \"operation\": \"basic_flatten\"\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": {
        "flattened_numbers": [
          1,
          2,
          3,
          4,
          5,
          6,
          7,
          8,
          9,
          10,
          11,
          12
        ],
        "all_coordinates": [
          10,
          20,
          30,
          40,
          50,
          60,
          70,
          80,
          90,
          100
        ],
        "all_categories": [
          "electronics",
          "phones",
          "tablets",
          "clothing",
          "shirts",
          "pants",
          "shoes",
          "books",
          "fiction",
          "non-fiction",
          "sports",
          "football",
          "basketball"
        ],
        "total_numbers": 12
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-2-filter-sub-arrays-by-conditions",
      "qualified_step_id": "nested-array-filtering::step-2-filter-sub-arrays-by-conditions",
      "step_name": "Filter sub-arrays by conditions",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "filter_subarrays",
          "matrix": [
            [
              1,
              2,
              3
            ],
            [
              4,
              5,
              6
            ],
            [
              7,
              8,
              9
            ],
            [
              10,
              11,
              12
            ]
          ],
          "coordinates": [
            [
              10,
              20
            ],
            [
              30,
              40
            ],
            [
              50,
              60
            ],
            [
              70,
              80
            ],
            [
              90,
              100
            ]
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_subarrays\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 135\r\n\r\n{\"operation\":\"filter_subarrays\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]]}",
        "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": "1080",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"filter_subarrays\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "135",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "coordinates": [
              [
                10,
                20
              ],
              [
                30,
                40
              ],
              [
                50,
                60
              ],
              [
                70,
                80
              ],
              [
                90,
                100
              ]
            ],
            "matrix": [
              [
                1,
                2,
                3
              ],
              [
                4,
                5,
                6
              ],
              [
                7,
                8,
                9
              ],
              [
                10,
                11,
                12
              ]
            ],
            "operation": "filter_subarrays"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 611,
        "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: 1080\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"filter_subarrays\\\",\\\"matrix\\\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\\\"coordinates\\\":[[10,20],[30,40],[50,60],[70,80],[90,100]]}\",\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\": \"135\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"coordinates\": [\n      [\n        10,\n        20\n      ],\n      [\n        30,\n        40\n      ],\n      [\n        50,\n        60\n      ],\n      [\n        70,\n        80\n      ],\n      [\n        90,\n        100\n      ]\n    ],\n    \"matrix\": [\n      [\n        1,\n        2,\n        3\n      ],\n      [\n        4,\n        5,\n        6\n      ],\n      [\n        7,\n        8,\n        9\n      ],\n      [\n        10,\n        11,\n        12\n      ]\n    ],\n    \"operation\": \"filter_subarrays\"\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": {
        "rows_starting_gt5": [
          [
            7,
            8,
            9
          ],
          [
            10,
            11,
            12
          ]
        ],
        "high_x_coordinates": [
          [
            70,
            80
          ],
          [
            90,
            100
          ]
        ],
        "even_y_coordinates": [
          [
            10,
            20
          ],
          [
            30,
            40
          ],
          [
            50,
            60
          ],
          [
            70,
            80
          ],
          [
            90,
            100
          ]
        ],
        "second_elements": [
          2,
          5,
          8,
          11
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-3-filter-nested-arrays-in-objects",
      "qualified_step_id": "nested-array-filtering::step-3-filter-nested-arrays-in-objects",
      "step_name": "Filter nested arrays in objects",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "filter_nested_objects",
          "users": [
            {
              "id": 1,
              "name": "Alice Admin",
              "department": "IT",
              "permission_groups": [
                [
                  "user:read",
                  "user:write",
                  "user:delete"
                ],
                [
                  "system:admin",
                  "system:config"
                ],
                [
                  "reports:view",
                  "reports:create"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "javascript",
                  "python"
                ],
                [
                  "devops",
                  "docker",
                  "kubernetes"
                ]
              ]
            },
            {
              "id": 2,
              "name": "Bob Manager",
              "department": "Sales",
              "permission_groups": [
                [
                  "user:read",
                  "user:write"
                ],
                [
                  "sales:view",
                  "sales:edit"
                ],
                [
                  "reports:view"
                ]
              ],
              "skill_categories": [
                [
                  "management",
                  "team-lead",
                  "strategy"
                ],
                [
                  "sales",
                  "crm",
                  "negotiation"
                ]
              ]
            },
            {
              "id": 3,
              "name": "Carol Developer",
              "department": "Engineering",
              "permission_groups": [
                [
                  "user:read"
                ],
                [
                  "code:read",
                  "code:write"
                ],
                [
                  "deploy:staging"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "java",
                  "spring"
                ],
                [
                  "database",
                  "sql",
                  "mongodb"
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_nested_objects\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 776\r\n\r\n{\"operation\":\"filter_nested_objects\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
        "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": "3174",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"filter_nested_objects\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "776",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "filter_nested_objects",
            "users": [
              {
                "department": "IT",
                "id": 1,
                "name": "Alice Admin",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write",
                    "user:delete"
                  ],
                  [
                    "system:admin",
                    "system:config"
                  ],
                  [
                    "reports:view",
                    "reports:create"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "javascript",
                    "python"
                  ],
                  [
                    "devops",
                    "docker",
                    "kubernetes"
                  ]
                ]
              },
              {
                "department": "Sales",
                "id": 2,
                "name": "Bob Manager",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write"
                  ],
                  [
                    "sales:view",
                    "sales:edit"
                  ],
                  [
                    "reports:view"
                  ]
                ],
                "skill_categories": [
                  [
                    "management",
                    "team-lead",
                    "strategy"
                  ],
                  [
                    "sales",
                    "crm",
                    "negotiation"
                  ]
                ]
              },
              {
                "department": "Engineering",
                "id": 3,
                "name": "Carol Developer",
                "permission_groups": [
                  [
                    "user:read"
                  ],
                  [
                    "code:read",
                    "code:write"
                  ],
                  [
                    "deploy:staging"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "java",
                    "spring"
                  ],
                  [
                    "database",
                    "sql",
                    "mongodb"
                  ]
                ]
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 2001,
        "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: 3174\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"filter_nested_objects\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Admin\\\",\\\"department\\\":\\\"IT\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\",\\\"user:delete\\\"],[\\\"system:admin\\\",\\\"system:config\\\"],[\\\"reports:view\\\",\\\"reports:create\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"javascript\\\",\\\"python\\\"],[\\\"devops\\\",\\\"docker\\\",\\\"kubernetes\\\"]]},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Manager\\\",\\\"department\\\":\\\"Sales\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\"],[\\\"sales:view\\\",\\\"sales:edit\\\"],[\\\"reports:view\\\"]],\\\"skill_categories\\\":[[\\\"management\\\",\\\"team-lead\\\",\\\"strategy\\\"],[\\\"sales\\\",\\\"crm\\\",\\\"negotiation\\\"]]},{\\\"id\\\":3,\\\"name\\\":\\\"Carol Developer\\\",\\\"department\\\":\\\"Engineering\\\",\\\"permission_groups\\\":[[\\\"user:read\\\"],[\\\"code:read\\\",\\\"code:write\\\"],[\\\"deploy:staging\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"java\\\",\\\"spring\\\"],[\\\"database\\\",\\\"sql\\\",\\\"mongodb\\\"]]}]}\",\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\": \"776\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"filter_nested_objects\",\n    \"users\": [\n      {\n        \"department\": \"IT\",\n        \"id\": 1,\n        \"name\": \"Alice Admin\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\",\n            \"user:delete\"\n          ],\n          [\n            \"system:admin\",\n            \"system:config\"\n          ],\n          [\n            \"reports:view\",\n            \"reports:create\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"javascript\",\n            \"python\"\n          ],\n          [\n            \"devops\",\n            \"docker\",\n            \"kubernetes\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Sales\",\n        \"id\": 2,\n        \"name\": \"Bob Manager\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\"\n          ],\n          [\n            \"sales:view\",\n            \"sales:edit\"\n          ],\n          [\n            \"reports:view\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"management\",\n            \"team-lead\",\n            \"strategy\"\n          ],\n          [\n            \"sales\",\n            \"crm\",\n            \"negotiation\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Engineering\",\n        \"id\": 3,\n        \"name\": \"Carol Developer\",\n        \"permission_groups\": [\n          [\n            \"user:read\"\n          ],\n          [\n            \"code:read\",\n            \"code:write\"\n          ],\n          [\n            \"deploy:staging\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"java\",\n            \"spring\"\n          ],\n          [\n            \"database\",\n            \"sql\",\n            \"mongodb\"\n          ]\n        ]\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": {
        "all_permissions": [
          "user:read",
          "user:write",
          "user:delete",
          "system:admin",
          "system:config",
          "reports:view",
          "reports:create",
          "user:read",
          "user:write",
          "sales:view",
          "sales:edit",
          "reports:view",
          "user:read",
          "code:read",
          "code:write",
          "deploy:staging"
        ],
        "all_skills": [
          "programming",
          "javascript",
          "python",
          "devops",
          "docker",
          "kubernetes",
          "management",
          "team-lead",
          "strategy",
          "sales",
          "crm",
          "negotiation",
          "programming",
          "java",
          "spring",
          "database",
          "sql",
          "mongodb"
        ],
        "users_with_admin": [
          {
            "department": "IT",
            "id": 1,
            "name": "Alice Admin",
            "permission_groups": [
              [
                "user:read",
                "user:write",
                "user:delete"
              ],
              [
                "system:admin",
                "system:config"
              ],
              [
                "reports:view",
                "reports:create"
              ]
            ],
            "skill_categories": [
              [
                "programming",
                "javascript",
                "python"
              ],
              [
                "devops",
                "docker",
                "kubernetes"
              ]
            ]
          }
        ],
        "programming_skills": [
          [
            "programming",
            "javascript",
            "python"
          ],
          [
            "programming",
            "java",
            "spring"
          ]
        ],
        "it_permissions": []
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-4-product-catalog-nested-array-filtering",
      "qualified_step_id": "nested-array-filtering::step-4-product-catalog-nested-array-filtering",
      "step_name": "Product catalog nested array filtering",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "product_nested_filtering",
          "products": [
            {
              "id": "PROD-001",
              "name": "Smartphone",
              "price": 599.99,
              "category_hierarchy": [
                "electronics",
                "mobile",
                "smartphones"
              ],
              "tag_groups": [
                [
                  "premium",
                  "flagship"
                ],
                [
                  "5g",
                  "wireless-charging"
                ],
                [
                  "camera",
                  "photography"
                ]
              ],
              "feature_matrix": [
                [
                  "display",
                  "6.1inch",
                  "oled"
                ],
                [
                  "camera",
                  "triple",
                  "48mp"
                ],
                [
                  "battery",
                  "4000mah",
                  "fast-charge"
                ]
              ]
            },
            {
              "id": "PROD-002",
              "name": "Laptop",
              "price": 1299.99,
              "category_hierarchy": [
                "electronics",
                "computers",
                "laptops"
              ],
              "tag_groups": [
                [
                  "professional",
                  "business"
                ],
                [
                  "performance",
                  "gaming"
                ],
                [
                  "portable",
                  "lightweight"
                ]
              ],
              "feature_matrix": [
                [
                  "processor",
                  "intel-i7",
                  "8-cores"
                ],
                [
                  "memory",
                  "16gb",
                  "ddr4"
                ],
                [
                  "storage",
                  "512gb",
                  "ssd"
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"product_nested_filtering\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 676\r\n\r\n{\"operation\":\"product_nested_filtering\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
        "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": "2871",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"product_nested_filtering\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "676",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "product_nested_filtering",
            "products": [
              {
                "category_hierarchy": [
                  "electronics",
                  "mobile",
                  "smartphones"
                ],
                "feature_matrix": [
                  [
                    "display",
                    "6.1inch",
                    "oled"
                  ],
                  [
                    "camera",
                    "triple",
                    "48mp"
                  ],
                  [
                    "battery",
                    "4000mah",
                    "fast-charge"
                  ]
                ],
                "id": "PROD-001",
                "name": "Smartphone",
                "price": 599.99,
                "tag_groups": [
                  [
                    "premium",
                    "flagship"
                  ],
                  [
                    "5g",
                    "wireless-charging"
                  ],
                  [
                    "camera",
                    "photography"
                  ]
                ]
              },
              {
                "category_hierarchy": [
                  "electronics",
                  "computers",
                  "laptops"
                ],
                "feature_matrix": [
                  [
                    "processor",
                    "intel-i7",
                    "8-cores"
                  ],
                  [
                    "memory",
                    "16gb",
                    "ddr4"
                  ],
                  [
                    "storage",
                    "512gb",
                    "ssd"
                  ]
                ],
                "id": "PROD-002",
                "name": "Laptop",
                "price": 1299.99,
                "tag_groups": [
                  [
                    "professional",
                    "business"
                  ],
                  [
                    "performance",
                    "gaming"
                  ],
                  [
                    "portable",
                    "lightweight"
                  ]
                ]
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1795,
        "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: 2871\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"product_nested_filtering\\\",\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Smartphone\\\",\\\"price\\\":599.99,\\\"category_hierarchy\\\":[\\\"electronics\\\",\\\"mobile\\\",\\\"smartphones\\\"],\\\"tag_groups\\\":[[\\\"premium\\\",\\\"flagship\\\"],[\\\"5g\\\",\\\"wireless-charging\\\"],[\\\"camera\\\",\\\"photography\\\"]],\\\"feature_matrix\\\":[[\\\"display\\\",\\\"6.1inch\\\",\\\"oled\\\"],[\\\"camera\\\",\\\"triple\\\",\\\"48mp\\\"],[\\\"battery\\\",\\\"4000mah\\\",\\\"fast-charge\\\"]]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Laptop\\\",\\\"price\\\":1299.99,\\\"category_hierarchy\\\":[\\\"electronics\\\",\\\"computers\\\",\\\"laptops\\\"],\\\"tag_groups\\\":[[\\\"professional\\\",\\\"business\\\"],[\\\"performance\\\",\\\"gaming\\\"],[\\\"portable\\\",\\\"lightweight\\\"]],\\\"feature_matrix\\\":[[\\\"processor\\\",\\\"intel-i7\\\",\\\"8-cores\\\"],[\\\"memory\\\",\\\"16gb\\\",\\\"ddr4\\\"],[\\\"storage\\\",\\\"512gb\\\",\\\"ssd\\\"]]}]}\",\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\": \"676\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"product_nested_filtering\",\n    \"products\": [\n      {\n        \"category_hierarchy\": [\n          \"electronics\",\n          \"mobile\",\n          \"smartphones\"\n        ],\n        \"feature_matrix\": [\n          [\n            \"display\",\n            \"6.1inch\",\n            \"oled\"\n          ],\n          [\n            \"camera\",\n            \"triple\",\n            \"48mp\"\n          ],\n          [\n            \"battery\",\n            \"4000mah\",\n            \"fast-charge\"\n          ]\n        ],\n        \"id\": \"PROD-001\",\n        \"name\": \"Smartphone\",\n        \"price\": 599.99,\n        \"tag_groups\": [\n          [\n            \"premium\",\n            \"flagship\"\n          ],\n          [\n            \"5g\",\n            \"wireless-charging\"\n          ],\n          [\n            \"camera\",\n            \"photography\"\n          ]\n        ]\n      },\n      {\n        \"category_hierarchy\": [\n          \"electronics\",\n          \"computers\",\n          \"laptops\"\n        ],\n        \"feature_matrix\": [\n          [\n            \"processor\",\n            \"intel-i7\",\n            \"8-cores\"\n          ],\n          [\n            \"memory\",\n            \"16gb\",\n            \"ddr4\"\n          ],\n          [\n            \"storage\",\n            \"512gb\",\n            \"ssd\"\n          ]\n        ],\n        \"id\": \"PROD-002\",\n        \"name\": \"Laptop\",\n        \"price\": 1299.99,\n        \"tag_groups\": [\n          [\n            \"professional\",\n            \"business\"\n          ],\n          [\n            \"performance\",\n            \"gaming\"\n          ],\n          [\n            \"portable\",\n            \"lightweight\"\n          ]\n        ]\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": {
        "all_categories": [
          "electronics",
          "mobile",
          "smartphones",
          "electronics",
          "computers",
          "laptops"
        ],
        "all_tags": [
          "premium",
          "flagship",
          "5g",
          "wireless-charging",
          "camera",
          "photography",
          "professional",
          "business",
          "performance",
          "gaming",
          "portable",
          "lightweight"
        ],
        "electronics_products": [
          {
            "category_hierarchy": [
              "electronics",
              "mobile",
              "smartphones"
            ],
            "feature_matrix": [
              [
                "display",
                "6.1inch",
                "oled"
              ],
              [
                "camera",
                "triple",
                "48mp"
              ],
              [
                "battery",
                "4000mah",
                "fast-charge"
              ]
            ],
            "id": "PROD-001",
            "name": "Smartphone",
            "price": 599.99,
            "tag_groups": [
              [
                "premium",
                "flagship"
              ],
              [
                "5g",
                "wireless-charging"
              ],
              [
                "camera",
                "photography"
              ]
            ]
          },
          {
            "category_hierarchy": [
              "electronics",
              "computers",
              "laptops"
            ],
            "feature_matrix": [
              [
                "processor",
                "intel-i7",
                "8-cores"
              ],
              [
                "memory",
                "16gb",
                "ddr4"
              ],
              [
                "storage",
                "512gb",
                "ssd"
              ]
            ],
            "id": "PROD-002",
            "name": "Laptop",
            "price": 1299.99,
            "tag_groups": [
              [
                "professional",
                "business"
              ],
              [
                "performance",
                "gaming"
              ],
              [
                "portable",
                "lightweight"
              ]
            ]
          }
        ],
        "premium_products": [
          {
            "category_hierarchy": [
              "electronics",
              "mobile",
              "smartphones"
            ],
            "feature_matrix": [
              [
                "display",
                "6.1inch",
                "oled"
              ],
              [
                "camera",
                "triple",
                "48mp"
              ],
              [
                "battery",
                "4000mah",
                "fast-charge"
              ]
            ],
            "id": "PROD-001",
            "name": "Smartphone",
            "price": 599.99,
            "tag_groups": [
              [
                "premium",
                "flagship"
              ],
              [
                "5g",
                "wireless-charging"
              ],
              [
                "camera",
                "photography"
              ]
            ]
          }
        ],
        "all_features": [
          "display",
          "6.1inch",
          "oled",
          "camera",
          "triple",
          "48mp",
          "battery",
          "4000mah",
          "fast-charge",
          "processor",
          "intel-i7",
          "8-cores",
          "memory",
          "16gb",
          "ddr4",
          "storage",
          "512gb",
          "ssd"
        ],
        "camera_features": [
          [
            [
              "camera",
              "triple",
              "48mp"
            ]
          ],
          []
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-5-advanced-matrix-filtering-and-operations",
      "qualified_step_id": "nested-array-filtering::step-5-advanced-matrix-filtering-and-operations",
      "step_name": "Advanced matrix filtering and operations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "matrix_operations",
          "matrix": [
            [
              1,
              2,
              3
            ],
            [
              4,
              5,
              6
            ],
            [
              7,
              8,
              9
            ],
            [
              10,
              11,
              12
            ]
          ],
          "products": [
            {
              "id": "PROD-001",
              "name": "Smartphone",
              "price": 599.99,
              "category_hierarchy": [
                "electronics",
                "mobile",
                "smartphones"
              ],
              "tag_groups": [
                [
                  "premium",
                  "flagship"
                ],
                [
                  "5g",
                  "wireless-charging"
                ],
                [
                  "camera",
                  "photography"
                ]
              ],
              "feature_matrix": [
                [
                  "display",
                  "6.1inch",
                  "oled"
                ],
                [
                  "camera",
                  "triple",
                  "48mp"
                ],
                [
                  "battery",
                  "4000mah",
                  "fast-charge"
                ]
              ]
            },
            {
              "id": "PROD-002",
              "name": "Laptop",
              "price": 1299.99,
              "category_hierarchy": [
                "electronics",
                "computers",
                "laptops"
              ],
              "tag_groups": [
                [
                  "professional",
                  "business"
                ],
                [
                  "performance",
                  "gaming"
                ],
                [
                  "portable",
                  "lightweight"
                ]
              ],
              "feature_matrix": [
                [
                  "processor",
                  "intel-i7",
                  "8-cores"
                ],
                [
                  "memory",
                  "16gb",
                  "ddr4"
                ],
                [
                  "storage",
                  "512gb",
                  "ssd"
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"matrix_operations\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 715\r\n\r\n{\"operation\":\"matrix_operations\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
        "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": "3138",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"matrix_operations\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "715",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "matrix": [
              [
                1,
                2,
                3
              ],
              [
                4,
                5,
                6
              ],
              [
                7,
                8,
                9
              ],
              [
                10,
                11,
                12
              ]
            ],
            "operation": "matrix_operations",
            "products": [
              {
                "category_hierarchy": [
                  "electronics",
                  "mobile",
                  "smartphones"
                ],
                "feature_matrix": [
                  [
                    "display",
                    "6.1inch",
                    "oled"
                  ],
                  [
                    "camera",
                    "triple",
                    "48mp"
                  ],
                  [
                    "battery",
                    "4000mah",
                    "fast-charge"
                  ]
                ],
                "id": "PROD-001",
                "name": "Smartphone",
                "price": 599.99,
                "tag_groups": [
                  [
                    "premium",
                    "flagship"
                  ],
                  [
                    "5g",
                    "wireless-charging"
                  ],
                  [
                    "camera",
                    "photography"
                  ]
                ]
              },
              {
                "category_hierarchy": [
                  "electronics",
                  "computers",
                  "laptops"
                ],
                "feature_matrix": [
                  [
                    "processor",
                    "intel-i7",
                    "8-cores"
                  ],
                  [
                    "memory",
                    "16gb",
                    "ddr4"
                  ],
                  [
                    "storage",
                    "512gb",
                    "ssd"
                  ]
                ],
                "id": "PROD-002",
                "name": "Laptop",
                "price": 1299.99,
                "tag_groups": [
                  [
                    "professional",
                    "business"
                  ],
                  [
                    "performance",
                    "gaming"
                  ],
                  [
                    "portable",
                    "lightweight"
                  ]
                ]
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1875,
        "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: 3138\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"matrix_operations\\\",\\\"matrix\\\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Smartphone\\\",\\\"price\\\":599.99,\\\"category_hierarchy\\\":[\\\"electronics\\\",\\\"mobile\\\",\\\"smartphones\\\"],\\\"tag_groups\\\":[[\\\"premium\\\",\\\"flagship\\\"],[\\\"5g\\\",\\\"wireless-charging\\\"],[\\\"camera\\\",\\\"photography\\\"]],\\\"feature_matrix\\\":[[\\\"display\\\",\\\"6.1inch\\\",\\\"oled\\\"],[\\\"camera\\\",\\\"triple\\\",\\\"48mp\\\"],[\\\"battery\\\",\\\"4000mah\\\",\\\"fast-charge\\\"]]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Laptop\\\",\\\"price\\\":1299.99,\\\"category_hierarchy\\\":[\\\"electronics\\\",\\\"computers\\\",\\\"laptops\\\"],\\\"tag_groups\\\":[[\\\"professional\\\",\\\"business\\\"],[\\\"performance\\\",\\\"gaming\\\"],[\\\"portable\\\",\\\"lightweight\\\"]],\\\"feature_matrix\\\":[[\\\"processor\\\",\\\"intel-i7\\\",\\\"8-cores\\\"],[\\\"memory\\\",\\\"16gb\\\",\\\"ddr4\\\"],[\\\"storage\\\",\\\"512gb\\\",\\\"ssd\\\"]]}]}\",\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\": \"715\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"matrix\": [\n      [\n        1,\n        2,\n        3\n      ],\n      [\n        4,\n        5,\n        6\n      ],\n      [\n        7,\n        8,\n        9\n      ],\n      [\n        10,\n        11,\n        12\n      ]\n    ],\n    \"operation\": \"matrix_operations\",\n    \"products\": [\n      {\n        \"category_hierarchy\": [\n          \"electronics\",\n          \"mobile\",\n          \"smartphones\"\n        ],\n        \"feature_matrix\": [\n          [\n            \"display\",\n            \"6.1inch\",\n            \"oled\"\n          ],\n          [\n            \"camera\",\n            \"triple\",\n            \"48mp\"\n          ],\n          [\n            \"battery\",\n            \"4000mah\",\n            \"fast-charge\"\n          ]\n        ],\n        \"id\": \"PROD-001\",\n        \"name\": \"Smartphone\",\n        \"price\": 599.99,\n        \"tag_groups\": [\n          [\n            \"premium\",\n            \"flagship\"\n          ],\n          [\n            \"5g\",\n            \"wireless-charging\"\n          ],\n          [\n            \"camera\",\n            \"photography\"\n          ]\n        ]\n      },\n      {\n        \"category_hierarchy\": [\n          \"electronics\",\n          \"computers\",\n          \"laptops\"\n        ],\n        \"feature_matrix\": [\n          [\n            \"processor\",\n            \"intel-i7\",\n            \"8-cores\"\n          ],\n          [\n            \"memory\",\n            \"16gb\",\n            \"ddr4\"\n          ],\n          [\n            \"storage\",\n            \"512gb\",\n            \"ssd\"\n          ]\n        ],\n        \"id\": \"PROD-002\",\n        \"name\": \"Laptop\",\n        \"price\": 1299.99,\n        \"tag_groups\": [\n          [\n            \"professional\",\n            \"business\"\n          ],\n          [\n            \"performance\",\n            \"gaming\"\n          ],\n          [\n            \"portable\",\n            \"lightweight\"\n          ]\n        ]\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": {
        "first_column": [
          1,
          4,
          7,
          10
        ],
        "last_elements": [
          3,
          6,
          9,
          12
        ],
        "high_sum_rows": [
          [
            4,
            5,
            6
          ],
          [
            7,
            8,
            9
          ],
          [
            10,
            11,
            12
          ]
        ],
        "processor_specs": [
          [],
          [
            [
              "processor",
              "intel-i7",
              "8-cores"
            ]
          ]
        ],
        "memory_specs": [
          [],
          [
            [
              "memory",
              "16gb",
              "ddr4"
            ]
          ]
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-6-time-series-data-filtering",
      "qualified_step_id": "nested-array-filtering::step-6-time-series-data-filtering",
      "step_name": "Time series data filtering",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "time_series_filtering",
          "series": [
            {
              "name": "CPU Usage",
              "data_points": [
                [
                  1640995200,
                  45.2
                ],
                [
                  1640995260,
                  52.1
                ],
                [
                  1640995320,
                  48.7
                ],
                [
                  1640995380,
                  61.3
                ]
              ]
            },
            {
              "name": "Memory Usage",
              "data_points": [
                [
                  1640995200,
                  68.5
                ],
                [
                  1640995260,
                  71.2
                ],
                [
                  1640995320,
                  69.8
                ],
                [
                  1640995380,
                  74.1
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"time_series_filtering\",\"series\":[{\"name\":\"CPU Usage\",\"data_points\":[[1640995200,45.2],[1640995260,52.1],[1640995320,48.7],[1640995380,61.3]]},{\"name\":\"Memory Usage\",\"data_points\":[[1640995200,68.5],[1640995260,71.2],[1640995320,69.8],[1640995380,74.1]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 269\r\n\r\n{\"operation\":\"time_series_filtering\",\"series\":[{\"name\":\"CPU Usage\",\"data_points\":[[1640995200,45.2],[1640995260,52.1],[1640995320,48.7],[1640995380,61.3]]},{\"name\":\"Memory Usage\",\"data_points\":[[1640995200,68.5],[1640995260,71.2],[1640995320,69.8],[1640995380,74.1]]}]}",
        "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": "1489",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"time_series_filtering\",\"series\":[{\"name\":\"CPU Usage\",\"data_points\":[[1640995200,45.2],[1640995260,52.1],[1640995320,48.7],[1640995380,61.3]]},{\"name\":\"Memory Usage\",\"data_points\":[[1640995200,68.5],[1640995260,71.2],[1640995320,69.8],[1640995380,74.1]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "269",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "time_series_filtering",
            "series": [
              {
                "data_points": [
                  [
                    1640995200,
                    45.2
                  ],
                  [
                    1640995260,
                    52.1
                  ],
                  [
                    1640995320,
                    48.7
                  ],
                  [
                    1640995380,
                    61.3
                  ]
                ],
                "name": "CPU Usage"
              },
              {
                "data_points": [
                  [
                    1640995200,
                    68.5
                  ],
                  [
                    1640995260,
                    71.2
                  ],
                  [
                    1640995320,
                    69.8
                  ],
                  [
                    1640995380,
                    74.1
                  ]
                ],
                "name": "Memory Usage"
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 889,
        "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: 1489\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"time_series_filtering\\\",\\\"series\\\":[{\\\"name\\\":\\\"CPU Usage\\\",\\\"data_points\\\":[[1640995200,45.2],[1640995260,52.1],[1640995320,48.7],[1640995380,61.3]]},{\\\"name\\\":\\\"Memory Usage\\\",\\\"data_points\\\":[[1640995200,68.5],[1640995260,71.2],[1640995320,69.8],[1640995380,74.1]]}]}\",\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\": \"269\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"time_series_filtering\",\n    \"series\": [\n      {\n        \"data_points\": [\n          [\n            1640995200,\n            45.2\n          ],\n          [\n            1640995260,\n            52.1\n          ],\n          [\n            1640995320,\n            48.7\n          ],\n          [\n            1640995380,\n            61.3\n          ]\n        ],\n        \"name\": \"CPU Usage\"\n      },\n      {\n        \"data_points\": [\n          [\n            1640995200,\n            68.5\n          ],\n          [\n            1640995260,\n            71.2\n          ],\n          [\n            1640995320,\n            69.8\n          ],\n          [\n            1640995380,\n            74.1\n          ]\n        ],\n        \"name\": \"Memory Usage\"\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": {
        "all_timestamps": [
          [
            1640995200,
            1640995260,
            1640995320,
            1640995380
          ],
          [
            1640995200,
            1640995260,
            1640995320,
            1640995380
          ]
        ],
        "all_values": [
          [
            45.2,
            52.1,
            48.7,
            61.3
          ],
          [
            68.5,
            71.2,
            69.8,
            74.1
          ]
        ],
        "cpu_data": [
          [
            1640995200,
            45.2
          ],
          [
            1640995260,
            52.1
          ],
          [
            1640995320,
            48.7
          ],
          [
            1640995380,
            61.3
          ]
        ],
        "high_values": [
          [
            [
              1640995380,
              61.3
            ]
          ],
          [
            [
              1640995200,
              68.5
            ],
            [
              1640995260,
              71.2
            ],
            [
              1640995320,
              69.8
            ],
            [
              1640995380,
              74.1
            ]
          ]
        ],
        "recent_data": [
          [
            [
              1640995320,
              48.7
            ],
            [
              1640995380,
              61.3
            ]
          ],
          [
            [
              1640995320,
              69.8
            ],
            [
              1640995380,
              74.1
            ]
          ]
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-7-multi-level-filtering-combinations",
      "qualified_step_id": "nested-array-filtering::step-7-multi-level-filtering-combinations",
      "step_name": "Multi-level filtering combinations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "multi_level_filtering",
          "users": [
            {
              "id": 1,
              "name": "Alice Admin",
              "department": "IT",
              "permission_groups": [
                [
                  "user:read",
                  "user:write",
                  "user:delete"
                ],
                [
                  "system:admin",
                  "system:config"
                ],
                [
                  "reports:view",
                  "reports:create"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "javascript",
                  "python"
                ],
                [
                  "devops",
                  "docker",
                  "kubernetes"
                ]
              ]
            },
            {
              "id": 2,
              "name": "Bob Manager",
              "department": "Sales",
              "permission_groups": [
                [
                  "user:read",
                  "user:write"
                ],
                [
                  "sales:view",
                  "sales:edit"
                ],
                [
                  "reports:view"
                ]
              ],
              "skill_categories": [
                [
                  "management",
                  "team-lead",
                  "strategy"
                ],
                [
                  "sales",
                  "crm",
                  "negotiation"
                ]
              ]
            },
            {
              "id": 3,
              "name": "Carol Developer",
              "department": "Engineering",
              "permission_groups": [
                [
                  "user:read"
                ],
                [
                  "code:read",
                  "code:write"
                ],
                [
                  "deploy:staging"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "java",
                  "spring"
                ],
                [
                  "database",
                  "sql",
                  "mongodb"
                ]
              ]
            }
          ],
          "products": [
            {
              "id": "PROD-001",
              "name": "Smartphone",
              "price": 599.99,
              "category_hierarchy": [
                "electronics",
                "mobile",
                "smartphones"
              ],
              "tag_groups": [
                [
                  "premium",
                  "flagship"
                ],
                [
                  "5g",
                  "wireless-charging"
                ],
                [
                  "camera",
                  "photography"
                ]
              ],
              "feature_matrix": [
                [
                  "display",
                  "6.1inch",
                  "oled"
                ],
                [
                  "camera",
                  "triple",
                  "48mp"
                ],
                [
                  "battery",
                  "4000mah",
                  "fast-charge"
                ]
              ]
            },
            {
              "id": "PROD-002",
              "name": "Laptop",
              "price": 1299.99,
              "category_hierarchy": [
                "electronics",
                "computers",
                "laptops"
              ],
              "tag_groups": [
                [
                  "professional",
                  "business"
                ],
                [
                  "performance",
                  "gaming"
                ],
                [
                  "portable",
                  "lightweight"
                ]
              ],
              "feature_matrix": [
                [
                  "processor",
                  "intel-i7",
                  "8-cores"
                ],
                [
                  "memory",
                  "16gb",
                  "ddr4"
                ],
                [
                  "storage",
                  "512gb",
                  "ssd"
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"multi_level_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1412\r\n\r\n{\"operation\":\"multi_level_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
        "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": "5528",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"multi_level_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Smartphone\",\"price\":599.99,\"category_hierarchy\":[\"electronics\",\"mobile\",\"smartphones\"],\"tag_groups\":[[\"premium\",\"flagship\"],[\"5g\",\"wireless-charging\"],[\"camera\",\"photography\"]],\"feature_matrix\":[[\"display\",\"6.1inch\",\"oled\"],[\"camera\",\"triple\",\"48mp\"],[\"battery\",\"4000mah\",\"fast-charge\"]]},{\"id\":\"PROD-002\",\"name\":\"Laptop\",\"price\":1299.99,\"category_hierarchy\":[\"electronics\",\"computers\",\"laptops\"],\"tag_groups\":[[\"professional\",\"business\"],[\"performance\",\"gaming\"],[\"portable\",\"lightweight\"]],\"feature_matrix\":[[\"processor\",\"intel-i7\",\"8-cores\"],[\"memory\",\"16gb\",\"ddr4\"],[\"storage\",\"512gb\",\"ssd\"]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "1412",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "operation": "multi_level_filtering",
            "products": [
              {
                "category_hierarchy": [
                  "electronics",
                  "mobile",
                  "smartphones"
                ],
                "feature_matrix": [
                  [
                    "display",
                    "6.1inch",
                    "oled"
                  ],
                  [
                    "camera",
                    "triple",
                    "48mp"
                  ],
                  [
                    "battery",
                    "4000mah",
                    "fast-charge"
                  ]
                ],
                "id": "PROD-001",
                "name": "Smartphone",
                "price": 599.99,
                "tag_groups": [
                  [
                    "premium",
                    "flagship"
                  ],
                  [
                    "5g",
                    "wireless-charging"
                  ],
                  [
                    "camera",
                    "photography"
                  ]
                ]
              },
              {
                "category_hierarchy": [
                  "electronics",
                  "computers",
                  "laptops"
                ],
                "feature_matrix": [
                  [
                    "processor",
                    "intel-i7",
                    "8-cores"
                  ],
                  [
                    "memory",
                    "16gb",
                    "ddr4"
                  ],
                  [
                    "storage",
                    "512gb",
                    "ssd"
                  ]
                ],
                "id": "PROD-002",
                "name": "Laptop",
                "price": 1299.99,
                "tag_groups": [
                  [
                    "professional",
                    "business"
                  ],
                  [
                    "performance",
                    "gaming"
                  ],
                  [
                    "portable",
                    "lightweight"
                  ]
                ]
              }
            ],
            "users": [
              {
                "department": "IT",
                "id": 1,
                "name": "Alice Admin",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write",
                    "user:delete"
                  ],
                  [
                    "system:admin",
                    "system:config"
                  ],
                  [
                    "reports:view",
                    "reports:create"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "javascript",
                    "python"
                  ],
                  [
                    "devops",
                    "docker",
                    "kubernetes"
                  ]
                ]
              },
              {
                "department": "Sales",
                "id": 2,
                "name": "Bob Manager",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write"
                  ],
                  [
                    "sales:view",
                    "sales:edit"
                  ],
                  [
                    "reports:view"
                  ]
                ],
                "skill_categories": [
                  [
                    "management",
                    "team-lead",
                    "strategy"
                  ],
                  [
                    "sales",
                    "crm",
                    "negotiation"
                  ]
                ]
              },
              {
                "department": "Engineering",
                "id": 3,
                "name": "Carol Developer",
                "permission_groups": [
                  [
                    "user:read"
                  ],
                  [
                    "code:read",
                    "code:write"
                  ],
                  [
                    "deploy:staging"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "java",
                    "spring"
                  ],
                  [
                    "database",
                    "sql",
                    "mongodb"
                  ]
                ]
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 3380,
        "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: 5528\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"multi_level_filtering\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Admin\\\",\\\"department\\\":\\\"IT\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\",\\\"user:delete\\\"],[\\\"system:admin\\\",\\\"system:config\\\"],[\\\"reports:view\\\",\\\"reports:create\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"javascript\\\",\\\"python\\\"],[\\\"devops\\\",\\\"docker\\\",\\\"kubernetes\\\"]]},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Manager\\\",\\\"department\\\":\\\"Sales\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\"],[\\\"sales:view\\\",\\\"sales:edit\\\"],[\\\"reports:view\\\"]],\\\"skill_categories\\\":[[\\\"management\\\",\\\"team-lead\\\",\\\"strategy\\\"],[\\\"sales\\\",\\\"crm\\\",\\\"negotiation\\\"]]},{\\\"id\\\":3,\\\"name\\\":\\\"Carol Developer\\\",\\\"department\\\":\\\"Engineering\\\",\\\"permission_groups\\\":[[\\\"user:read\\\"],[\\\"code:read\\\",\\\"code:write\\\"],[\\\"deploy:staging\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"java\\\",\\\"spring\\\"],[\\\"database\\\",\\\"sql\\\",\\\"mongodb\\\"]]}],\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Smartphone\\\",\\\"price\\\":599.99,\\\"category_hierarchy\\\":[\\\"electronics\\\",\\\"mobile\\\",\\\"smartphones\\\"],\\\"tag_groups\\\":[[\\\"premium\\\",\\\"flagship\\\"],[\\\"5g\\\",\\\"wireless-charging\\\"],[\\\"camera\\\",\\\"photography\\\"]],\\\"feature_matrix\\\":[[\\\"display\\\",\\\"6.1inch\\\",\\\"oled\\\"],[\\\"camera\\\",\\\"triple\\\",\\\"48mp\\\"],[\\\"battery\\\",\\\"4000mah\\\",\\\"fast-charge\\\"]]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Laptop\\\",\\\"price\\\":1299.99,\\\"category_hierarchy\\\":[\\\"electronics\\\",\\\"computers\\\",\\\"laptops\\\"],\\\"tag_groups\\\":[[\\\"professional\\\",\\\"business\\\"],[\\\"performance\\\",\\\"gaming\\\"],[\\\"portable\\\",\\\"lightweight\\\"]],\\\"feature_matrix\\\":[[\\\"processor\\\",\\\"intel-i7\\\",\\\"8-cores\\\"],[\\\"memory\\\",\\\"16gb\\\",\\\"ddr4\\\"],[\\\"storage\\\",\\\"512gb\\\",\\\"ssd\\\"]]}]}\",\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\": \"1412\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"operation\": \"multi_level_filtering\",\n    \"products\": [\n      {\n        \"category_hierarchy\": [\n          \"electronics\",\n          \"mobile\",\n          \"smartphones\"\n        ],\n        \"feature_matrix\": [\n          [\n            \"display\",\n            \"6.1inch\",\n            \"oled\"\n          ],\n          [\n            \"camera\",\n            \"triple\",\n            \"48mp\"\n          ],\n          [\n            \"battery\",\n            \"4000mah\",\n            \"fast-charge\"\n          ]\n        ],\n        \"id\": \"PROD-001\",\n        \"name\": \"Smartphone\",\n        \"price\": 599.99,\n        \"tag_groups\": [\n          [\n            \"premium\",\n            \"flagship\"\n          ],\n          [\n            \"5g\",\n            \"wireless-charging\"\n          ],\n          [\n            \"camera\",\n            \"photography\"\n          ]\n        ]\n      },\n      {\n        \"category_hierarchy\": [\n          \"electronics\",\n          \"computers\",\n          \"laptops\"\n        ],\n        \"feature_matrix\": [\n          [\n            \"processor\",\n            \"intel-i7\",\n            \"8-cores\"\n          ],\n          [\n            \"memory\",\n            \"16gb\",\n            \"ddr4\"\n          ],\n          [\n            \"storage\",\n            \"512gb\",\n            \"ssd\"\n          ]\n        ],\n        \"id\": \"PROD-002\",\n        \"name\": \"Laptop\",\n        \"price\": 1299.99,\n        \"tag_groups\": [\n          [\n            \"professional\",\n            \"business\"\n          ],\n          [\n            \"performance\",\n            \"gaming\"\n          ],\n          [\n            \"portable\",\n            \"lightweight\"\n          ]\n        ]\n      }\n    ],\n    \"users\": [\n      {\n        \"department\": \"IT\",\n        \"id\": 1,\n        \"name\": \"Alice Admin\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\",\n            \"user:delete\"\n          ],\n          [\n            \"system:admin\",\n            \"system:config\"\n          ],\n          [\n            \"reports:view\",\n            \"reports:create\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"javascript\",\n            \"python\"\n          ],\n          [\n            \"devops\",\n            \"docker\",\n            \"kubernetes\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Sales\",\n        \"id\": 2,\n        \"name\": \"Bob Manager\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\"\n          ],\n          [\n            \"sales:view\",\n            \"sales:edit\"\n          ],\n          [\n            \"reports:view\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"management\",\n            \"team-lead\",\n            \"strategy\"\n          ],\n          [\n            \"sales\",\n            \"crm\",\n            \"negotiation\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Engineering\",\n        \"id\": 3,\n        \"name\": \"Carol Developer\",\n        \"permission_groups\": [\n          [\n            \"user:read\"\n          ],\n          [\n            \"code:read\",\n            \"code:write\"\n          ],\n          [\n            \"deploy:staging\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"java\",\n            \"spring\"\n          ],\n          [\n            \"database\",\n            \"sql\",\n            \"mongodb\"\n          ]\n        ]\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": {
        "eng_programming_skills": [],
        "it_admin_permissions": [],
        "electronics_camera": [],
        "premium_electronics_tags": []
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-8-conditional-nested-array-filtering",
      "qualified_step_id": "nested-array-filtering::step-8-conditional-nested-array-filtering",
      "step_name": "Conditional nested array filtering",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "conditional_nested_filtering",
          "matrix": [
            [
              1,
              2,
              3
            ],
            [
              4,
              5,
              6
            ],
            [
              7,
              8,
              9
            ],
            [
              10,
              11,
              12
            ]
          ],
          "users": [
            {
              "id": 1,
              "name": "Alice Admin",
              "department": "IT",
              "permission_groups": [
                [
                  "user:read",
                  "user:write",
                  "user:delete"
                ],
                [
                  "system:admin",
                  "system:config"
                ],
                [
                  "reports:view",
                  "reports:create"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "javascript",
                  "python"
                ],
                [
                  "devops",
                  "docker",
                  "kubernetes"
                ]
              ]
            },
            {
              "id": 2,
              "name": "Bob Manager",
              "department": "Sales",
              "permission_groups": [
                [
                  "user:read",
                  "user:write"
                ],
                [
                  "sales:view",
                  "sales:edit"
                ],
                [
                  "reports:view"
                ]
              ],
              "skill_categories": [
                [
                  "management",
                  "team-lead",
                  "strategy"
                ],
                [
                  "sales",
                  "crm",
                  "negotiation"
                ]
              ]
            },
            {
              "id": 3,
              "name": "Carol Developer",
              "department": "Engineering",
              "permission_groups": [
                [
                  "user:read"
                ],
                [
                  "code:read",
                  "code:write"
                ],
                [
                  "deploy:staging"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "java",
                  "spring"
                ],
                [
                  "database",
                  "sql",
                  "mongodb"
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"conditional_nested_filtering\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 829\r\n\r\n{\"operation\":\"conditional_nested_filtering\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
        "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": "3469",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"conditional_nested_filtering\",\"matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "829",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "matrix": [
              [
                1,
                2,
                3
              ],
              [
                4,
                5,
                6
              ],
              [
                7,
                8,
                9
              ],
              [
                10,
                11,
                12
              ]
            ],
            "operation": "conditional_nested_filtering",
            "users": [
              {
                "department": "IT",
                "id": 1,
                "name": "Alice Admin",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write",
                    "user:delete"
                  ],
                  [
                    "system:admin",
                    "system:config"
                  ],
                  [
                    "reports:view",
                    "reports:create"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "javascript",
                    "python"
                  ],
                  [
                    "devops",
                    "docker",
                    "kubernetes"
                  ]
                ]
              },
              {
                "department": "Sales",
                "id": 2,
                "name": "Bob Manager",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write"
                  ],
                  [
                    "sales:view",
                    "sales:edit"
                  ],
                  [
                    "reports:view"
                  ]
                ],
                "skill_categories": [
                  [
                    "management",
                    "team-lead",
                    "strategy"
                  ],
                  [
                    "sales",
                    "crm",
                    "negotiation"
                  ]
                ]
              },
              {
                "department": "Engineering",
                "id": 3,
                "name": "Carol Developer",
                "permission_groups": [
                  [
                    "user:read"
                  ],
                  [
                    "code:read",
                    "code:write"
                  ],
                  [
                    "deploy:staging"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "java",
                    "spring"
                  ],
                  [
                    "database",
                    "sql",
                    "mongodb"
                  ]
                ]
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 2109,
        "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: 3469\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"conditional_nested_filtering\\\",\\\"matrix\\\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Admin\\\",\\\"department\\\":\\\"IT\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\",\\\"user:delete\\\"],[\\\"system:admin\\\",\\\"system:config\\\"],[\\\"reports:view\\\",\\\"reports:create\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"javascript\\\",\\\"python\\\"],[\\\"devops\\\",\\\"docker\\\",\\\"kubernetes\\\"]]},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Manager\\\",\\\"department\\\":\\\"Sales\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\"],[\\\"sales:view\\\",\\\"sales:edit\\\"],[\\\"reports:view\\\"]],\\\"skill_categories\\\":[[\\\"management\\\",\\\"team-lead\\\",\\\"strategy\\\"],[\\\"sales\\\",\\\"crm\\\",\\\"negotiation\\\"]]},{\\\"id\\\":3,\\\"name\\\":\\\"Carol Developer\\\",\\\"department\\\":\\\"Engineering\\\",\\\"permission_groups\\\":[[\\\"user:read\\\"],[\\\"code:read\\\",\\\"code:write\\\"],[\\\"deploy:staging\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"java\\\",\\\"spring\\\"],[\\\"database\\\",\\\"sql\\\",\\\"mongodb\\\"]]}]}\",\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\": \"829\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"matrix\": [\n      [\n        1,\n        2,\n        3\n      ],\n      [\n        4,\n        5,\n        6\n      ],\n      [\n        7,\n        8,\n        9\n      ],\n      [\n        10,\n        11,\n        12\n      ]\n    ],\n    \"operation\": \"conditional_nested_filtering\",\n    \"users\": [\n      {\n        \"department\": \"IT\",\n        \"id\": 1,\n        \"name\": \"Alice Admin\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\",\n            \"user:delete\"\n          ],\n          [\n            \"system:admin\",\n            \"system:config\"\n          ],\n          [\n            \"reports:view\",\n            \"reports:create\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"javascript\",\n            \"python\"\n          ],\n          [\n            \"devops\",\n            \"docker\",\n            \"kubernetes\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Sales\",\n        \"id\": 2,\n        \"name\": \"Bob Manager\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\"\n          ],\n          [\n            \"sales:view\",\n            \"sales:edit\"\n          ],\n          [\n            \"reports:view\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"management\",\n            \"team-lead\",\n            \"strategy\"\n          ],\n          [\n            \"sales\",\n            \"crm\",\n            \"negotiation\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Engineering\",\n        \"id\": 3,\n        \"name\": \"Carol Developer\",\n        \"permission_groups\": [\n          [\n            \"user:read\"\n          ],\n          [\n            \"code:read\",\n            \"code:write\"\n          ],\n          [\n            \"deploy:staging\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"java\",\n            \"spring\"\n          ],\n          [\n            \"database\",\n            \"sql\",\n            \"mongodb\"\n          ]\n        ]\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": {
        "all_gt5_rows": [
          [
            7,
            8,
            9
          ],
          [
            10,
            11,
            12
          ]
        ],
        "read_write_users": [
          {
            "department": "IT",
            "id": 1,
            "name": "Alice Admin",
            "permission_groups": [
              [
                "user:read",
                "user:write",
                "user:delete"
              ],
              [
                "system:admin",
                "system:config"
              ],
              [
                "reports:view",
                "reports:create"
              ]
            ],
            "skill_categories": [
              [
                "programming",
                "javascript",
                "python"
              ],
              [
                "devops",
                "docker",
                "kubernetes"
              ]
            ]
          },
          {
            "department": "Sales",
            "id": 2,
            "name": "Bob Manager",
            "permission_groups": [
              [
                "user:read",
                "user:write"
              ],
              [
                "sales:view",
                "sales:edit"
              ],
              [
                "reports:view"
              ]
            ],
            "skill_categories": [
              [
                "management",
                "team-lead",
                "strategy"
              ],
              [
                "sales",
                "crm",
                "negotiation"
              ]
            ]
          }
        ],
        "fullstack_users": [
          {
            "department": "IT",
            "id": 1,
            "name": "Alice Admin",
            "permission_groups": [
              [
                "user:read",
                "user:write",
                "user:delete"
              ],
              [
                "system:admin",
                "system:config"
              ],
              [
                "reports:view",
                "reports:create"
              ]
            ],
            "skill_categories": [
              [
                "programming",
                "javascript",
                "python"
              ],
              [
                "devops",
                "docker",
                "kubernetes"
              ]
            ]
          }
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-9-array-transformation-with-nested-structures",
      "qualified_step_id": "nested-array-filtering::step-9-array-transformation-with-nested-structures",
      "step_name": "Array transformation with nested structures",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "array_transformation",
          "coordinates": [
            [
              10,
              20
            ],
            [
              30,
              40
            ],
            [
              50,
              60
            ],
            [
              70,
              80
            ],
            [
              90,
              100
            ]
          ],
          "users": [
            {
              "id": 1,
              "name": "Alice Admin",
              "department": "IT",
              "permission_groups": [
                [
                  "user:read",
                  "user:write",
                  "user:delete"
                ],
                [
                  "system:admin",
                  "system:config"
                ],
                [
                  "reports:view",
                  "reports:create"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "javascript",
                  "python"
                ],
                [
                  "devops",
                  "docker",
                  "kubernetes"
                ]
              ]
            },
            {
              "id": 2,
              "name": "Bob Manager",
              "department": "Sales",
              "permission_groups": [
                [
                  "user:read",
                  "user:write"
                ],
                [
                  "sales:view",
                  "sales:edit"
                ],
                [
                  "reports:view"
                ]
              ],
              "skill_categories": [
                [
                  "management",
                  "team-lead",
                  "strategy"
                ],
                [
                  "sales",
                  "crm",
                  "negotiation"
                ]
              ]
            },
            {
              "id": 3,
              "name": "Carol Developer",
              "department": "Engineering",
              "permission_groups": [
                [
                  "user:read"
                ],
                [
                  "code:read",
                  "code:write"
                ],
                [
                  "deploy:staging"
                ]
              ],
              "skill_categories": [
                [
                  "programming",
                  "java",
                  "spring"
                ],
                [
                  "database",
                  "sql",
                  "mongodb"
                ]
              ]
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"array_transformation\",\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 832\r\n\r\n{\"operation\":\"array_transformation\",\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
        "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": "3469",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"array_transformation\",\"coordinates\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\"users\":[{\"id\":1,\"name\":\"Alice Admin\",\"department\":\"IT\",\"permission_groups\":[[\"user:read\",\"user:write\",\"user:delete\"],[\"system:admin\",\"system:config\"],[\"reports:view\",\"reports:create\"]],\"skill_categories\":[[\"programming\",\"javascript\",\"python\"],[\"devops\",\"docker\",\"kubernetes\"]]},{\"id\":2,\"name\":\"Bob Manager\",\"department\":\"Sales\",\"permission_groups\":[[\"user:read\",\"user:write\"],[\"sales:view\",\"sales:edit\"],[\"reports:view\"]],\"skill_categories\":[[\"management\",\"team-lead\",\"strategy\"],[\"sales\",\"crm\",\"negotiation\"]]},{\"id\":3,\"name\":\"Carol Developer\",\"department\":\"Engineering\",\"permission_groups\":[[\"user:read\"],[\"code:read\",\"code:write\"],[\"deploy:staging\"]],\"skill_categories\":[[\"programming\",\"java\",\"spring\"],[\"database\",\"sql\",\"mongodb\"]]}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "832",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "coordinates": [
              [
                10,
                20
              ],
              [
                30,
                40
              ],
              [
                50,
                60
              ],
              [
                70,
                80
              ],
              [
                90,
                100
              ]
            ],
            "operation": "array_transformation",
            "users": [
              {
                "department": "IT",
                "id": 1,
                "name": "Alice Admin",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write",
                    "user:delete"
                  ],
                  [
                    "system:admin",
                    "system:config"
                  ],
                  [
                    "reports:view",
                    "reports:create"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "javascript",
                    "python"
                  ],
                  [
                    "devops",
                    "docker",
                    "kubernetes"
                  ]
                ]
              },
              {
                "department": "Sales",
                "id": 2,
                "name": "Bob Manager",
                "permission_groups": [
                  [
                    "user:read",
                    "user:write"
                  ],
                  [
                    "sales:view",
                    "sales:edit"
                  ],
                  [
                    "reports:view"
                  ]
                ],
                "skill_categories": [
                  [
                    "management",
                    "team-lead",
                    "strategy"
                  ],
                  [
                    "sales",
                    "crm",
                    "negotiation"
                  ]
                ]
              },
              {
                "department": "Engineering",
                "id": 3,
                "name": "Carol Developer",
                "permission_groups": [
                  [
                    "user:read"
                  ],
                  [
                    "code:read",
                    "code:write"
                  ],
                  [
                    "deploy:staging"
                  ]
                ],
                "skill_categories": [
                  [
                    "programming",
                    "java",
                    "spring"
                  ],
                  [
                    "database",
                    "sql",
                    "mongodb"
                  ]
                ]
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 2115,
        "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: 3469\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"array_transformation\\\",\\\"coordinates\\\":[[10,20],[30,40],[50,60],[70,80],[90,100]],\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Admin\\\",\\\"department\\\":\\\"IT\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\",\\\"user:delete\\\"],[\\\"system:admin\\\",\\\"system:config\\\"],[\\\"reports:view\\\",\\\"reports:create\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"javascript\\\",\\\"python\\\"],[\\\"devops\\\",\\\"docker\\\",\\\"kubernetes\\\"]]},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Manager\\\",\\\"department\\\":\\\"Sales\\\",\\\"permission_groups\\\":[[\\\"user:read\\\",\\\"user:write\\\"],[\\\"sales:view\\\",\\\"sales:edit\\\"],[\\\"reports:view\\\"]],\\\"skill_categories\\\":[[\\\"management\\\",\\\"team-lead\\\",\\\"strategy\\\"],[\\\"sales\\\",\\\"crm\\\",\\\"negotiation\\\"]]},{\\\"id\\\":3,\\\"name\\\":\\\"Carol Developer\\\",\\\"department\\\":\\\"Engineering\\\",\\\"permission_groups\\\":[[\\\"user:read\\\"],[\\\"code:read\\\",\\\"code:write\\\"],[\\\"deploy:staging\\\"]],\\\"skill_categories\\\":[[\\\"programming\\\",\\\"java\\\",\\\"spring\\\"],[\\\"database\\\",\\\"sql\\\",\\\"mongodb\\\"]]}]}\",\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\": \"832\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"coordinates\": [\n      [\n        10,\n        20\n      ],\n      [\n        30,\n        40\n      ],\n      [\n        50,\n        60\n      ],\n      [\n        70,\n        80\n      ],\n      [\n        90,\n        100\n      ]\n    ],\n    \"operation\": \"array_transformation\",\n    \"users\": [\n      {\n        \"department\": \"IT\",\n        \"id\": 1,\n        \"name\": \"Alice Admin\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\",\n            \"user:delete\"\n          ],\n          [\n            \"system:admin\",\n            \"system:config\"\n          ],\n          [\n            \"reports:view\",\n            \"reports:create\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"javascript\",\n            \"python\"\n          ],\n          [\n            \"devops\",\n            \"docker\",\n            \"kubernetes\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Sales\",\n        \"id\": 2,\n        \"name\": \"Bob Manager\",\n        \"permission_groups\": [\n          [\n            \"user:read\",\n            \"user:write\"\n          ],\n          [\n            \"sales:view\",\n            \"sales:edit\"\n          ],\n          [\n            \"reports:view\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"management\",\n            \"team-lead\",\n            \"strategy\"\n          ],\n          [\n            \"sales\",\n            \"crm\",\n            \"negotiation\"\n          ]\n        ]\n      },\n      {\n        \"department\": \"Engineering\",\n        \"id\": 3,\n        \"name\": \"Carol Developer\",\n        \"permission_groups\": [\n          [\n            \"user:read\"\n          ],\n          [\n            \"code:read\",\n            \"code:write\"\n          ],\n          [\n            \"deploy:staging\"\n          ]\n        ],\n        \"skill_categories\": [\n          [\n            \"programming\",\n            \"java\",\n            \"spring\"\n          ],\n          [\n            \"database\",\n            \"sql\",\n            \"mongodb\"\n          ]\n        ]\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": {
        "coordinate_objects": [
          {
            "x": 10,
            "y": 20
          },
          {
            "x": 30,
            "y": 40
          },
          {
            "x": 50,
            "y": 60
          },
          {
            "x": 70,
            "y": 80
          },
          {
            "x": 90,
            "y": 100
          }
        ],
        "user_permission_summary": [
          {
            "name": "Alice Admin",
            "total_permissions": 7,
            "admin_access": true
          },
          {
            "name": "Bob Manager",
            "total_permissions": 5,
            "admin_access": false
          },
          {
            "name": "Carol Developer",
            "total_permissions": 4,
            "admin_access": false
          }
        ],
        "user_skill_counts": [
          {
            "name": "Alice Admin",
            "skill_count": 6
          },
          {
            "name": "Bob Manager",
            "skill_count": 6
          },
          {
            "name": "Carol Developer",
            "skill_count": 6
          }
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-10-performance-testing-with-nested-arrays",
      "qualified_step_id": "nested-array-filtering::step-10-performance-testing-with-nested-arrays",
      "step_name": "Performance testing with nested arrays",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "operation": "performance_nested_arrays",
          "large_matrix": [
            [
              1,
              2,
              3
            ],
            [
              4,
              5,
              6
            ],
            [
              7,
              8,
              9
            ],
            [
              10,
              11,
              12
            ]
          ],
          "test_metadata": {
            "total_arrays": 4,
            "total_elements": 12,
            "flatten_operations": 8
          }
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"performance_nested_arrays\",\"large_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"test_metadata\":{\"total_arrays\":4,\"total_elements\":12,\"flatten_operations\":8}}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 171\r\n\r\n{\"operation\":\"performance_nested_arrays\",\"large_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"test_metadata\":{\"total_arrays\":4,\"total_elements\":12,\"flatten_operations\":8}}",
        "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": "1015",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"performance_nested_arrays\",\"large_matrix\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\"test_metadata\":{\"total_arrays\":4,\"total_elements\":12,\"flatten_operations\":8}}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "171",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "large_matrix": [
              [
                1,
                2,
                3
              ],
              [
                4,
                5,
                6
              ],
              [
                7,
                8,
                9
              ],
              [
                10,
                11,
                12
              ]
            ],
            "operation": "performance_nested_arrays",
            "test_metadata": {
              "flatten_operations": 8,
              "total_arrays": 4,
              "total_elements": 12
            }
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 689,
        "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: 1015\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"performance_nested_arrays\\\",\\\"large_matrix\\\":[[1,2,3],[4,5,6],[7,8,9],[10,11,12]],\\\"test_metadata\\\":{\\\"total_arrays\\\":4,\\\"total_elements\\\":12,\\\"flatten_operations\\\":8}}\",\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\": \"171\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"large_matrix\": [\n      [\n        1,\n        2,\n        3\n      ],\n      [\n        4,\n        5,\n        6\n      ],\n      [\n        7,\n        8,\n        9\n      ],\n      [\n        10,\n        11,\n        12\n      ]\n    ],\n    \"operation\": \"performance_nested_arrays\",\n    \"test_metadata\": {\n      \"flatten_operations\": 8,\n      \"total_arrays\": 4,\n      \"total_elements\": 12\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": {
        "flatten_performance": 12,
        "processing_summary": {
          "flatten_operations": 8,
          "total_arrays": 4,
          "total_elements": 12
        }
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    },
    {
      "step_id": "step-11-nested-array-filtering-summary",
      "qualified_step_id": "nested-array-filtering::step-11-nested-array-filtering-summary",
      "step_name": "Nested array filtering summary",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "test_summary": "nested_array_filtering_examples",
          "techniques_demonstrated": [
            "basic_flatten_projections",
            "subarray_conditional_filtering",
            "multi_level_object_array_filtering",
            "product_catalog_nested_filtering",
            "matrix_operations",
            "time_series_filtering",
            "multi_level_combinations",
            "conditional_nested_filtering",
            "array_transformations",
            "performance_testing"
          ],
          "jmespath_features_used": [
            "flatten_projection_[]",
            "double_flatten_[][]",
            "conditional_filtering_with_nested",
            "array_element_access_[0]_[1]",
            "contains_with_flattened_arrays"
          ],
          "total_examples": 10
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"test_summary\":\"nested_array_filtering_examples\",\"techniques_demonstrated\":[\"basic_flatten_projections\",\"subarray_conditional_filtering\",\"multi_level_object_array_filtering\",\"product_catalog_nested_filtering\",\"matrix_operations\",\"time_series_filtering\",\"multi_level_combinations\",\"conditional_nested_filtering\",\"array_transformations\",\"performance_testing\"],\"jmespath_features_used\":[\"flatten_projection_[]\",\"double_flatten_[][]\",\"conditional_filtering_with_nested\",\"array_element_access_[0]_[1]\",\"contains_with_flattened_arrays\"],\"total_examples\":10}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 552\r\n\r\n{\"test_summary\":\"nested_array_filtering_examples\",\"techniques_demonstrated\":[\"basic_flatten_projections\",\"subarray_conditional_filtering\",\"multi_level_object_array_filtering\",\"product_catalog_nested_filtering\",\"matrix_operations\",\"time_series_filtering\",\"multi_level_combinations\",\"conditional_nested_filtering\",\"array_transformations\",\"performance_testing\"],\"jmespath_features_used\":[\"flatten_projection_[]\",\"double_flatten_[][]\",\"conditional_filtering_with_nested\",\"array_element_access_[0]_[1]\",\"contains_with_flattened_arrays\"],\"total_examples\":10}",
        "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": "1727",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"test_summary\":\"nested_array_filtering_examples\",\"techniques_demonstrated\":[\"basic_flatten_projections\",\"subarray_conditional_filtering\",\"multi_level_object_array_filtering\",\"product_catalog_nested_filtering\",\"matrix_operations\",\"time_series_filtering\",\"multi_level_combinations\",\"conditional_nested_filtering\",\"array_transformations\",\"performance_testing\"],\"jmespath_features_used\":[\"flatten_projection_[]\",\"double_flatten_[][]\",\"conditional_filtering_with_nested\",\"array_element_access_[0]_[1]\",\"contains_with_flattened_arrays\"],\"total_examples\":10}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "552",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "jmespath_features_used": [
              "flatten_projection_[]",
              "double_flatten_[][]",
              "conditional_filtering_with_nested",
              "array_element_access_[0]_[1]",
              "contains_with_flattened_arrays"
            ],
            "techniques_demonstrated": [
              "basic_flatten_projections",
              "subarray_conditional_filtering",
              "multi_level_object_array_filtering",
              "product_catalog_nested_filtering",
              "matrix_operations",
              "time_series_filtering",
              "multi_level_combinations",
              "conditional_nested_filtering",
              "array_transformations",
              "performance_testing"
            ],
            "test_summary": "nested_array_filtering_examples",
            "total_examples": 10
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1477,
        "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: 1727\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"test_summary\\\":\\\"nested_array_filtering_examples\\\",\\\"techniques_demonstrated\\\":[\\\"basic_flatten_projections\\\",\\\"subarray_conditional_filtering\\\",\\\"multi_level_object_array_filtering\\\",\\\"product_catalog_nested_filtering\\\",\\\"matrix_operations\\\",\\\"time_series_filtering\\\",\\\"multi_level_combinations\\\",\\\"conditional_nested_filtering\\\",\\\"array_transformations\\\",\\\"performance_testing\\\"],\\\"jmespath_features_used\\\":[\\\"flatten_projection_[]\\\",\\\"double_flatten_[][]\\\",\\\"conditional_filtering_with_nested\\\",\\\"array_element_access_[0]_[1]\\\",\\\"contains_with_flattened_arrays\\\"],\\\"total_examples\\\":10}\",\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\": \"552\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"jmespath_features_used\": [\n      \"flatten_projection_[]\",\n      \"double_flatten_[][]\",\n      \"conditional_filtering_with_nested\",\n      \"array_element_access_[0]_[1]\",\n      \"contains_with_flattened_arrays\"\n    ],\n    \"techniques_demonstrated\": [\n      \"basic_flatten_projections\",\n      \"subarray_conditional_filtering\",\n      \"multi_level_object_array_filtering\",\n      \"product_catalog_nested_filtering\",\n      \"matrix_operations\",\n      \"time_series_filtering\",\n      \"multi_level_combinations\",\n      \"conditional_nested_filtering\",\n      \"array_transformations\",\n      \"performance_testing\"\n    ],\n    \"test_summary\": \"nested_array_filtering_examples\",\n    \"total_examples\": 10\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": {
        "nested_filtering_results": {
          "jmespath_features_used": [
            "flatten_projection_[]",
            "double_flatten_[][]",
            "conditional_filtering_with_nested",
            "array_element_access_[0]_[1]",
            "contains_with_flattened_arrays"
          ],
          "techniques_demonstrated": [
            "basic_flatten_projections",
            "subarray_conditional_filtering",
            "multi_level_object_array_filtering",
            "product_catalog_nested_filtering",
            "matrix_operations",
            "time_series_filtering",
            "multi_level_combinations",
            "conditional_nested_filtering",
            "array_transformations",
            "performance_testing"
          ],
          "test_summary": "nested_array_filtering_examples",
          "total_examples": 10
        },
        "flatten_examples": [
          "basic_flatten_projections",
          "subarray_conditional_filtering",
          "multi_level_object_array_filtering",
          "product_catalog_nested_filtering",
          "matrix_operations",
          "time_series_filtering",
          "multi_level_combinations",
          "conditional_nested_filtering",
          "array_transformations",
          "performance_testing"
        ]
      },
      "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'}}"
        },
        "data-formatting-examples.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"
          ]
        },
        "data-formatting-examples.transformation_results": [
          "essential_field_extraction",
          "summary_reports",
          "catalog_views",
          "hierarchical_transformation",
          "csv_formatting",
          "api_response_formatting",
          "conditional_formatting"
        ],
        "dynamic-test-generation.generated_users": null,
        "dynamic-test-generation.dynamic_endpoints_tested": null,
        "dynamic-test-generation.test_summary": null,
        "parallel-execution.parallel_execution_effective": true,
        "parallel-execution.req1_duration": null,
        "parallel-execution.req2_duration": null,
        "parallel-execution.req3_duration": null,
        "array-filtering-examples.filtering_results": {
          "filter_types_demonstrated": [
            "status_filtering",
            "numeric_range_filtering",
            "string_pattern_filtering",
            "array_content_filtering",
            "multi_condition_filtering",
            "tag_based_filtering",
            "simple_array_filtering",
            "transformation_filtering",
            "advanced_scenarios"
          ],
          "test_summary": "array_filtering_examples",
          "total_examples": 10
        },
        "array-filtering-examples.query_examples": [
          "status_filtering",
          "numeric_range_filtering",
          "string_pattern_filtering",
          "array_content_filtering",
          "multi_condition_filtering",
          "tag_based_filtering",
          "simple_array_filtering",
          "transformation_filtering",
          "advanced_scenarios"
        ]
      }
    }
  ],
  "variables_captured": {},
  "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'}}"
    },
    "data-formatting-examples.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"
      ]
    },
    "data-formatting-examples.transformation_results": [
      "essential_field_extraction",
      "summary_reports",
      "catalog_views",
      "hierarchical_transformation",
      "csv_formatting",
      "api_response_formatting",
      "conditional_formatting"
    ],
    "dynamic-test-generation.generated_users": null,
    "dynamic-test-generation.dynamic_endpoints_tested": null,
    "dynamic-test-generation.test_summary": null,
    "parallel-execution.parallel_execution_effective": true,
    "parallel-execution.req1_duration": null,
    "parallel-execution.req2_duration": null,
    "parallel-execution.req3_duration": null,
    "array-filtering-examples.filtering_results": {
      "filter_types_demonstrated": [
        "status_filtering",
        "numeric_range_filtering",
        "string_pattern_filtering",
        "array_content_filtering",
        "multi_condition_filtering",
        "tag_based_filtering",
        "simple_array_filtering",
        "transformation_filtering",
        "advanced_scenarios"
      ],
      "test_summary": "array_filtering_examples",
      "total_examples": 10
    },
    "array-filtering-examples.query_examples": [
      "status_filtering",
      "numeric_range_filtering",
      "string_pattern_filtering",
      "array_content_filtering",
      "multi_condition_filtering",
      "tag_based_filtering",
      "simple_array_filtering",
      "transformation_filtering",
      "advanced_scenarios"
    ]
  },
  "suite_yaml_content": "suite_name: \"Nested Array Filtering and Flatten Projections\"\nnode_id: \"nested-array-filtering\"\ndescription: \"Comprehensive examples of filtering and manipulating nested arrays (arrays of arrays) using JMESPath flatten projections and advanced queries\"\nbase_url: \"{{httpbin_url}}\"\n\nmetadata:\n  priority: \"medium\"\n  tags: [\"nested-arrays\", \"flatten\", \"jmespath\", \"matrix\", \"advanced-filtering\"]\n  estimated_duration_ms: 12000\n\nvariables:\n  # Simple nested arrays (arrays of arrays)\n  number_matrix:\n    - [1, 2, 3]\n    - [4, 5, 6]\n    - [7, 8, 9]\n    - [10, 11, 12]\n\n  coordinate_pairs:\n    - [10, 20]\n    - [30, 40]\n    - [50, 60]\n    - [70, 80]\n    - [90, 100]\n\n  # Nested string arrays\n  category_groups:\n    - [\"electronics\", \"phones\", \"tablets\"]\n    - [\"clothing\", \"shirts\", \"pants\", \"shoes\"]\n    - [\"books\", \"fiction\", \"non-fiction\"]\n    - [\"sports\", \"football\", \"basketball\"]\n\n  # Complex nested structure - Users with multiple permission arrays\n  users_with_permissions:\n    - id: 1\n      name: \"Alice Admin\"\n      department: \"IT\"\n      permission_groups:\n        - [\"user:read\", \"user:write\", \"user:delete\"]\n        - [\"system:admin\", \"system:config\"]\n        - [\"reports:view\", \"reports:create\"]\n      skill_categories:\n        - [\"programming\", \"javascript\", \"python\"]\n        - [\"devops\", \"docker\", \"kubernetes\"]\n    - id: 2\n      name: \"Bob Manager\"\n      department: \"Sales\"\n      permission_groups:\n        - [\"user:read\", \"user:write\"]\n        - [\"sales:view\", \"sales:edit\"]\n        - [\"reports:view\"]\n      skill_categories:\n        - [\"management\", \"team-lead\", \"strategy\"]\n        - [\"sales\", \"crm\", \"negotiation\"]\n    - id: 3\n      name: \"Carol Developer\"\n      department: \"Engineering\"\n      permission_groups:\n        - [\"user:read\"]\n        - [\"code:read\", \"code:write\"]\n        - [\"deploy:staging\"]\n      skill_categories:\n        - [\"programming\", \"java\", \"spring\"]\n        - [\"database\", \"sql\", \"mongodb\"]\n\n  # Product catalog with nested categories and tags\n  product_catalog:\n    - id: \"PROD-001\"\n      name: \"Smartphone\"\n      price: 599.99\n      category_hierarchy: [\"electronics\", \"mobile\", \"smartphones\"]\n      tag_groups:\n        - [\"premium\", \"flagship\"]\n        - [\"5g\", \"wireless-charging\"]\n        - [\"camera\", \"photography\"]\n      feature_matrix:\n        - [\"display\", \"6.1inch\", \"oled\"]\n        - [\"camera\", \"triple\", \"48mp\"]\n        - [\"battery\", \"4000mah\", \"fast-charge\"]\n    - id: \"PROD-002\"\n      name: \"Laptop\"\n      price: 1299.99\n      category_hierarchy: [\"electronics\", \"computers\", \"laptops\"]\n      tag_groups:\n        - [\"professional\", \"business\"]\n        - [\"performance\", \"gaming\"]\n        - [\"portable\", \"lightweight\"]\n      feature_matrix:\n        - [\"processor\", \"intel-i7\", \"8-cores\"]\n        - [\"memory\", \"16gb\", \"ddr4\"]\n        - [\"storage\", \"512gb\", \"ssd\"]\n\n  # Time series data (nested arrays representing data points)\n  time_series_data:\n    - name: \"CPU Usage\"\n      data_points:\n        - [1640995200, 45.2]  # [timestamp, value]\n        - [1640995260, 52.1]\n        - [1640995320, 48.7]\n        - [1640995380, 61.3]\n    - name: \"Memory Usage\"\n      data_points:\n        - [1640995200, 68.5]\n        - [1640995260, 71.2]\n        - [1640995320, 69.8]\n        - [1640995380, 74.1]\n\nexports: [\"nested_filtering_results\", \"flatten_examples\"]\n\nsteps:\n  # 1. Basic flatten operations on simple nested arrays\n  - name: \"Basic flatten operations\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"basic_flatten\"\n        number_matrix: \"{{number_matrix}}\"\n        coordinates: \"{{coordinate_pairs}}\"\n        categories: \"{{category_groups}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Flatten number matrix into single array\n      flattened_numbers: \"body.json.number_matrix[]\"\n      # Flatten coordinates\n      all_coordinates: \"body.json.coordinates[]\"\n      # Flatten all categories\n      all_categories: \"body.json.categories[]\"\n      # Count total elements after flatten\n      total_numbers: \"body.json.number_matrix[] | length(@)\"\n\n  # 2. Filter sub-arrays based on conditions\n  - name: \"Filter sub-arrays by conditions\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"filter_subarrays\"\n        matrix: \"{{number_matrix}}\"\n        coordinates: \"{{coordinate_pairs}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Filter sub-arrays where first element > 5\n      rows_starting_gt5: \"body.json.matrix[?[0] > `5`]\"\n      # Filter coordinates where X coordinate > 50\n      high_x_coordinates: \"body.json.coordinates[?[0] > `50`]\"\n      # Filter coordinates where Y coordinate is even (simulated with mod logic)\n      even_y_coordinates: \"body.json.coordinates[?[1] == `20` || [1] == `40` || [1] == `60` || [1] == `80` || [1] == `100`]\"\n      # Get second element of each sub-array\n      second_elements: \"body.json.matrix[*][1]\"\n\n  # 3. Complex filtering with nested object arrays\n  - name: \"Filter nested arrays in objects\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"filter_nested_objects\"\n        users: \"{{users_with_permissions}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Flatten all permissions from all users\n      all_permissions: \"body.json.users[*].permission_groups[][]\"\n      # Get all skills flattened\n      all_skills: \"body.json.users[*].skill_categories[][]\"\n      # Find users with admin permissions\n      users_with_admin: \"body.json.users[?contains(permission_groups[][], 'system:admin')]\"\n      # Find programming skills across all users\n      programming_skills: \"body.json.users[*].skill_categories[?contains(@, 'programming')][]\"\n      # Get IT department permissions only\n      it_permissions: \"body.json.users[?department == 'IT'][*].permission_groups[][]\"\n\n  # 4. Product catalog nested filtering\n  - name: \"Product catalog nested array filtering\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"product_nested_filtering\"\n        products: \"{{product_catalog}}\"\n    assert:\n      status_code: 200\n    capture:\n      # All category hierarchies flattened\n      all_categories: \"body.json.products[*].category_hierarchy[]\"\n      # All tags flattened\n      all_tags: \"body.json.products[*].tag_groups[][]\"\n      # Find electronics products\n      electronics_products: \"body.json.products[?contains(category_hierarchy, 'electronics')]\"\n      # Products with premium tags\n      premium_products: \"body.json.products[?contains(tag_groups[][], 'premium')]\"\n      # Feature specifications flattened\n      all_features: \"body.json.products[*].feature_matrix[][]\"\n      # Camera-related features\n      camera_features: \"body.json.products[*].feature_matrix[?contains(@, 'camera')]\"\n\n  # 5. Advanced matrix operations\n  - name: \"Advanced matrix filtering and operations\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"matrix_operations\"\n        matrix: \"{{number_matrix}}\"\n        products: \"{{product_catalog}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Get diagonal elements (simulated)\n      first_column: \"body.json.matrix[*][0]\"\n      # Get last element of each row\n      last_elements: \"body.json.matrix[*][-1]\"\n      # Filter rows where sum > 15 (simulated by checking if any element > 5)\n      high_sum_rows: \"body.json.matrix[?[0] > `5` || [1] > `5` || [2] > `5`]\"\n      # Product feature matrix operations\n      processor_specs: \"body.json.products[*].feature_matrix[?[0] == 'processor']\"\n      memory_specs: \"body.json.products[*].feature_matrix[?[0] == 'memory']\"\n\n  # 6. Time series nested array filtering\n  - name: \"Time series data filtering\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"time_series_filtering\"\n        series: \"{{time_series_data}}\"\n    assert:\n      status_code: 200\n    capture:\n      # All timestamps flattened\n      all_timestamps: \"body.json.series[*].data_points[*][0]\"\n      # All values flattened\n      all_values: \"body.json.series[*].data_points[*][1]\"\n      # CPU usage data points only\n      cpu_data: \"body.json.series[?name == 'CPU Usage'].data_points[]\"\n      # High value data points (value > 60)\n      high_values: \"body.json.series[*].data_points[?[1] > `60`]\"\n      # Recent timestamps (simulated by checking specific timestamps)\n      recent_data: \"body.json.series[*].data_points[?[0] > `1640995300`]\"\n\n  # 7. Multi-level filtering combinations\n  - name: \"Multi-level filtering combinations\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"multi_level_filtering\"\n        users: \"{{users_with_permissions}}\"\n        products: \"{{product_catalog}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Engineering users with specific skills\n      eng_programming_skills: \"body.json.users[?department == 'Engineering'][*].skill_categories[?contains(@, 'programming')][]\"\n      # Admin permissions from IT users\n      it_admin_permissions: \"body.json.users[?department == 'IT'][*].permission_groups[?contains(@, 'admin')][]\"\n      # Electronics with camera features\n      electronics_camera: \"body.json.products[?contains(category_hierarchy, 'electronics')][*].feature_matrix[?contains(@, 'camera')]\"\n      # Premium electronics tags\n      premium_electronics_tags: \"body.json.products[?contains(category_hierarchy, 'electronics') && contains(tag_groups[][], 'premium')][*].tag_groups[][]\"\n\n  # 8. Conditional nested filtering\n  - name: \"Conditional nested array filtering\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"conditional_nested_filtering\"\n        matrix: \"{{number_matrix}}\"\n        users: \"{{users_with_permissions}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Rows with all elements > 5\n      all_gt5_rows: \"body.json.matrix[?[0] > `5` && [1] > `5` && [2] > `5`]\"\n      # Users with both read and write permissions\n      read_write_users: \"body.json.users[?contains(permission_groups[][], 'user:read') && contains(permission_groups[][], 'user:write')]\"\n      # Users with programming AND devops skills\n      fullstack_users: \"body.json.users[?contains(skill_categories[][], 'programming') && contains(skill_categories[][], 'devops')]\"\n\n  # 9. Array transformation and reshaping\n  - name: \"Array transformation with nested structures\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"array_transformation\"\n        coordinates: \"{{coordinate_pairs}}\"\n        users: \"{{users_with_permissions}}\"\n    assert:\n      status_code: 200\n    capture:\n      # Transform coordinates to objects\n      coordinate_objects: \"body.json.coordinates[*].{x: [0], y: [1]}\"\n      # Create user permission summary\n      user_permission_summary: \"body.json.users[*].{name: name, total_permissions: length(permission_groups[][]), admin_access: contains(permission_groups[][], 'system:admin')}\"\n      # Skill count by user\n      user_skill_counts: \"body.json.users[*].{name: name, skill_count: length(skill_categories[][])}\"\n\n  # 10. Performance with large nested arrays\n  - name: \"Performance testing with nested arrays\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        operation: \"performance_nested_arrays\"\n        large_matrix: \"{{number_matrix}}\"\n        test_metadata:\n          total_arrays: 4\n          total_elements: 12\n          flatten_operations: 8\n    assert:\n      status_code: 200\n    capture:\n      # Performance metrics\n      flatten_performance: \"body.json.large_matrix[] | length(@)\"\n      processing_summary: \"body.json.test_metadata\"\n\n  # 11. Final summary\n  - name: \"Nested array filtering summary\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        test_summary: \"nested_array_filtering_examples\"\n        techniques_demonstrated:\n          - \"basic_flatten_projections\"\n          - \"subarray_conditional_filtering\"\n          - \"multi_level_object_array_filtering\"\n          - \"product_catalog_nested_filtering\"\n          - \"matrix_operations\"\n          - \"time_series_filtering\"\n          - \"multi_level_combinations\"\n          - \"conditional_nested_filtering\"\n          - \"array_transformations\"\n          - \"performance_testing\"\n        jmespath_features_used:\n          - \"flatten_projection_[]\"\n          - \"double_flatten_[][]\"\n          - \"conditional_filtering_with_nested\"\n          - \"array_element_access_[0]_[1]\"\n          - \"contains_with_flattened_arrays\"\n        total_examples: 10\n    assert:\n      status_code: 200\n    capture:\n      nested_filtering_results: \"body.json\"\n      flatten_examples: \"body.json.techniques_demonstrated\""
}
Flow Test Engine
Report generated on 10/19/2025, 10:28:45 AM
© 2025 Flow Test Engine. Dynamic Reporting System.