Interface InputSchema

interface InputSchema {
    properties?: Properties;
    required?: string[];
    type: "object";
}

Properties

properties?: Properties
required?: string[]
type: "object"