{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/gio/mime.json",
  "title": "gio/mime",
  "description": "gio mime TYPE, the default, registered and recommended applications",
  "x-jsonize": {
    "definition": "gio/mime",
    "version": 1
  },
  "type": "object",
  "properties": {
    "default": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string"
        },
        "application": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "type",
        "application"
      ]
    },
    "registered": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "application": {
            "type": "string"
          }
        },
        "required": [
          "application"
        ]
      }
    },
    "recommended": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "application": {
            "type": "string"
          }
        },
        "required": [
          "application"
        ]
      }
    }
  },
  "required": [
    "default",
    "registered",
    "recommended"
  ]
}
