{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "enum/yes-or-no.schema.json",
  "title": "yes-or-no",
  "$defs": {
    "yes-or-no": {
      "type": "string",
      "enum": [
        "yes",
        "no"
      ],
      "description": " Ja oder Nein Antwort"
    }
  }
}
