{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MessageInteractionResponse", "title": "MessageInteractionResponse", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/SnowflakeType" }, "type": { "$ref": "#/components/schemas/InteractionTypes" }, "name": { "type": "string" }, "user": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/UserResponse" } ] }, "name_localized": { "type": [ "string", "null" ] } }, "required": [ "id", "type", "name" ] }