Skip to documentation
Eligibility integration

Commit VOB Sheet Handoff

Perform Commit VOB Sheet Handoff through Eligibility.

View as Markdown
eligibility_commit_vob_sheet_handoff
write

Inputs

  • candidate
    expressionrequired
    Candidate

    Required literal value or workflow expression.

  • status_note
    expressionrequired
    Status Note

    Required literal value or workflow expression.

  • completed_team_assignment
    expression
    Completed Team Assignment

    Optional literal value or workflow expression.

  • bounded_ranges
    expressionrequired
    Bounded Ranges

    Required literal value or workflow expression.

  • write_enabled
    boolean
    Write Enabled

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • statusStatus
  • submittedSubmitted
  • reusedReused
  • write_skippedWrite Skipped
  • skip_reasonSkip Reason
  • conflictConflict
  • conflicting_rangesConflicting Ranges
  • spreadsheet_idSpreadsheet Id
  • row_numberRow Number
  • relocatedRelocated
  • updated_range_countUpdated Range Count
  • updated_rowsUpdated Rows
  • updated_columnsUpdated Columns
  • updated_cellsUpdated Cells
  • retryableRetryable
  • errorError
  • error_messageError Message

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "candidate",
    "status_note",
    "bounded_ranges"
  ],
  "properties": {
    "candidate": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "status_note": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "write_enabled": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "bounded_ranges": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "completed_team_assignment": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "reused": {},
    "status": {},
    "success": {},
    "conflict": {},
    "relocated": {},
    "retryable": {},
    "submitted": {},
    "row_number": {},
    "skip_reason": {},
    "updated_rows": {},
    "error_message": {},
    "updated_cells": {},
    "write_skipped": {},
    "spreadsheet_id": {},
    "updated_columns": {},
    "conflicting_ranges": {},
    "updated_range_count": {}
  },
  "additionalProperties": true
}
View all Eligibility actions