Renters Insurance Policy

Schema for a State Farm renters insurance policy

Fortune 100

Properties

Name Type Description
policyNumber string State Farm policy number
status string Current policy status
effectiveDate string Date the policy coverage begins
expirationDate string Date the policy coverage expires
annualPremium number Annual premium amount in USD
monthlyPremium number Monthly premium amount in USD
insuredName string Full name of the primary insured
propertyAddress object
coverageSummary object
View JSON Schema on GitHub

JSON Schema

state-farm-insurance-renters-policy-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/state-farm/main/json-schema/state-farm-renters-policy-schema.json",
  "title": "Renters Insurance Policy",
  "description": "Schema for a State Farm renters insurance policy",
  "type": "object",
  "properties": {
    "policyNumber": {
      "type": "string",
      "description": "State Farm policy number",
      "pattern": "^[0-9]{3}-[0-9]{4}-[A-Z][0-9]{2}$",
      "examples": ["987-6543-B12"]
    },
    "status": {
      "type": "string",
      "description": "Current policy status",
      "enum": ["ACTIVE", "PENDING", "CANCELLED", "EXPIRED", "LAPSED"]
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "description": "Date the policy coverage begins"
    },
    "expirationDate": {
      "type": "string",
      "format": "date",
      "description": "Date the policy coverage expires"
    },
    "annualPremium": {
      "type": "number",
      "description": "Annual premium amount in USD",
      "minimum": 0
    },
    "monthlyPremium": {
      "type": "number",
      "description": "Monthly premium amount in USD",
      "minimum": 0
    },
    "insuredName": {
      "type": "string",
      "description": "Full name of the primary insured"
    },
    "propertyAddress": {
      "$ref": "#/definitions/Address"
    },
    "coverageSummary": {
      "$ref": "#/definitions/CoverageSelection"
    }
  },
  "required": ["policyNumber", "status", "effectiveDate", "expirationDate", "insuredName", "propertyAddress"],
  "definitions": {
    "Address": {
      "type": "object",
      "description": "US property address",
      "properties": {
        "street": {
          "type": "string",
          "description": "Street address including unit number"
        },
        "city": {
          "type": "string",
          "description": "City name"
        },
        "state": {
          "type": "string",
          "description": "Two-letter US state code",
          "pattern": "^[A-Z]{2}$"
        },
        "zipCode": {
          "type": "string",
          "description": "ZIP or ZIP+4 postal code",
          "pattern": "^[0-9]{5}(-[0-9]{4})?$"
        }
      },
      "required": ["street", "city", "state", "zipCode"]
    },
    "CoverageSelection": {
      "type": "object",
      "description": "Renters insurance coverage selections",
      "properties": {
        "personalPropertyLimit": {
          "type": "integer",
          "description": "Personal property coverage limit in USD",
          "minimum": 0
        },
        "liabilityLimit": {
          "type": "integer",
          "description": "Personal liability coverage limit in USD",
          "minimum": 0
        },
        "medicalPaymentsLimit": {
          "type": "integer",
          "description": "Medical payments to others limit in USD",
          "minimum": 0
        },
        "deductible": {
          "type": "integer",
          "description": "Policy deductible amount in USD",
          "minimum": 0
        },
        "additionalLivingExpenses": {
          "type": "boolean",
          "description": "Whether additional living expenses coverage is included"
        },
        "identityRestorationCoverage": {
          "type": "boolean",
          "description": "Whether identity restoration coverage is included"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/state-farm-insurance-renters-policy"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.