Variable: JSONTypeSchema

const JSONTypeSchema: Record<string, any>

JSON schema definition for JSON values (object, array, string, number, boolean, null).

Example

const MySchema = {
    type: "object",
    properties: {
      myJsonField: JSONTypeSchema,
    },
  }
ON THIS PAGE