{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/ssh-keyscan/known-hosts.json",
  "title": "ssh-keyscan/known-hosts",
  "description": "ssh-keyscan host key lines in known_hosts format",
  "x-jsonize": {
    "definition": "ssh-keyscan/known-hosts",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "host": {
        "type": "string"
      },
      "type": {
        "type": "string"
      },
      "key": {
        "type": "string"
      }
    },
    "required": [
      "host",
      "type",
      "key"
    ]
  }
}
