{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "GetGPTaskDefinitionToolOutputSchema",
    "type": "object",
    "properties": {
        "inputSchema": {
        	"type": "object",
            "description": "JSON schema describing task inputs."
        },
        "outputSchema": {
        	"type": "object",
            "description": "JSON schema describing task outputs."
        },
        "description": {
        	"type": "string",
            "description": "The description of the task that can be used to describe what the task does."
        }
    },
    "required": [
        "inputSchema",
        "outputSchema"
    ]
}