Skip to documentation
ExaPACS integration

Read Completed Studies Rows

Perform Read Completed Studies Rows through ExaPACS.

View as Markdown
exapacs_read_completed_studies_rows
readexapacs

Inputs

  • report_document_id
    expressionrequired
    Report Document Id

    Required literal value or workflow expression.

  • flag_filter
    text
    Flag Filter

    Optional text value.

Outputs

  • rowsRows
  • countCount
  • filtered_out_countFiltered Out Count
  • flag_countsFlag Counts
  • document_idDocument Id
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

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

Input schema
{
  "type": "object",
  "required": [
    "report_document_id"
  ],
  "properties": {
    "flag_filter": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "rows": {},
    "count": {},
    "error": {},
    "document_id": {},
    "flag_counts": {},
    "filtered_out_count": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions