convert_computer_data
Convert computer storage values between units like bits, bytes, kilobytes, and more using an easy-to-use tool for accurate data measurement transformations.
Instructions
Convert computer storage between units.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_unit | Yes | Source unit | |
to_unit | Yes | Target unit | |
value | Yes | Computer storage value to convert |
Input Schema (JSON Schema)
{
"properties": {
"from_unit": {
"description": "Source unit",
"enum": [
"bits",
"bytes",
"kilobytes",
"megabytes",
"gigabytes",
"terabytes",
"petabytes",
"exabytes"
],
"title": "From Unit",
"type": "string"
},
"to_unit": {
"description": "Target unit",
"enum": [
"bits",
"bytes",
"kilobytes",
"megabytes",
"gigabytes",
"terabytes",
"petabytes",
"exabytes"
],
"title": "To Unit",
"type": "string"
},
"value": {
"description": "Computer storage value to convert",
"title": "Value",
"type": "number"
}
},
"required": [
"value",
"from_unit",
"to_unit"
],
"type": "object"
}