ACORD · Schema

UnderwritingSubmissionResponse

UnderwritingSubmissionResponse schema from ACORD NGDS API

ClaimsInsurancePolicyStandardsUnderwriting

Properties

Name Type Description
submissionId string
status string
submittedAt string
notes string
View JSON Schema on GitHub

JSON Schema

ngds-underwriting-submission-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acord/refs/heads/main/json-schema/ngds-underwriting-submission-response-schema.json",
  "title": "UnderwritingSubmissionResponse",
  "description": "UnderwritingSubmissionResponse schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "submissionId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Received",
        "UnderReview",
        "Approved",
        "Declined",
        "RequiresMoreInfo"
      ]
    },
    "submittedAt": {
      "type": "string",
      "format": "date-time"
    },
    "notes": {
      "type": "string"
    }
  }
}