AIG · JSON Structure

Aig Insurance Policy Structure

An AIG insurance policy covering insured risks

Type: object Properties: 9
InsuranceFinancial ServicesProperty CasualtyCyber InsuranceEnterpriseFortune 100

InsurancePolicy is a JSON Structure definition published by AIG, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

policy_number policy_type insured_name effective_date expiration_date premium coverage_limit deductible status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

aig-insurance-policy-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aig/refs/heads/main/json-structure/aig-insurance-policy-structure.json",
  "name": "InsurancePolicy",
  "description": "An AIG insurance policy covering insured risks",
  "type": "object",
  "properties": {
    "policy_number": {
      "type": "string",
      "description": "Unique policy identifier",
      "example": "AIG-GL-2024-001234"
    },
    "policy_type": {
      "type": "string",
      "description": "Type of insurance policy",
      "example": "Commercial General Liability"
    },
    "insured_name": {
      "type": "string",
      "description": "Name of the insured entity",
      "example": "Acme Corporation"
    },
    "effective_date": {
      "type": "string",
      "description": "Policy effective date",
      "example": "2024-01-01"
    },
    "expiration_date": {
      "type": "string",
      "description": "Policy expiration date",
      "example": "2025-01-01"
    },
    "premium": {
      "type": "double",
      "description": "Annual premium amount in USD",
      "example": 125000.0
    },
    "coverage_limit": {
      "type": "double",
      "description": "Policy coverage limit in USD",
      "example": 5000000.0
    },
    "deductible": {
      "type": "double",
      "description": "Policy deductible amount in USD",
      "example": 50000.0
    },
    "status": {
      "type": "string",
      "description": "Policy status",
      "example": "Active"
    }
  }
}