mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-07-09 16:09:13 +00:00
feat(workflow): expose data_extraction_goal and data_schema on ValidationBlock backend (#6066)
This commit is contained in:
parent
11a5e0e89e
commit
6ccca74c3e
11 changed files with 335 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue