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: 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

Excel workbooks

CSV exports

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.