{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/fastdol/refs/heads/main/json-schema/fastdol-batch-lookup-item-schema.json", "title": "BatchLookupItem", "description": "BatchLookupItem schema from FastDOL API", "type": "object", "properties": { "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Name" }, "ein": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Ein" }, "employer_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Employer Id" }, "state": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "State" }, "zip": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Zip" }, "city": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "City" } } }