ACORD · JSON Structure

Ngds Underwriting Submission Structure

UnderwritingSubmission schema from ACORD NGDS API

Type: object Properties: 5 Required: 3
ClaimsInsurancePolicyStandardsUnderwriting

UnderwritingSubmission is a JSON Structure definition published by ACORD, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

lineOfBusiness applicant requestedEffectiveDate requestedExpirationDate riskDetails

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-structure.json",
  "description": "UnderwritingSubmission schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "lineOfBusiness": {
      "type": "string"
    },
    "applicant": {
      "$ref": "#/components/schemas/PartyRequest"
    },
    "requestedEffectiveDate": {
      "type": "date"
    },
    "requestedExpirationDate": {
      "type": "date"
    },
    "riskDetails": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "lineOfBusiness",
    "applicant",
    "requestedEffectiveDate"
  ],
  "name": "UnderwritingSubmission"
}