podhmo
podhmo
https://github.com/marshmallow-code/marshmallow/issues/120
using http://mypy.readthedocs.io/en/stable/kinds_of_types.html#typeddict
https://gist.github.com/podhmo/4df73990ac9f3794a8cc396bec2c948c e.g. name is required. (should) ```yaml definitions: person0: description: original (no. 1) properties: name: type: string person: allOf: - $ref: "#/definitions/person0" description: no. 4 required: ["name"] properties: age: type:...