Foysal Ahamed 02c358d0ca
Adds safelink module (#3945)
*  Adds safelink module

*  Remove createdAt timestamp bloat

* :rotating_lights: Fix lint issue

* 🐛 Fix pagination

* 🔨 Refactor safelink rule table

* 🧹 Add better default

*  Better search params

*  Remove mod requirement for query rules and events

*  Cleanup search for queryEvents

* 📝 Add changeset

* :rotating_lights: Fix lint issue

* 🧹 Adjust as per review feedback

*  Add support for sort direction in safelink rules

* :rotating_lights: Fix lint issue

*  Split input and response object shape

* :rotating_lights: Fix lint issue
2025-07-02 21:17:38 +02:00

67 lines
1.8 KiB
JSON

{
"lexicon": 1,
"id": "tools.ozone.safelink.queryEvents",
"defs": {
"main": {
"type": "procedure",
"description": "Query URL safety audit events",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for pagination"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50,
"description": "Maximum number of results to return"
},
"urls": {
"type": "array",
"items": {
"type": "string"
},
"description": "Filter by specific URLs or domains"
},
"patternType": {
"type": "string",
"description": "Filter by pattern type"
},
"sortDirection": {
"type": "string",
"knownValues": ["asc", "desc"],
"default": "desc",
"description": "Sort direction"
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["events"],
"properties": {
"cursor": {
"type": "string",
"description": "Next cursor for pagination. Only present if there are more results."
},
"events": {
"type": "array",
"items": {
"type": "ref",
"ref": "tools.ozone.safelink.defs#event"
}
}
}
}
}
}
}
}