blocks-data-enricher-db-lookup/request_schema.json

39 lines
1.1 KiB
JSON
Raw Normal View History

2025-03-12 16:18:58 +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."
},
"hd_score_iso_m2": {
"type": ["number", "null"],
"description": "HD fraud score M2."
},
2026-05-20 13:31:40 -04:00
"connected_application_keys": {
"type": "array",
"items": {
"type": ["string", "null"]
},
"description": "List of connected application keys associated with this application."
},
"input_ip_address": {
"type": ["string", "null"],
"description": "Current application input IP address from THX."
},
"input_ip_connection_type": {
"type": ["string", "null"],
"description": "Current application THX input IP connection type."
},
"input_ip_isp": {
"type": ["string", "null"],
"description": "Current application THX input IP ISP."
}
},
"required": []
}