TypeSchema
Home
Specification
Generator
Integration
Ecosystem
Tools
History
TypeSchema
/
Tools
/ Changelog
Changelog
Through this form you can generate a changelog between two TypeSchema versions.
Left
{ "definitions": { "Student": { "type": "struct", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "age": { "type": "integer" } } } }, "root": "Student" }
Right
{ "definitions": { "Student": { "description": "Represents a student", "type": "struct", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "gender": { "type": "string" }, "age": { "type": "string" } } } }, "root": "Student" }