{
    "$id": "http://soundon.api/file/upload",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "required": [
        "public",
        "type"
    ],
    "properties": {
        "path": {
            "type": "string"
        },
        "type": {
            "type": "string",
            "enum": ["coverImage", "episodeAudio"]
        },
        "public": {
            "type": "boolean"
        }
    }
}
