{
    "$id": "https://example.com/schema.json",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "description": "test schema",
    "type": "object",
    "patternProperties": {
        "^[\\w_]+$": {
            "type": "object",
            "required": [
                "uow_active_days_limit"
            ],
            "properties": {
                "uow_active_days_limit": {
                    "type": "integer"
                }
            }
        }
    }
}
