{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"$ref": "#/definitions/parserOptions",
	"definitions": {
		"parserOptions": {
			"type": "object",
			"properties": {
				"request_headers": {
					"type": "object",
					"description": "A list of HTTP headers to send with each cache warmup request.",
					"additionalProperties": {
						"type": "string"
					}
				},
				"request_options": {
					"type": "object",
					"description": "Additional Guzzle request options used for each cache warmup request.",
					"$ref": "#/definitions/requestOptions"
				}
			},
			"additionalProperties": false
		}
	}
}
