{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"$ref": "#/definitions/clientOptions",
	"definitions": {
		"clientOptions": {
			"type": "object",
			"anyOf": [
				{
					"properties": {
						"handler": {
							"type": "string",
							"description": "Callable function that transfers HTTP requests over the wire."
						}
					},
					"additionalProperties": false
				},
				{
					"$ref": "#/definitions/requestOptions"
				}
			]
		}
	}
}
