{
  "$schema": "http://json-schema.org/schema#", 
  "type": "object", 
  "description": "TokenReviewStatus is the result of the token authentication request.", 
  "properties": {
    "authenticated": {
      "type": "boolean", 
      "description": "Authenticated indicates that the token was associated with a known user."
    }, 
    "user": {
      "description": "User is the UserInfo associated with the provided token.", 
      "$ref": "_definitions.json#/definitions/v1beta1.UserInfo"
    }, 
    "error": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Error indicates that the token couldn't be checked"
    }
  }
}