model call count: 1

mapped record: TicketTriage[category=billing, priority=HIGH, requiresEscalation=true, suggestedActions=[Refund the duplicate charge, Reply within 4 hours]]

JSON schema BeanOutputConverter generated for TicketTriage:
{
  "$schema" : "https://json-schema.org/draft/2020-12/schema",
  "type" : "object",
  "properties" : {
    "category" : {
      "type" : "string"
    },
    "priority" : {
      "type" : "string",
      "enum" : [ "LOW", "MEDIUM", "HIGH", "CRITICAL" ]
    },
    "requiresEscalation" : {
      "type" : "boolean"
    },
    "suggestedActions" : {
      "type" : "array",
      "items" : {
        "type" : "string"
      }
    }
  },
  "required" : [ "category", "priority", "requiresEscalation", "suggestedActions" ],
  "additionalProperties" : false
}