blocks-transformer/request_schema.json

18 lines
367 B
JSON
Raw Normal View History

2025-04-09 18:36:39 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"application_id": {
"type": ["string", "null"],
"description": "Unique identifier for the application."
},
2025-06-13 18:01:40 +00:00
"evtg04": {
2025-04-10 18:33:30 +00:00
"type": ["object", "null"],
2025-06-13 18:01:40 +00:00
"description": "VantageScore 4.0"
2025-04-09 18:36:39 +00:00
}
},
2025-06-13 18:01:40 +00:00
"required": [
"application_id"
]
2025-04-09 18:36:39 +00:00
}