Versioning for changing schema attribute names

When changing attribute names inside the properties of a JSON schema.
How is the versioning then?

From:

“Provider”: {
“type”: “string”,
“maxLength”: 11
},

to:

“provider”: {
“type”: “string”,
“maxLength”: 11
},

Is this handled as a MODEL change?

Hi @julianDii,

Unfortunately yes - this is MODEL bump. Though I believe that Redshift table migration won’t be necessary.

Thanks, @anton for the fast reply.

Is there a source for some more examples for different cases?

I think this is can be used as a very incomplete list of possible migrations (feel free to add!). Though I would recommend you to read Introductory post as it provides more general understanding of a problem.

The introductory post was where I took my assumptions from. Thanks for the additional information.