schemars 0.6.0-alpha

Generate JSON Schemas from Rust code
Documentation
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MyEnum",
  "anyOf": [
    {
      "enum": [
        "Included2"
      ]
    },
    {
      "type": "object",
      "required": [
        "Included1"
      ],
      "properties": {
        "Included1": {
          "type": "number",
          "format": "float"
        }
      }
    }
  ]
}