{
  "$id": "https://schemas.sand.binaryedge.io/minion/modules/jarm",
  "title": "JARM Module Output Body",
  "type": "object",
  "properties": {
    "jarm": {
      "type": "string"
    },
    "jarm_hash": {
      "type": "string",
      "pattern": "[0-9a-f]{62}"
    },
    "details": {
      "$ref": "#/$defs/details"
    }
  },
  "required": [
    "jarm",
    "jarm_hash"
  ],
  "additionalProperties": false,
  "$defs": {
    "details": {
      "type": "object",
      "properties": {
        "highest_ssl_version_supported": {
          "type": "string"
        },
        "lowest_ssl_version_supported": {
          "type": "string"
        },
        "supported_cipher_suites": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    }
  }
}
