addedInput schema / properties / actor
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Actor"
+}
addedInput schema / properties / check_suite_id
Added value: +{
+ "anyOf": [
+ {
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Exact check-suite identifier.",
+ "title": "Check Suite Id"
+}
addedInput schema / properties / created_from
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Inclusive timezone-aware ISO 8601 creation lower bound.",
+ "title": "Created From"
+}
addedInput schema / properties / created_to
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Inclusive timezone-aware ISO 8601 creation upper bound.",
+ "title": "Created To"
+}
addedInput schema / properties / event
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Event"
+}
addedInput schema / properties / head_sha
Added value: +{
+ "anyOf": [
+ {
+ "pattern": "^[0-9A-Fa-f]{40}$",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Exact 40-character workflow-run head commit SHA.",
+ "title": "Head Sha"
+}
addedInput schema / properties / page
Added value: +{
+ "default": 1,
+ "description": "One-based result page.",
+ "maximum": 10000,
+ "minimum": 1,
+ "title": "Page",
+ "type": "integer"
+}
addedInput schema / properties / workflow_id
Added value: +{
+ "anyOf": [
+ {
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Exact workflow identifier to scope the authoritative route.",
+ "title": "Workflow Id"
+}
changedOutput schema / description
Previous value: -"Paginated search results."New value: +"One bounded workflow-run result page with explicit completeness metadata."
addedOutput schema / properties / has_more
Added value: +{
+ "title": "Has More",
+ "type": "boolean"
+}
addedOutput schema / properties / page
Added value: +{
+ "minimum": 1,
+ "title": "Page",
+ "type": "integer"
+}
addedOutput schema / properties / per_page
Added value: +{
+ "maximum": 100,
+ "minimum": 1,
+ "title": "Per Page",
+ "type": "integer"
+}
removedOutput schema / properties / total_count / default
Removed value: -0
addedOutput schema / properties / total_count / minimum
Added value: +0
addedOutput schema / properties / warning
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Warning"
+}
changedOutput schema / required
Previous value: -[
- "items",
- "truncated",
- "query"
-]New value: +[
+ "total_count",
+ "items",
+ "truncated",
+ "query",
+ "page",
+ "per_page",
+ "has_more"
+]
changedOutput schema / title
Previous value: -"SearchResults"New value: +"WorkflowRunsPage"