{"id":110717,"date":"2018-02-02T11:38:03","date_gmt":"2018-02-02T11:38:03","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=110717"},"modified":"2024-02-16T13:01:35","modified_gmt":"2024-02-16T13:01:35","slug":"depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/","title":{"rendered":"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#8217;s field"},"content":{"rendered":"\n<p>If you are working on your Magento, to implement functionality releated to Magento&#8217;s product&#8217;s attribute, and if you are displaying them in admin product form, and want to depend one of the field on other field&#8217;s value then this blog is helpful for you.<\/p>\n\n\n\n<p>For example:<br>You have two attribute of product: field_main and field_sub.<br>Your attribute field_sub is dependent on field_main attribute&#8217;s value.<br>Now, you need to add following code in your plugin:<\/p>\n\n\n\n<p>firstly you have to create a file at path:<br>app\/code\/Webkul\/Test\/etc\/adminhtml\/di.xml<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n    &lt;virtualType name=&quot;Magento\\Catalog\\Ui\\DataProvider\\Product\\Form\\Modifier\\Pool&quot;&gt;\n        &lt;arguments&gt;\n            &lt;argument name=&quot;modifiers&quot; xsi:type=&quot;array&quot;&gt;\n                &lt;item name=&quot;field_sub&quot; xsi:type=&quot;array&quot;&gt;\n                    &lt;item name=&quot;class&quot; xsi:type=&quot;string&quot;&gt;Webkul\\Test\\Ui\\DataProvider\\Product\\Form\\Modifier\\FieldSub&lt;\/item&gt;\n                    &lt;item name=&quot;sortOrder&quot; xsi:type=&quot;number&quot;&gt;10&lt;\/item&gt;\n                &lt;\/item&gt;\n            &lt;\/argument&gt;\n        &lt;\/arguments&gt;\n    &lt;\/virtualType&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>Now define your attribute&#8217;s data provider:<\/p>\n\n\n\n<p>create file at path:<\/p>\n\n\n\n<p>Webkul\\Test\\Ui\\DataProvider\\Product\\Form\\Modifier\\FieldSub.php<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\Test\\Ui\\DataProvider\\Product\\Form\\Modifier;\n\nuse Magento\\Framework\\Stdlib\\ArrayManager;\n\nclass FieldSub extends \\Magento\\Catalog\\Ui\\DataProvider\\Product\\Form\\Modifier\\AbstractModifier\n{\n    \/**\n     * @var ArrayManager\n     * @since 101.0.0\n     *\/\n    protected $arrayManager;\n\n    public function __construct(\n        ArrayManager $arrayManager\n    ) {\n        $this-&gt;arrayManager = $arrayManager;\n    }\n\n    public function modifyMeta(array $meta)\n    {\n        $meta = $this-&gt;customizeFieldSub($meta);\n\n        return $meta;\n    }\n\n    public function modifyData(array $data)\n    {\n        return $data;\n    }\n\n    protected function customizeFieldSub(array $meta)\n    {\n        $weightPath = $this-&gt;arrayManager-&gt;findPath(&#039;field_sub&#039;, $meta, null, &#039;children&#039;);\n\n        if ($weightPath) {\n            $meta = $this-&gt;arrayManager-&gt;merge(\n                $weightPath . static::META_CONFIG_PATH,\n                $meta,\n                &#091;\n                    &#039;dataScope&#039; =&gt; &#039;field_sub&#039;,\n                    &#039;validation&#039; =&gt; &#091;\n                        &#039;required-entry&#039; =&gt; true,\n                        &#039;validate-zero-or-greater&#039; =&gt; true\n                    ],\n                    &#039;additionalClasses&#039; =&gt; &#039;admin__field-small&#039;,\n                    &#039;imports&#039; =&gt; &#091;\n                        &#039;disabled&#039; =&gt; &#039;!${$.provider}:&#039; . self::DATA_SCOPE_PRODUCT\n                            . &#039;.field_main:value&#039;\n                    ]\n                ]\n            );\n        }\n        return $meta;\n    }\n}<\/pre>\n\n\n\n<p>Here,<\/p>\n\n\n\n<p>in di.xml we map the field&#8217;s data provider.<\/p>\n\n\n\n<p>in fieldSub.php file,<\/p>\n\n\n\n<p>modifyMeta() calls to modify the attribute, in this function we added additional checks to our field, which are:<\/p>\n\n\n\n<p>data_scope: is the name of the field (field code)<\/p>\n\n\n\n<p>validation: validations which we want to apply on our filed.<\/p>\n\n\n\n<p>additionalClasses : if want to add additional class to our field.<\/p>\n\n\n\n<p>imports: in this we pass the attributes value, like: disabled, product-id, or any other attribute to add in element.<\/p>\n\n\n\n<p>After this flush the cache, and your field (field_sub) will be dependent on other field&#8217;s (field_main) value.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1157\" height=\"614\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png\" alt=\"field_depend-1\" class=\"wp-image-422675\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png 1157w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1-300x159.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1-250x133.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1-768x408.png 768w\" sizes=\"(max-width: 1157px) 100vw, 1157px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>I hope this blog will help you with Dependency of One Attribute field on Another Attribute&#8217;s field in Admin form for Magento 2. You may also check our wide range of best <a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 Extensions<\/a>.<\/p>\n\n\n\n<p>Please reach out to our team via a<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\"> support ticket<\/a> if you have any queries.<\/p>\n\n\n\n<p>Try this and if you have any queries then just comment below \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you are working on your Magento, to implement functionality releated to Magento&#8217;s product&#8217;s attribute, and if you are displaying them in admin product form, and want to depend one of the field on other field&#8217;s value then this blog is helpful for you. For example:You have two attribute of product: field_main and field_sub.Your attribute <a href=\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":68,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[6125,354,2070],"class_list":["post-110717","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-admin-product-form","tag-attribute","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#039;s field<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#039;s field\" \/>\n<meta property=\"og:description\" content=\"If you are working on your Magento, to implement functionality releated to Magento&#8217;s product&#8217;s attribute, and if you are displaying them in admin product form, and want to depend one of the field on other field&#8217;s value then this blog is helpful for you. For example:You have two attribute of product: field_main and field_sub.Your attribute [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-02T11:38:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-16T13:01:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png\" \/>\n<meta name=\"author\" content=\"Bulbul\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bulbul\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\"},\"author\":{\"name\":\"Bulbul\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e\"},\"headline\":\"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#8217;s field\",\"datePublished\":\"2018-02-02T11:38:03+00:00\",\"dateModified\":\"2024-02-16T13:01:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\"},\"wordCount\":287,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png\",\"keywords\":[\"admin product form\",\"Attribute\",\"Magento2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\",\"name\":\"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute's field\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png\",\"datePublished\":\"2018-02-02T11:38:03+00:00\",\"dateModified\":\"2024-02-16T13:01:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png\",\"width\":1157,\"height\":614,\"caption\":\"field_depend-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#8217;s field\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e\",\"name\":\"Bulbul\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Bulbul\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/bulbul896\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute's field","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute's field","og_description":"If you are working on your Magento, to implement functionality releated to Magento&#8217;s product&#8217;s attribute, and if you are displaying them in admin product form, and want to depend one of the field on other field&#8217;s value then this blog is helpful for you. For example:You have two attribute of product: field_main and field_sub.Your attribute [...]","og_url":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-02-02T11:38:03+00:00","article_modified_time":"2024-02-16T13:01:35+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png","type":"","width":"","height":""}],"author":"Bulbul","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Bulbul","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/"},"author":{"name":"Bulbul","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e"},"headline":"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#8217;s field","datePublished":"2018-02-02T11:38:03+00:00","dateModified":"2024-02-16T13:01:35+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/"},"wordCount":287,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png","keywords":["admin product form","Attribute","Magento2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/","url":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/","name":"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute's field","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png","datePublished":"2018-02-02T11:38:03+00:00","dateModified":"2024-02-16T13:01:35+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/field_depend-1.png","width":1157,"height":614,"caption":"field_depend-1"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/depend-one-attribute-field-on-another-ttributes-field-admin-form-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Admin form for Magento 2: Dependency of One Attribute field on Another Attribute&#8217;s field"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c9c6288b3950490ffdb37cb2a526996e","name":"Bulbul","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/37ea7175f5ae6557d01bb38e147f6a02a540714ecdb71770d8ec554d4d34c23f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Bulbul"},"url":"https:\/\/webkul.com\/blog\/author\/bulbul896\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/110717","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/68"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=110717"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/110717\/revisions"}],"predecessor-version":[{"id":422678,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/110717\/revisions\/422678"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=110717"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=110717"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=110717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}