> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Extend the eCommerce Platform with Schema Plugins ## Article: Extend the eCommerce Platform with Schema Plugins ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/guides/extend-the-e-commerce-platform-with-schema-plugins.md ## Article Content: # Extend the eCommerce Platform with Schema Plugins Every Wix API has a service object with predefined fields, which can’t be removed or changed. But sometimes, the fields that the object provides aren’t enough. For example, if your app uses the Order object for handling visitors' orders, you may want to include custom warranty information as part of the order. Out of the box, the Order object doesn't have a field for this. [Schema plugins](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md) solve this problem. You can use schema plugins to extend an object with additional fields. This allows you to store data that the object doesn’t otherwise support. Once added, these fields can be read and written using the object's regular endpoints, just like any other field in the object. Currently, you can extend the following Wix eCommerce objects with schema plugins: - [Checkout object](https://dev.wix.com/docs/rest/business-solutions/e-commerce/checkout/checkout-object.md) - [Order object](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/order-object.md) Learn more [about schema plugins](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md) and [how to implement them](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/extend-an-existing-object.md).