Majesco · Schema

Majesco Insurance Policy

An insurance policy managed through the Majesco cloud platform

Properties

Name Type Description
policyNumber string Unique policy identifier
status string Current lifecycle status of the policy
productType string Line of business / insurance product type
effectiveDate string Policy inception date
expirationDate string Policy expiration date
cancellationDate stringnull
policyholder object
coverages array
premium object
endorsements array
agentCode string Issuing agent or broker code
channelCode string Distribution channel identifier
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

majesco-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/majesco/refs/heads/main/json-schema/majesco-policy-schema.json",
  "title": "Majesco Insurance Policy",
  "description": "An insurance policy managed through the Majesco cloud platform",
  "type": "object",
  "required": ["policyNumber", "productType", "effectiveDate", "expirationDate", "status", "policyholder"],
  "properties": {
    "policyNumber": {
      "type": "string",
      "description": "Unique policy identifier"
    },
    "status": {
      "type": "string",
      "enum": ["active", "expired", "cancelled", "pending", "lapsed"],
      "description": "Current lifecycle status of the policy"
    },
    "productType": {
      "type": "string",
      "enum": ["auto", "home", "commercial", "life", "health", "specialty"],
      "description": "Line of business / insurance product type"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "description": "Policy inception date"
    },
    "expirationDate": {
      "type": "string",
      "format": "date",
      "description": "Policy expiration date"
    },
    "cancellationDate": {
      "type": ["string", "null"],
      "format": "date"
    },
    "policyholder": {
      "$ref": "#/$defs/Policyholder"
    },
    "coverages": {
      "type": "array",
      "items": { "$ref": "#/$defs/Coverage" }
    },
    "premium": {
      "$ref": "#/$defs/Premium"
    },
    "endorsements": {
      "type": "array",
      "items": { "$ref": "#/$defs/Endorsement" }
    },
    "agentCode": {
      "type": "string",
      "description": "Issuing agent or broker code"
    },
    "channelCode": {
      "type": "string",
      "description": "Distribution channel identifier"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "$defs": {
    "Policyholder": {
      "type": "object",
      "required": ["firstName", "lastName"],
      "properties": {
        "id": { "type": "string" },
        "firstName": { "type": "string" },
        "lastName": { "type": "string" },
        "dateOfBirth": { "type": "string", "format": "date" },
        "email": { "type": "string", "format": "email" },
        "phone": { "type": "string" },
        "address": { "$ref": "#/$defs/Address" }
      }
    },
    "Address": {
      "type": "object",
      "properties": {
        "street1": { "type": "string" },
        "street2": { "type": "string" },
        "city": { "type": "string" },
        "state": { "type": "string", "pattern": "^[A-Z]{2}$" },
        "postalCode": { "type": "string" },
        "country": { "type": "string", "default": "US" }
      }
    },
    "Coverage": {
      "type": "object",
      "required": ["coverageCode"],
      "properties": {
        "coverageCode": { "type": "string" },
        "coverageDescription": { "type": "string" },
        "limit": { "type": "number", "minimum": 0 },
        "deductible": { "type": "number", "minimum": 0 },
        "premium": { "type": "number", "minimum": 0 },
        "status": {
          "type": "string",
          "enum": ["active", "excluded", "suspended"]
        }
      }
    },
    "Premium": {
      "type": "object",
      "properties": {
        "annualPremium": { "type": "number", "minimum": 0 },
        "taxAmount": { "type": "number", "minimum": 0 },
        "feesAmount": { "type": "number", "minimum": 0 },
        "totalPremium": { "type": "number", "minimum": 0 },
        "currency": { "type": "string", "default": "USD" },
        "billingFrequency": {
          "type": "string",
          "enum": ["annual", "semi_annual", "quarterly", "monthly"]
        }
      }
    },
    "Endorsement": {
      "type": "object",
      "properties": {
        "endorsementNumber": { "type": "string" },
        "type": { "type": "string" },
        "effectiveDate": { "type": "string", "format": "date" },
        "description": { "type": "string" },
        "premiumChange": { "type": "number" }
      }
    }
  }
}

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/majesco-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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