availity · Schema

PayerInfo

PayerInfo schema from Availity API

Properties

Name Type Description
id string
name string
address object
View JSON Schema on GitHub

JSON Schema

eligibility-payer-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/availity/refs/heads/main/json-schema/eligibility-payer-info-schema.json",
  "title": "PayerInfo",
  "description": "PayerInfo schema from Availity API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "address": {
      "type": "object",
      "properties": {
        "address1": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "postalCode": {
          "type": "string"
        }
      }
    }
  }
}