ACORD · Schema

Coverage

Coverage schema from ACORD NGDS API

ClaimsInsurancePolicyStandardsUnderwriting

Properties

Name Type Description
coverageId string
coverageType string
limit number
deductible number
premium number
currency string
View JSON Schema on GitHub

JSON Schema

ngds-coverage-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-coverage-schema.json",
  "title": "Coverage",
  "description": "Coverage schema from ACORD NGDS API",
  "type": "object",
  "properties": {
    "coverageId": {
      "type": "string"
    },
    "coverageType": {
      "type": "string"
    },
    "limit": {
      "type": "number"
    },
    "deductible": {
      "type": "number"
    },
    "premium": {
      "type": "number"
    },
    "currency": {
      "type": "string"
    }
  }
}