To generate schema, we recommend using our custom JSON generating GPT:

https://chat.openai.com/g/g-xoghs2Iwd-json-schema-helper

You can even give it an image!

Here is a simple example JSON schema:

{
    "type": "object",
    "properties": {
        "employeeName": {
            "type": "string",
            "description": "Full name of the employee"
        },
        "employerID": {
            "type": "string",
            "description": "Employer Identification Number (EIN)"
        },
        "wages": {
            "type": "number",
            "description": "Total wages, tips, and other compensation"
        },
        "federalIncomeTaxWithheld": {
            "type": "number",
            "description": "Total federal income tax withheld from wages"
        },
        "socialSecurityWages": {
            "type": "number",
            "description": "Total wages subject to social security tax"
        }
    },
    "required": ["employeeName", "employerID", "wages", "federalIncomeTaxWithheld", "socialSecurityWages"]
}

Language
Authorization
Bearer
Click Try It! to start a request and see the response here!