{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "key"
  ], 
  "type": "object", 
  "description": "SecretKeySelector selects a key of a Secret.", 
  "properties": {
    "optional": {
      "type": "boolean", 
      "description": "Specify whether the Secret or it's key must be defined"
    }, 
    "name": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names"
    }, 
    "key": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "The key of the secret to select from.  Must be a valid secret key."
    }
  }
}