Define Output Schema

The output schema defines the structure of the data you want to receive after processing. This schema tells the platform what information to extract and how to format it.

Steps:

  1. Create a New Schema:

    • In the "Schema Builder," select "Create New Schema."

    • Choose "Output Schema."

  2. Define Output Fields:

    • Add fields that represent the information you want to extract.

    • Field Examples:

      • damage_location (Multi-Select Picklist)

      • damage_severity (Picklist)

      • damage_type (Picklist)

      • materials_affected (Multi-Select Picklist)

      • requires_immediate_attention (Boolean)

      • structural_integrity_concern (Boolean)

      • visible_damage (Multi-Select Picklist)

  3. Set Field Attributes:

    • Possible Values: Define options for picklists.

    • Descriptions: Provide clear explanations for each field.

  4. Review and Save:

    • Ensure all fields are correctly defined.

    • Click "Save" to store your output schema.

{
  "Damage Location": {
    "field": "damage_location",
    "type": "multi-select-picklist",
    "description": "Location of the damage on the property",
    "possible_values": ["Roof", "Walls", "Foundation", "Windows/Doors", "Flooring", "Plumbing", "Electrical System", "Landscaping", "Garage"]
  },
  "Damage Severity": {
    "field": "damage_severity",
    "type": "picklist",
    "description": "The severity level of the damage",
    "possible_values": ["Minor", "Moderate", "Severe", "Total Loss"]
  },
  "Damage Type": {
    "field": "damage_type",
    "type": "picklist",
    "description": "The type of damage sustained by the property",
    "possible_values": ["Fire", "Water", "Wind", "Hail", "Earthquake", "Vandalism", "Structural Damage"]
  },
  "Requires Immediate Attention": {
    "field": "requires_immediate_attention",
    "type": "boolean",
    "description": "Indicates if the damage requires immediate attention"
  }
}

Last updated