diff --git a/src/pages/services/aem-cf-editor/api/field-properties/index.md b/src/pages/services/aem-cf-editor/api/field-properties/index.md
index 37f7056c..954fc2ba 100644
--- a/src/pages/services/aem-cf-editor/api/field-properties/index.md
+++ b/src/pages/services/aem-cf-editor/api/field-properties/index.md
@@ -40,7 +40,7 @@ function ExtensionRegistration() {
## Allowed Properties
* onChange(value) - is a callback function that gets triggered whenever there is a change in the field's value
-* disable - disable/enable CF Editor field
+* disabled - disable/enable CF Editor field
## API Reference
diff --git a/src/pages/services/aem-cf-editor/api/side-rail/index.md b/src/pages/services/aem-cf-editor/api/side-rail/index.md
new file mode 100644
index 00000000..473d6dcb
--- /dev/null
+++ b/src/pages/services/aem-cf-editor/api/side-rail/index.md
@@ -0,0 +1,143 @@
+---
+title: Properties Rail - AEM Content Fragments Editor Extensibility
+description: Explore the ways to extend and customize Properties Rail in CF Editor
+contributors:
+ - https://github.com/AdobeDocs/uix
+---
+
+# Properties Rail
+
+The properties rail is always present along the right side of CF Editor.
+The extensibility feature allows adding new panels to it, ensuring seamless integration.
+
+![](./side-panel.png)
+
+## Example of adding custom rail panels
+This code snippets demonstrate how to create a custom panel using UIX SDK library and add it to the properties rail of the editor,
+enabling users to access and interact with the custom functionality seamlessly.
+
+```js
+// App.js
+
+import { HashRouter as Router, Routes, Route } from "react-router-dom"
+import ExtensionRegistration from "./ExtensionRegistration"
+import RailContent from "./RailContent";
+
+// ...
+
+function App() {
+ return (
+
+
+
+ } />
+ }
+ />
+ }
+ />
+
+
+
+ )
+ // ...
+}
+
+```
+```js
+// ExtensionRegistration.js
+
+import { register } from "@adobe/uix-guest";
+
+// ...
+
+function ExtensionRegistration() {
+ useEffect(() => {
+ const init = async () => {
+ const registrationConfig = {
+ id: extensionId,
+ methods: {
+ rightPanel: {
+ addRails() {
+ return [
+ {
+ id: "my.company.panel_1",
+ header: "Last Changes",
+ url: '/#/rail/1',
+ icon: 'Export',
+ },
+ {
+ id: "my.company.panel_2",
+ header: "Workflow",
+ url: '/#/rail/2',
+ hotkey: "w",
+ icon: 'Import',
+ },
+ ];
+ },
+ },
+ },
+ };
+ const guestConnection = await register(registrationConfig);
+ }
+ init().catch(console.error)
+ }, []);
+ return IFrame for integration with Host...
+}
+```
+```js
+// RailContent.js
+
+import { attach } from "@adobe/uix-guest";
+
+// ...
+
+export default () => {
+ const { railId } = useParams();
+ if (!railId) {
+ console.error('Rail id parameter is missed');
+ return;
+ }
+
+ // If you need to interact with an AEM instance
+ const connection = await attach({ id: extensionId });
+
+ return (
+
+ Content generate by the extension Rail#{railId}
+
+ );
+};
+
+```
+
+## API Reference
+```ts
+type RailExtensionApi = {
+ rightPanel: {
+ addRails(): ExtensionRail[];
+ };
+};
+
+type ExtensionRail = {
+ id: string;
+ header: string;
+ url: string;
+ icon: string;
+};
+
+```
+| Property | Type | Required | Description |
+|-----------------|------------|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| `id` | `string` | ✔ | Rail panel identification |
+| `header` | `string` | ✔ | Aria label for the rail button. |
+| `url` | `string` | ✔ | The URL of the page to be loaded into the iframe, serving as the content source for the panel. |
+| `icon` | `string` | ✔ | Name of a [React-Spectrum workflow icon](https://react-spectrum.adobe.com/react-spectrum/workflow-icons.html#available-icons) |
+
+### Limitation
+
+Each click on the icon corresponding to the panel will result in the re-rendering of that panel. The panel content is not cached and will be re-rendered.
diff --git a/src/pages/services/aem-cf-editor/api/side-rail/side-panel.png b/src/pages/services/aem-cf-editor/api/side-rail/side-panel.png
new file mode 100644
index 00000000..62edb97f
Binary files /dev/null and b/src/pages/services/aem-cf-editor/api/side-rail/side-panel.png differ