Zoho Inventory · Schema
Units of Measurement
Units of Measurement lets you create units (e.g., kg, g, lb) and organize them into unit groups with defined conversions. Units are the base entities that represent individual measurement types, while unit groups group related units and their conversion rates. You can associate these units with items to track quantities in multiple units of measurement.
Inventory ManagementWarehousingSales OrdersPurchase OrdersStock AdjustmentShipmentsItemE-Commerce
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Units of Measurement",
"description": "Units of Measurement lets you create units (e.g., kg, g, lb) and organize them into unit groups with defined conversions. Units are the base entities that represent individual measurement types, while unit groups group related units and their conversion rates. You can associate these units with items to track quantities in multiple units of measurement.",
"definitions": {
"gendoc-attributes-schema": {
"$ref": "#/components/schemas/unit-group-response"
},
"unit-group-response": {
"type": "object",
"properties": {
"unit_group_id": {
"description": "Unique ID generated by the server for the unit group.",
"type": "string",
"example": 4815000000044350
},
"unit_group_name": {
"description": "Name of the unit group.",
"type": "string",
"example": "Weight"
},
"base_unit_id": {
"description": "Unique ID of the base unit in the unit group.",
"type": "string",
"example": 4815000000044352
},
"base_unit_name": {
"description": "Name of the base unit.",
"type": "string",
"example": "kilogram"
},
"base_unit": {
"description": "Short code of the base unit.",
"type": "string",
"example": "kg"
},
"base_unit_decimal": {
"description": "Number of decimal places for the base unit.",
"type": "integer",
"example": 2
},
"unit_conversions": {
"type": "array",
"description": "List of unit conversions in the unit group.",
"items": {
"$ref": "#/components/schemas/unit-conversion-response"
}
}
}
},
"unit-conversion-response": {
"type": "object",
"properties": {
"unit_conversion_id": {
"description": "Unique ID of the unit conversion.",
"type": "string",
"example": 4815000000044354
},
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from the base unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
},
"target_unit_name": {
"description": "Name of the target unit.",
"type": "string",
"example": "gram"
},
"target_unit": {
"description": "Short code of the target unit.",
"type": "string",
"example": "g"
},
"quantity_decimal_place": {
"description": "Number of decimal places for the target unit.",
"type": "integer",
"example": 0
}
}
},
"unit-groups-page-context": {
"type": "object",
"properties": {
"page": {
"description": "Current page number.",
"type": "integer",
"example": 1
},
"per_page": {
"description": "Number of records per page.",
"type": "integer",
"example": 50
},
"has_more_page": {
"description": "Indicates whether more pages are available.",
"type": "boolean",
"example": false
},
"sort_column": {
"description": "Column by which the results are sorted.",
"type": "string",
"example": "unit_group_name"
},
"sort_order": {
"description": "Order in which the results are sorted.",
"type": "string",
"example": "A"
}
}
},
"list-unit-groups-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "success",
"readOnly": true
},
"unit_groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"unit_group_id": {
"description": "Unique ID generated by the server for the unit group.",
"type": "string",
"example": 4815000000044350
},
"unit_group_name": {
"description": "Name of the unit group.",
"type": "string",
"example": "Weight"
},
"base_unit_id": {
"description": "Unique ID of the base unit in the unit group.",
"type": "string",
"example": 4815000000044352
},
"base_unit_name": {
"description": "Name of the base unit.",
"type": "string",
"example": "kilogram"
},
"base_unit": {
"description": "Short code of the base unit.",
"type": "string",
"example": "kg"
},
"unit_conversion_count": {
"description": "Number of unit conversions in the unit group.",
"type": "integer",
"example": 2
}
}
}
},
"page_context": {
"$ref": "#/components/schemas/unit-groups-page-context"
}
}
},
"get-unit-group-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "success",
"readOnly": true
},
"unit_group": {
"$ref": "#/components/schemas/unit-group-response"
}
}
},
"create-unit-group-request": {
"required": [
"unit_group_name",
"base_unit_id"
],
"type": "object",
"properties": {
"unit_group_name": {
"description": "Name of the unit group.",
"type": "string",
"example": "Weight"
},
"base_unit_id": {
"description": "Unique ID of the base unit for the unit group.",
"type": "string",
"example": 4815000000044352
},
"unit_conversions": {
"type": "array",
"description": "List of unit conversions to add to the unit group.",
"items": {
"type": "object",
"properties": {
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from the base unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
}
}
}
}
}
},
"create-unit-group-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "Unit group has been added.",
"readOnly": true
},
"unit_group": {
"$ref": "#/components/schemas/unit-group-response"
}
}
},
"update-unit-group-request": {
"type": "object",
"properties": {
"unit_group_name": {
"description": "Name of the unit group.",
"type": "string",
"example": "Weight"
},
"base_unit_id": {
"description": "Unique ID of the base unit for the unit group.",
"type": "string",
"example": 4815000000044352
},
"unit_conversions": {
"type": "array",
"description": "List of unit conversions in the unit group.",
"items": {
"type": "object",
"properties": {
"unit_conversion_id": {
"description": "Unique ID of the unit conversion. Required when updating an existing conversion.",
"type": "string",
"example": 4815000000044354
},
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from the base unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
}
}
}
}
}
},
"update-unit-group-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "Unit group has been updated.",
"readOnly": true
},
"unit_group": {
"$ref": "#/components/schemas/unit-group-response"
}
}
},
"delete-unit-group-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "The unit group has been deleted.",
"readOnly": true
}
}
},
"unit-response": {
"type": "object",
"properties": {
"unit_id": {
"description": "Unique ID generated by the server for the unit.",
"type": "string",
"example": 4815000000044400
},
"name": {
"description": "Name of the unit.",
"type": "string",
"example": "kilogram"
},
"unit": {
"description": "Short code of the unit.",
"type": "string",
"example": "kg"
},
"uqc": {
"description": "Unique Quantity Code of the unit.",
"type": "string"
},
"quantity_decimal_place": {
"description": "Number of decimal places for the unit.",
"type": "integer",
"example": 2
},
"unit_conversions": {
"type": "array",
"description": "List of unit conversions for this unit. Returned only when <code>include_unit_conversions</code> is <code>true</code>.",
"items": {
"type": "object",
"properties": {
"unit_conversion_id": {
"description": "Unique ID of the unit conversion.",
"type": "string",
"example": 4815000000044354
},
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from this unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
},
"unit_group_id": {
"description": "Unique ID of the unit group the conversion belongs to.",
"type": "string",
"example": 4815000000044350
}
}
}
}
}
},
"unit-conversion-detail-response": {
"type": "object",
"properties": {
"unit_conversion_id": {
"description": "Unique ID of the unit conversion.",
"type": "string",
"example": 4815000000044354
},
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from the base unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
},
"target_unit": {
"description": "Short code of the target unit.",
"type": "string",
"example": "g"
}
}
},
"list-units-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "success",
"readOnly": true
},
"units": {
"type": "array",
"items": {
"$ref": "#/components/schemas/unit-response"
}
}
}
},
"create-unit-request": {
"required": [
"name",
"unit"
],
"type": "object",
"properties": {
"name": {
"description": "Name of the unit.",
"type": "string",
"example": "kilogram"
},
"unit": {
"description": "Short code of the unit.",
"type": "string",
"example": "kg"
},
"uqc": {
"description": "Unique Quantity Code of the unit.",
"type": "string"
},
"quantity_decimal_place": {
"description": "Number of decimal places for the unit.",
"type": "integer",
"example": 2
},
"unit_conversions": {
"type": "array",
"description": "List of unit conversions to add to the unit.",
"items": {
"type": "object",
"properties": {
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from this unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
}
}
}
}
}
},
"create-unit-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "Unit has been added.",
"readOnly": true
},
"unit": {
"$ref": "#/components/schemas/unit-response"
}
}
},
"update-unit-request": {
"type": "object",
"properties": {
"name": {
"description": "Name of the unit.",
"type": "string",
"example": "kilogram"
},
"unit": {
"description": "Short code of the unit.",
"type": "string",
"example": "kg"
},
"uqc": {
"description": "Unique Quantity Code of the unit.",
"type": "string"
},
"quantity_decimal_place": {
"description": "Number of decimal places for the unit.",
"type": "integer",
"example": 2
},
"unit_conversions": {
"type": "array",
"description": "List of unit conversions for this unit.",
"items": {
"type": "object",
"properties": {
"unit_conversion_id": {
"description": "Unique ID of the unit conversion. Required when updating an existing conversion.",
"type": "string",
"example": 4815000000044354
},
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from this unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
}
}
}
}
}
},
"update-unit-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "Unit has been updated.",
"readOnly": true
},
"unit": {
"$ref": "#/components/schemas/unit-response"
}
}
},
"delete-unit-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "The unit has been deleted.",
"readOnly": true
}
}
},
"create-unit-conversion-request": {
"required": [
"target_unit_id",
"conversion_rate"
],
"type": "object",
"properties": {
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from the base unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
}
}
},
"create-unit-conversion-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "Unit conversion has been added.",
"readOnly": true
},
"unit_conversion": {
"$ref": "#/components/schemas/unit-conversion-detail-response"
}
}
},
"list-unit-conversions-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "success",
"readOnly": true
},
"unit_conversions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/unit-conversion-detail-response"
}
}
}
},
"update-unit-conversion-request": {
"type": "object",
"properties": {
"target_unit_id": {
"description": "Unique ID of the target unit.",
"type": "string",
"example": 4815000000044356
},
"conversion_rate": {
"description": "Conversion rate from the base unit to the target unit.",
"type": "number",
"format": "double",
"example": 1000
}
}
},
"update-unit-conversion-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "Unit conversion has been updated.",
"readOnly": true
},
"unit_conversion": {
"$ref": "#/components/schemas/unit-conversion-detail-response"
}
}
},
"delete-unit-conversion-response": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"example": 0,
"readOnly": true
},
"message": {
"type": "string",
"example": "The unit conversion has been deleted.",
"readOnly": true
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/unit_of_measurement"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.