{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GenaiContent", "title": "GenaiContent", "properties": { "content": { "type": "string" }, "role": { "enum": [ "SYSTEM", "USER", "ASSISTANT" ], "type": "string", "x-speakeasy-unknown-values": "allow" } }, "required": [ "content" ], "type": "object" }