feat(workflow): expose data_extraction_goal and data_schema on ValidationBlock backend (#6066)

This commit is contained in:
Aaron Perez 2026-05-20 00:29:07 -04:00 committed by GitHub
parent 11a5e0e89e
commit 6ccca74c3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 335 additions and 0 deletions

View file

@ -19164,6 +19164,17 @@
"title": "Next Loop On Failure",
"default": false
},
"navigation_goal": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Navigation Goal"
},
"complete_criterion": {
"anyOf": [
{
@ -19218,6 +19229,36 @@
"type": "boolean",
"title": "Disable Cache",
"default": false
},
"data_extraction_goal": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Data Extraction Goal"
},
"data_schema": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"items": {},
"type": "array"
},
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Data Schema"
}
},
"type": "object",