create-user
Add new users to the system by specifying name, email, address, age, and phone details, ensuring complete user profiles for management.
Instructions
Create a new user in the system
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| address | Yes | ||
| age | Yes | ||
| Yes | |||
| name | Yes | ||
| phone | Yes | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "address": {
      "type": "string"
    },
    "age": {
      "minimum": 0,
      "type": "integer"
    },
    "email": {
      "format": "email",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "email",
    "address",
    "age",
    "phone"
  ],
  "type": "object"
}