The description for the delete response operation is missing the response schema:
responses:
'200':
description: OK
Based on the provided example, the expectation would be something like:
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
id:
type: string
deleted:
type: boolean
object:
type: string
enum:
- response.deleted
x-stainless-const: true
required:
- id
- object
- deleted