{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "required": [
    "test_id",
    "locale",
    "dimension",
    "target_url",
    "result"
  ],
  "properties": {
    "test_id": {
      "type": "string"
    },
    "locale": {
      "type": "string"
    },
    "dimension": {
      "type": "string"
    },
    "target_url": {
      "type": "string",
      "format": "uri"
    },
    "result": {
      "enum": [
        "not_collected",
        "0",
        "1",
        "2"
      ]
    }
  }
}
