ACORD · JSON Structure

Ngds Coverage Request Structure

CoverageRequest schema from ACORD NGDS API

Type: object Properties: 5 Required: 2
ClaimsInsurancePolicyStandardsUnderwriting

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

Properties

coverageType limit deductible premium currency

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-coverage-request-structure.json",
  "description": "CoverageRequest schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "coverageType": {
      "type": "string"
    },
    "limit": {
      "type": "double"
    },
    "deductible": {
      "type": "double"
    },
    "premium": {
      "type": "double"
    },
    "currency": {
      "type": "string",
      "default": "USD"
    }
  },
  "required": [
    "coverageType",
    "limit"
  ],
  "name": "CoverageRequest"
}