{ "$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" } } }