Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 816 Bytes

jsonschema.md

File metadata and controls

23 lines (18 loc) · 816 Bytes

JsonSchema

Example Usage

import { JsonSchema } from "@mistralai/mistralai/models/components";

let value: JsonSchema = {
  name: "<value>",
  schemaDefinition: {
    "key": "<value>",
  },
};

Fields

Field Type Required Description
name string ✔️ N/A
description string N/A
schemaDefinition Record<string, any> ✔️ N/A
strict boolean N/A