{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://alec016.github.io/Custom-Machinery/Json%20Schema/src/main/resources/schemas/custom_machinery_recipe.json",
  "allOf": [
    {
      "if": {
        "required": ["output"]
      },
      "then": {
        "$ref": "https://alec016.github.io/Custom-Machinery/Json%20Schema/src/main/resources/schemas/craft_recipe.json"
      }
    },
    {
      "if": {
        "required": ["time"]
      },
      "then": {
        "$ref": "https://alec016.github.io/Custom-Machinery/Json%20Schema/src/main/resources/schemas/machine_recipe.json"
      }
    }
  ]
}