AmTrust Financial Services · JSON Structure

Amtrust Financial Services Appetite Request Structure

Request to check coverage appetite

Type: object Properties: 4 Required: 3
Commercial InsuranceInsuranceProperty And CasualtySmall BusinessWorkers CompensationFortune 1000

AppetiteRequest is a JSON Structure definition published by AmTrust Financial Services, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

state class_code product_type payroll

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/amtrust-financial-services/refs/heads/main/json-structure/amtrust-financial-services-appetite-request-structure.json",
  "name": "AppetiteRequest",
  "description": "Request to check coverage appetite",
  "type": "object",
  "required": [
    "state",
    "class_code",
    "product_type"
  ],
  "properties": {
    "state": {
      "type": "string",
      "description": "US state abbreviation",
      "example": "CA"
    },
    "class_code": {
      "type": "string",
      "description": "NCCI or state class code for the business",
      "example": "8810"
    },
    "product_type": {
      "type": "string",
      "description": "Insurance product type",
      "enum": [
        "workers_compensation",
        "bop",
        "general_liability",
        "commercial_package"
      ],
      "example": "workers_compensation"
    },
    "payroll": {
      "type": "double",
      "description": "Annual payroll amount",
      "example": 500000
    }
  }
}