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_asset_type
Obtain information about Asset Types from your FreshService instance.
Examples
List all asset types
select *from freshservice_asset_type;
List all child asset types of a parent asset type
select *from freshservice_asset_typewhere parent_asset_type_id = 20069004;
List all assets of a specific asset type
select a.*from freshservice_asset a left join freshservice_asset_type t on a.asset_type_id = t.id and t.name = 'MY-TYPE';
Schema for freshservice_asset_type
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
created_at | timestamp with time zone | Timestamp when the asset type was created | |
description | text | Short description of the asset type. | |
id | bigint | = | ID of the asset type. |
name | text | Name of the asset type. | |
parent_asset_type_id | bigint | ID of the parent asset type. | |
updated_at | timestamp with time zone | Timestamp when the asset type was last updated | |
visible | boolean | True if the asset type is visible. |