{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StatusMigration", "title": "StatusMigration", "additionalProperties": true, "description": "The mapping of old to new status ID.", "properties": { "newStatusReference": { "description": "The new status ID.", "type": "string" }, "oldStatusReference": { "description": "The old status ID.", "type": "string" } }, "required": [ "newStatusReference", "oldStatusReference" ], "type": "object" }