{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/openssl/ciphers.json",
  "title": "openssl/ciphers",
  "description": "openssl ciphers -v",
  "x-jsonize": {
    "definition": "openssl/ciphers",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "protocol": {
        "type": "string"
      },
      "kx": {
        "type": "string"
      },
      "au": {
        "type": "string"
      },
      "enc": {
        "type": "string"
      },
      "mac": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "protocol",
      "kx",
      "au",
      "enc",
      "mac"
    ]
  }
}
