Actions199
- Collections Actions
- Forms Actions
- Actions Capabilities Actions
- Activities Actions
- Attachments Actions
- Budgets Actions
- Categories Actions
- Custom Actions Actions
- Custom Options Actions
- Documents Actions
- File Links Actions
- View File Link
- Delete File Link
- Open File Link
- Download File Link
- List Project Storages
- Get Project Storage
- Open Project Storage
- Create Storage
- Get Storage
- Update Storage
- Delete Storage
- Get Storage Files
- Prepare Storage File Upload
- Create Storage Folder
- Create Storage Oauth Credentials
- Open Storage
- Create Work Package File Link
- List Work Package File Links
- Grids Actions
- Groups Actions
- Help Texts Actions
- Memberships Actions
- Query Filter Instance Schema Actions
- News Actions
- Notifications Actions
- O Auth 2 Actions
- Posts Actions
- Principals Actions
- Priorities Actions
- Query Columns Actions
- Query Filters Actions
- Query Operators Actions
- Query Sort Bys Actions
- Relations Actions
- Previewing Actions
- Revisions Actions
- Roles Actions
- Time Entries Actions
- Time Entry Activities Actions
- Types Actions
- User Preferences Actions
- Wiki Pages Actions
- Work Schedule Actions
- Meetings Actions
- Values Property Actions
- Projects Actions
- Queries Actions
- Users Actions
- Statuses Actions
- Versions Actions
- Work Packages Actions
- Get Project Work Package Collection
- Create Project Work Package
- List Work Package File Links
- Form Create Work Package In Project
- Project Available Assignees
- List Work Packages
- Create Work Package
- Form Create Work Package
- List Work Package Schemas
- View Work Package Schema
- Delete Work Package
- View Work Package
- Update Work Package
- List Work Package Activities
- Comment Work Package
- Work Package Available Assignees
- Available Projects For Work Package
- List Available Relation Candidates
- Available Watchers
- Create Work Package File Link
- Form Edit Work Package
- Revisions
- Reminders
- List Watchers
- Add Watcher
- Remove Watcher
- Views Actions
Overview
This node operation allows you to list work package schemas from OpenProject by applying specific filter conditions. Work package schemas define the structure and fields of work packages within projects, which are essential for project management tasks such as issue tracking, task assignment, and progress monitoring.
Common scenarios where this node is beneficial include:
- Retrieving schema details to dynamically generate forms or UI elements based on the schema.
- Filtering schemas by project and work package type to customize workflows.
- Integrating with other systems that require knowledge of work package structures.
For example, you might use this node to fetch schemas for work packages belonging to certain projects and types, then use that information to validate or enrich data before creating or updating work packages.
Properties
| Name | Meaning |
|---|---|
| Filters | JSON string specifying filter conditions to select which work package schemas to list. It accepts the same format as returned by the OpenProject queries endpoint. Currently supported filters include: id, which is the schema's identifier in the form project_id-work_package_type_id. Example: [{"id": {"operator": "=", "values": ["12-1", "14-2"]}}] |
Output
The node outputs a JSON array containing the filtered list of work package schemas. Each item in the output corresponds to a schema matching the specified filters and includes details such as schema ID, associated project, work package type, and field definitions.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the OpenProject API.
- The node depends on the OpenProject REST API being accessible at the URL provided in the credentials.
- No additional external services or environment variables are required beyond the API authentication setup.
Troubleshooting
- Invalid Filter Format: If the filter JSON is malformed or does not conform to the expected query format, the API may return an error. Ensure the filter string is valid JSON and matches the documented filter structure.
- Authentication Errors: Failure to provide valid API credentials will result in authorization errors. Verify that the API key and base URL are correctly configured.
- Empty Results: If no schemas match the filter criteria, the output will be an empty array. Double-check the filter values, especially the schema IDs.
- API Endpoint Issues: Network issues or incorrect base URLs can cause request failures. Confirm connectivity and correct API endpoint configuration.
Links and References
- OpenProject API Documentation - Queries Endpoint
- OpenProject Work Package Schemas (for further schema details)