Learning Resources

json Property Method - API Reference

This method defines a property whose value is a stringified JSON object.

Example#

Code
1import { model } from "@medusajs/utils"2
3const MyCustom = model.define("my_custom", {4  metadata: model.json(),5  // ...6})7
8export default MyCustom
Was this page helpful?