{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://electrode.io/schemas/store-config.json",
    "properties": {
        "accessKeys": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "server": {
            "type": "object",
            "properties": {
                "host": {
                    "type": "string",
                    "format": "hostname"
                },
                "port": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 65535
                }
            }
        },
        "store": {
            "type": "object",
            "properties": {
                "path": {
                    "type": "string"
                }
            }
        }
    }
}
