freshworks · Schema
AssetCreate
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the asset. |
| description | string | Description. |
| asset_type_id | integer | ID of the asset type. |
| asset_tag | string | Asset tag identifier. |
| impact | string | Impact level. |
| usage_type | string | Usage type. |
| user_id | integer | ID of the user to assign. |
| department_id | integer | ID of the department. |
| location_id | integer | ID of the location. |
| agent_id | integer | ID of the managing agent. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AssetCreate",
"title": "AssetCreate",
"type": "object",
"required": [
"name",
"asset_type_id"
],
"properties": {
"name": {
"type": "string",
"description": "Name of the asset."
},
"description": {
"type": "string",
"description": "Description."
},
"asset_type_id": {
"type": "integer",
"description": "ID of the asset type."
},
"asset_tag": {
"type": "string",
"description": "Asset tag identifier."
},
"impact": {
"type": "string",
"description": "Impact level."
},
"usage_type": {
"type": "string",
"description": "Usage type."
},
"user_id": {
"type": "integer",
"description": "ID of the user to assign."
},
"department_id": {
"type": "integer",
"description": "ID of the department."
},
"location_id": {
"type": "integer",
"description": "ID of the location."
},
"agent_id": {
"type": "integer",
"description": "ID of the managing agent."
}
}
}