{
  "description": "TCPSocketAction describes an action based on opening a socket",
  "properties": {
    "host": {
      "description": "Optional: Host name to connect to, defaults to the pod IP.",
      "type": [
        "string",
        "null"
      ]
    },
    "port": {
      "oneOf": [
        {
          "type": [
            "string",
            "null"
          ]
        },
        {
          "type": [
            "integer",
            "null"
          ]
        }
      ]
    }
  },
  "required": [
    "port"
  ],
  "type": "object",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}