{
    "$ref": "#/definitions/AssemblyRedirect",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
        "AssemblyRedirect": {
            "properties": {
                "compression": {
                    "const": "gzip",
                    "description": "The compression applied to the target file, if any.",
                    "type": "string"
                },
                "filename": {
                    "description": "The name of the file the assembly is redirected to.",
                    "type": "string"
                },
                "schema": {
                    "const": "jsii/file-redirect",
                    "type": "string"
                }
            },
            "required": [
                "filename",
                "schema"
            ],
            "type": "object"
        }
    }
}

