diff --git a/docs/docs/guides/object-template.mdx b/docs/docs/guides/object-template.mdx index 1275f3beba..41d569875c 100644 --- a/docs/docs/guides/object-template.mdx +++ b/docs/docs/guides/object-template.mdx @@ -5,6 +5,7 @@ title: Creating an Object Template This guide provides a structured approach to defining an object template and creating object instances based on that template. At a high level, the process consists of three key steps: + - Enable template support within the schema. - Populate the template with data. - Create object instances using the predefined template. diff --git a/docs/docs/topics/object-template.mdx b/docs/docs/topics/object-template.mdx index 450524962f..5c2fbcae0f 100644 --- a/docs/docs/topics/object-template.mdx +++ b/docs/docs/topics/object-template.mdx @@ -5,9 +5,10 @@ title: Object Template In many infrastructures, multiple instances of objects share a common structure. Consider network devices: we know in advance port setup for a given model. When documenting this in our source of truth, repeatedly entering the same port details is both inefficient and error-prone. The Object Template feature allows you to create a reusable blueprint for any object. This blueprint can be used to generate multiple instances that adhere to the predefined structure, ensuring uniformity while reducing manual effort. -{/* TODO: Add mock up */} +{/*TODO: Add mock up*/} Within a template, you can define: + - **Node attributes** - Standard properties and characteristics of the object. - **Relationships** - Connections to other nodes in the infrastructure. - **Components** - Sub-elements or modules that belong to the object.