{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Detail", "title": "Detail", "type": "object", "properties": { "id": { "type": "string", "readOnly": true }, "changes": { "type": "array", "items": { "$ref": "#/components/schemas/Change" } }, "merge": { "$ref": "#/components/schemas/Merge" }, "trigger": { "$ref": "#/components/schemas/Trigger" }, "name": { "type": "string", "readOnly": true }, "short_id": { "type": "string", "readOnly": true }, "type": { "type": "string", "readOnly": true } }, "required": [ "id", "name", "short_id", "type" ] }