blocks-transformer/response_schema.json
admin user 6d94849e2d
All checks were successful
Build and Push Docker Image / test (push) Successful in 10s
Build and Push Docker Image / build_and_push (push) Successful in 20s
Graph lookup block
2025-03-12 16:14:28 +00:00

23 lines
614 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"application_key": {
"type": ["string", "null"],
"description": "Unique identifier for the application."
},
"hd_score_m1": {
"type": ["number", "null"],
"description": "HD fraud score M1."
},
"connected_application_keys": {
"type": "array",
"items": {
"type": ["string", "null"]
},
"description": "List of connected application keys associated with this application."
}
},
"required": []
}