{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/deleteThreadResponse", "title": "deleteThreadResponse", "type": "object", "properties": { "id": { "type": "string" }, "deleted": { "type": "boolean" }, "object": { "type": "string", "enum": [ "thread.deleted" ], "x-ms-enum": { "name": "DeleteThreadResponseObjectState", "modelAsString": true, "values": [ { "value": "thread.deleted", "description": "The delete thread response object state which is `thread.deleted`" } ] } } }, "required": [ "id", "object", "deleted" ] }