{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "team",
        "stats",
        "values"
      ]
    },
    "data": {},
    "$schema": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "type",
    "data"
  ]
}