{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "paths"
  ], 
  "type": "object", 
  "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", 
  "properties": {
    "paths": {
      "items": {
        "$ref": "_definitions.json#/definitions/io.k8s.kubernetes.pkg.apis.extensions.v1beta1.HTTPIngressPath"
      }, 
      "type": [
        "array", 
        "null"
      ], 
      "description": "A collection of paths that map requests to backends."
    }
  }
}