split
Divide a JSON file into a specified number of objects for easier processing or analysis. Input the file path and the desired number of objects to split the content efficiently.
Instructions
Split a JSON file into a specified number of objects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numObjects | Yes | ||
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"numObjects": {
"exclusiveMinimum": 0,
"type": "integer"
},
"path": {
"type": "string"
}
},
"required": [
"path",
"numObjects"
],
"type": "object"
}