{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChangeManagerStatus", "title": "ChangeManagerStatus", "type": "object", "properties": { "locked": { "type": "boolean", "description": "Whether the configuration is locked for editing" }, "lockOwner": { "type": "string", "description": "The user who holds the edit lock" }, "hasChanges": { "type": "boolean", "description": "Whether there are pending changes" }, "mergeNeeded": { "type": "boolean", "description": "Whether a merge is needed before activation" } } }