freshservice_agentfreshservice_agent_rolefreshservice_announcementfreshservice_assetfreshservice_asset_componentfreshservice_asset_contractfreshservice_asset_typefreshservice_business_hourfreshservice_changefreshservice_change_notefreshservice_contractfreshservice_contract_typefreshservice_departmentfreshservice_locationfreshservice_problemfreshservice_problem_notefreshservice_problem_taskfreshservice_problem_timeentryfreshservice_productfreshservice_purchase_orderfreshservice_releasefreshservice_release_notefreshservice_release_taskfreshservice_release_timeentryfreshservice_requesterfreshservice_servicefreshservice_sla_policyfreshservice_softwarefreshservice_software_installationfreshservice_software_userfreshservice_solution_articlefreshservice_solution_categoryfreshservice_solution_folderfreshservice_ticketfreshservice_ticket_conversationfreshservice_ticket_taskfreshservice_ticket_timeentryfreshservice_vendor
Table: freshservice_release
Obtain information about Releases within the FreshService instance.
Examples
List all releases
select *from freshservice_release;
List high priority yet not completed releases
select r.id, r.subject, a.email as assignee, r.priority_desc, r.status_desc, r.planned_start_date, r.planned_end_datefrom freshservice_release r left join freshservice_agent a on r.agent_id = a.idwhere r.status < 5 and r.priority >= 3;
Schema for freshservice_release
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
agent_id | bigint | User ID of the agent to whom the release is assigned. | |
associated_assets | jsonb | Array of IDs of Assets associated with the release. | |
associated_changes | jsonb | Array of IDs of Changes associated with the release. | |
category | text | Category of the release. | |
created_at | timestamp with time zone | Timestamp at which the release was created. | |
department_id | bigint | ID of the department initiating the release. | |
description | text | HTML content of the release. | |
group_id | bigint | ID of the agent group to which the release has been assigned. | |
id | bigint | = | ID of the release. |
item_category | text | Item category of the release. | |
planned_end_date | timestamp with time zone | Timestamp at which release is planned to end. | |
planned_start_date | timestamp with time zone | Timestamp at which release is planned to start. | |
priority | bigint | Priority of the release. | |
priority_desc | text | Description of the release priority. | |
release_type | bigint | Type of the release. | |
release_type_desc | bigint | Description of the release type. | |
status | bigint | Status of the release. | |
status_desc | text | Description of the release status. | |
sub_category | text | Sub-category of the release. | |
subject | text | Subject of the release. | |
updated_at | timestamp with time zone | Timestamp at which the release was last updated. | |
work_end_date | timestamp with time zone | Timestamp at which release work ended. | |
work_start_date | timestamp with time zone | Timestamp at which release work started. |