{
  // Given: A segment for new users with an EQUAL condition checking if age equals "1"
  // When: An evaluation context with an identity that has age 1 (integer)
  // Then: The context should be considered part of the segment due to type conversion
  "$schema": "https://raw.githubusercontent.com/Flagsmith/engine-test-data/refs/tags/v2.0.0/schema.json",
  "context": {
    "environment": {
      "key": "key",
      "name": "Environment"
    },
    "identity": {
      "identifier": "test_user",
      "key": "key_test_user",
      "traits": {
        "age": 1
      }
    },
    "segments": {
      "1": {
        "key": "1",
        "name": "new_users_segment",
        "rules": [
          {
            "type": "ALL",
            "conditions": [
              {
                "operator": "EQUAL",
                "property": "age",
                "value": "1"
              }
            ]
          }
        ]
      }
    }
  },
  "result": {
    "flags": {},
    "segments": [
      {
        "name": "new_users_segment"
      }
    ]
  }
}