Created
March 6, 2026 03:30
-
-
Save alea12/401045c3f2d4e72c5c7324bbe30ee843 to your computer and use it in GitHub Desktop.
schema.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "title": "EmailCategorization", | |
| "type": "object", | |
| "properties": { | |
| "body": { | |
| "type": "string", | |
| "description": "The full body message of the email." | |
| }, | |
| "category": { | |
| "type": "string", | |
| "enum": [ | |
| "turnaround", | |
| "walk-in", | |
| "hr", | |
| "other" | |
| ], | |
| "description": "The specific classification for the email content." | |
| } | |
| }, | |
| "required": ["body", "category"], | |
| "additionalProperties": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment