{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "/search/google_cse.json",
    "description": "Enable Google CSE\nhttps://cse.google.com/cse/create/new",
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "const": "google_cse"
        },
        "cx": {
            "type": "string",
            "description": "Google CSE cx value"
        }
    },
    "required": [
        "type",
        "cx"
    ]
}