create-schema
Generate and manage schemas for Apache Pinot using a structured JSON input, with options to override existing schemas or force creation when necessary.
Instructions
Create a new schema
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| force | No | ||
| override | No | ||
| schemaJson | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "force": {
      "default": false,
      "type": "boolean"
    },
    "override": {
      "default": true,
      "type": "boolean"
    },
    "schemaJson": {
      "type": "string"
    }
  },
  "required": [
    "schemaJson"
  ],
  "type": "object"
}