{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/ssh-keygen/fingerprint.json",
  "title": "ssh-keygen/fingerprint",
  "description": "ssh-keygen -l public key fingerprints",
  "x-jsonize": {
    "definition": "ssh-keygen/fingerprint",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "bits": {
        "type": "integer"
      },
      "fingerprint": {
        "type": "string"
      },
      "comment": {
        "type": "string"
      },
      "type": {
        "type": "string"
      }
    },
    "required": [
      "bits",
      "fingerprint",
      "comment",
      "type"
    ]
  }
}
