FastDOL · Schema
BatchLookupItem
BatchLookupItem schema from FastDOL API
OSHAComplianceWorkplace SafetyPublic RecordsFederal EnforcementLabor
Properties
| Name | Type | Description |
|---|---|---|
| name | object | |
| ein | object | |
| employer_id | object | |
| state | object | |
| zip | object | |
| city | object |
JSON Schema
{
"$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"
}
}
}