{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "rules"
  ], 
  "type": "object", 
  "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", 
  "properties": {
    "rules": {
      "items": {
        "$ref": "_definitions.json#/definitions/v1alpha1.PolicyRule"
      }, 
      "type": [
        "array", 
        "null"
      ], 
      "description": "Rules holds all the PolicyRules for this Role"
    }, 
    "metadata": {
      "description": "Standard object's metadata.", 
      "$ref": "_definitions.json#/definitions/v1.ObjectMeta"
    }
  }
}