blocks-data-enricher-db-lookup/request_schema.json
admin user 8471f32690
All checks were successful
Build and Push Docker Image / setup (push) Successful in 3s
Build and Push Docker Image / build_and_push (push) Successful in 39s
Push to db block
2025-03-12 16:18:21 +00:00

39 lines
873 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"application_key": {
"type": "string"
},
"application_timestamp": {
"type": "string",
"format": "date-time"
},
"application_ssn": {
"type": ["string", "null"]
},
"application_email_address": {
"type": ["string", "null"],
"format": "email"
},
"application_bank_account_number": {
"type": ["string", "null"]
},
"application_is_rejected": {
"type": ["boolean", "null"],
"default": false
},
"application_date_of_birth": {
"type": ["string", "null"],
"format": "date"
},
"application_customer_type": {
"type": ["string", "null"]
}
},
"required": [
"application_key",
"application_timestamp"
]
}