File size: 2,438 Bytes
8143f06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "description": "homeowners insurance policy declarations page with coverage limits and policy details",
  "properties": {
    "namedInsured": {
      "type": "string",
      "description": "the named insured / policyholder name exactly as printed."
    },
    "policyNumber": {
      "type": "string",
      "description": "the policy number."
    },
    "policyForm": {
      "type": "string",
      "description": "the policy form code only, without the descriptive suffix (e.g. HO-3)."
    },
    "inceptionDate": {
      "type": "string",
      "description": "the policy inception/effective date in YYYY-MM-DD format."
    },
    "expirationDate": {
      "type": "string",
      "description": "the policy expiration date in YYYY-MM-DD format."
    },
    "deductible": {
      "type": "number",
      "description": "the policy deductible amount, numeric only."
    },
    "policyPremium": {
      "type": "number",
      "description": "the total policy premium, numeric only."
    },
    "yearBuilt": {
      "type": "number",
      "description": "the year the insured dwelling was built."
    },
    "construction": {
      "type": "string",
      "description": "the dwelling construction type as printed."
    },
    "propertyAddress": {
      "type": "string",
      "description": "the insured property address on one line as printed."
    },
    "agentName": {
      "type": "string",
      "description": "the agent or agency contact name."
    },
    "coverages": {
      "type": "array",
      "description": "each coverage line from the declarations with its limit. include both the property coverages (dwelling, other structures, personal property, loss of use) and the liability coverages (liability, medical).",
      "items": {
        "type": "object",
        "properties": {
          "coverageType": {
            "type": "string",
            "description": "the coverage name only, without the section-letter prefix (e.g. 'Dwelling' not '(A) Dwelling')."
          },
          "limit": {
            "type": "number",
            "description": "the coverage limit amount, numeric only."
          },
          "basis": {
            "type": "string",
            "description": "the basis qualifier printed next to the limit if any, else null (e.g. 'Each Occurrence', 'Each Person')."
          }
        }
      }
    }
  }
}