{
  "$id": "https://example.com/schema.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "brandwatch config",
  "type": "object",
  "patternProperties": {
    "^[\\w_]+$": {
      "oneOf": [
        {"type": "string"},
        {"type": "number"}
      ]
    }
  }
}
