blocks-transformer/response_schema.json

27 lines
730 B
JSON
Raw Permalink Normal View History

2025-03-12 16:14:28 +00:00
{
"$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."
},
2025-11-23 23:30:21 -05:00
"hd_score_iso_m2": {
"type": ["number", "null"],
"description": "HD fraud score M2."
},
2025-03-12 16:14:28 +00:00
"connected_application_keys": {
"type": "array",
"items": {
"type": ["string", "null"]
},
"description": "List of connected application keys associated with this application."
}
},
"required": []
}