{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "https://raw.githubusercontent.com/todogroup/repolinter/master/fixes/file-create-config.json",
    "type": "object",
    "properties": {
        "file": { "type": "string" },
        "text": {
            "oneOf": [
                { "type": "string" },
                {
                    "type": "object",
                    "additionalProperties": false,
                    "properties": { "url": { "type": "string" } }
                },
                {
                    "type": "object",
                    "additionalProperties": false,
                    "properties": { "file": { "type": "string" } }
                }
            ]
        },
        "replace": {
          "type": "boolean",
          "default": false
        }
    },
    "required": ["file", "text"]
}
