Skip to main content
An output is a file generated from a parsed SOV. Each output is produced in one output format. The same parsed data can be generated in as many formats as your organization has enabled, from structured JSON to Excel workbooks to catastrophe-model import files. This page covers how to request formats, how to discover which ones your account can use, and the formats available to every account. For where outputs fit in the processing lifecycle, see How Ping Processes SOVs.

Requesting output formats

Request formats at parse time or any time afterward. Format identifiers are case-insensitive on input. Use the exact output_format value returned by List Available Output Formats as the canonical spelling. Requesting a format your organization has not enabled returns a 400 whose message lists the formats you may request.

Discovering available formats

The set of formats available to you is configured per organization, so List Available Output Formats is the authoritative source for what you can request. Scope the lookup with one of sovid, division_uuid, or team_uuid. When none is supplied, the endpoint uses your default team and division. Precedence is sovid > division_uuid > team_uuid > user default. Each item in the response describes one format:
FieldMeaning
output_formatThe value to pass when requesting this format.
labelThe human-readable label that appears on the generated output.
output_extensionThe file extension the output uses. Can be null.
is_publictrue for the public formats listed below, available to every account. false for other formats configured for your account.
The formats below have is_public set to true and are available to every account. Your account may also return formats with is_public set to false, such as org-specific workbooks. Call the endpoint to see your full set.

Formats available to every account

Structured data

output_formatLabelFile typeUse it for
JSONJSONJSONThe normalized SOV as structured data. This is the primary machine-readable output and the one most integrations consume. The JSON Format Specification documents its structure.
DEBUGJSONDEBUGJSONJSONA verbose variant of the JSON output that adds diagnostic parsing detail. Use it when you need to inspect how the source was interpreted.

Excel workbooks

output_formatLabelFile typeUse it for
AUDITORPing SOVExcel (.xlsx)A review-oriented workbook with a summary sheet, for checking the parsed data before you use it.
AIRSCRUBBERPing SOVExcel (.xlsm)A workbook of the scrubbed SOV with AIR construction and occupancy coding.
RMSSCRUBBERRMS ScrubberExcel (.xlsm)The same workbook with RMS construction and occupancy coding.
CATSCRUBBERPing SOVExcel (.xlsm)A workbook combining AIR and RMS coding in one file.
AIRModelerAIR ModelerExcel (.xlsm)A workbook laid out for AIR modeling.
RMSModelerRMS ModelerExcel (.xlsm)A workbook laid out for RMS modeling.

CSV exports

output_formatLabelFile typeUse it for
AIRPolicyAIR Policy CSVCSVPolicy-level rows formatted for AIR catastrophe-model import.
AIRLocationAIR Location CSVCSVLocation-level rows formatted for AIR catastrophe-model import.
RMSPolicyRMS Policy CSVCSVPolicy-level rows formatted for RMS catastrophe-model import.
RMSLocationRMS Location CSVCSVLocation-level rows formatted for RMS catastrophe-model import.
OEDPolicyOED Policy CSVCSVPolicy-level rows in the Open Exposure Data (OED) standard.
OEDLocationOED Location CSVCSVLocation-level rows in the Open Exposure Data (OED) standard.
RMSAccountResultsRMS Analysis Account ResultsCSVAccount-level results from RMS analysis.
RMSLocationResultsRMS Analysis Location ResultsCSVLocation-level results from RMS analysis.
CDRCDR CSVCSVLloyd’s Core Data Record (CDR) format.
Several Excel workbooks share the label Ping SOV. The output_format value, not the label, is what distinguishes them when you request a file.

Formats specific to your organization

Your organization may have additional formats configured for its workflow, such as custom workbook layouts or partner-specific exports. These appear in List Available Output Formats with is_public set to false, and you request them the same way as any other format. Because they are configured per organization, the endpoint is the only reliable way to see the complete set available to your account.

How formats appear in responses

A completed job lists its generated files under result.outputs. Each entry carries a filename, a url to download from, and a description with the format’s human-readable label. Request and download flows are covered in Process an SOV and Get or Create an SOV Output.