ACORD · JSON Structure

Ngds Underwriting Submission Response Structure

UnderwritingSubmissionResponse schema from ACORD NGDS API

Type: object Properties: 4
ClaimsInsurancePolicyStandardsUnderwriting

UnderwritingSubmissionResponse is a JSON Structure definition published by ACORD, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

submissionId status submittedAt notes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acord/refs/heads/main/json-structure/ngds-underwriting-submission-response-structure.json",
  "description": "UnderwritingSubmissionResponse schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "submissionId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Received",
        "UnderReview",
        "Approved",
        "Declined",
        "RequiresMoreInfo"
      ]
    },
    "submittedAt": {
      "type": "datetime"
    },
    "notes": {
      "type": "string"
    }
  },
  "name": "UnderwritingSubmissionResponse"
}