availity · Schema
Provider
Properties
| Name | Type | Description |
|---|---|---|
| npi | string | National Provider Identifier (NPI) |
| firstName | string | |
| lastName | string | |
| organizationName | string | |
| taxId | string | |
| serviceProviderNumber | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Provider",
"title": "Provider",
"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"
}
}
}