availity · JSON Structure

Eligibility Provider Structure

Provider schema from Availity API

Type: object Properties: 6 Required: 1

Provider is a JSON Structure definition published by availity, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

npi firstName lastName organizationName taxId serviceProviderNumber

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/availity/refs/heads/main/json-structure/eligibility-provider-structure.json",
  "description": "Provider schema from Availity API",
  "type": "object",
  "required": [
    "npi"
  ],
  "properties": {
    "npi": {
      "type": "string",
      "description": "National Provider Identifier (NPI)",
      "pattern": "^\\d{10}$"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "organizationName": {
      "type": "string"
    },
    "taxId": {
      "type": "string"
    },
    "serviceProviderNumber": {
      "type": "string"
    }
  },
  "name": "Provider"
}