{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/chatCompletionRequestMessageSystem", "title": "chatCompletionRequestMessageSystem", "allOf": [ { "$ref": "#/components/schemas/chatCompletionRequestMessage" }, { "type": "object", "properties": { "content": { "type": "string", "description": "The contents of the message.", "nullable": true } } } ], "required": [ "content" ] }