AIG · JSON Structure

Aig Risk Profile Structure

Risk profile for an insured entity

Type: object Properties: 7
InsuranceFinancial ServicesProperty CasualtyCyber InsuranceEnterpriseFortune 100

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

Properties

entity_name industry naics_code annual_revenue employee_count locations loss_history

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

JSON Structure

aig-risk-profile-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-risk-profile-structure.json",
  "name": "RiskProfile",
  "description": "Risk profile for an insured entity",
  "type": "object",
  "properties": {
    "entity_name": {
      "type": "string",
      "description": "Name of the insured entity",
      "example": "Acme Corporation"
    },
    "industry": {
      "type": "string",
      "description": "Industry classification",
      "example": "Manufacturing"
    },
    "naics_code": {
      "type": "string",
      "description": "NAICS industry code",
      "example": "332999"
    },
    "annual_revenue": {
      "type": "double",
      "description": "Annual revenue in USD",
      "example": 50000000.0
    },
    "employee_count": {
      "type": "int32",
      "description": "Number of employees",
      "example": 500
    },
    "locations": {
      "type": "array",
      "description": "List of business locations",
      "items": {
        "type": "object"
      }
    },
    "loss_history": {
      "type": "array",
      "description": "Historical loss records",
      "items": {
        "type": "object"
      }
    }
  }
}