TypeSchema
Home
Specification
Generator
Developer
Ecosystem
FAQ
Tools
JSON Schema
OpenAPI
JSON
Changelog
Hash
TypeSchema
/ Generator / Changelog
Changelog
Through this form you can generate a changelog between two TypeSchema versions
Left
{ "definitions": { "Student": { "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "age": { "type": "integer" } } } }, "$ref": "Student" }
Right
{ "definitions": { "Student": { "description": "Represents a student", "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "gender": { "type": "string" }, "age": { "type": "string" } } } }, "$ref": "Student" }