blocks-data-enricher-db-lookup/request_schema.json
Ankur Malik 4c3aa40a58
All checks were successful
Build and Push Docker Image / setup (push) Successful in 4s
Build and Push Docker Image / build_and_push (push) Successful in 38s
Add db_push_uprova branch contents
2025-11-26 12:04:04 -05:00

46 lines
866 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"application_key": {
"type": "string"
},
"application_timestamp": {
"type": "string",
"format": "date-time"
},
"educationlevel": {
"type": ["string", "null"]
},
"employmentstatus": {
"type": ["string", "null"]
},
"lengthatbank": {
"type": ["string", "null"]
},
"lengthatjob": {
"type": ["number", "null"]
},
"ownhome": {
"type": ["boolean", "null"]
},
"payfrequency": {
"type": ["string", "null"]
},
"monthsatresidence": {
"type": ["number", "null"]
},
"state": {
"type": ["string", "null"]
},
"zip": {
"type": ["string", "null"]
}
},
"required": [
"application_key",
"application_timestamp"
]
}