{"id":348983,"date":"2022-08-23T14:09:04","date_gmt":"2022-08-23T14:09:04","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=348983"},"modified":"2022-08-24T15:08:50","modified_gmt":"2022-08-24T15:08:50","slug":"how-to-create-a-new-attribute-type-in-akeneo","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/","title":{"rendered":"How to create a New Attribute Type in Akeneo"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png\" alt=\"How to create a New Attribute Type in Akeneo\" class=\"wp-image-349007\" width=\"820\" height=\"644\" title=\"AHow to create a New Attribute Type in Akeneo\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png 1120w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type-300x236.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type-250x196.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type-768x603.png 768w\" sizes=\"(max-width: 820px) 100vw, 820px\" loading=\"lazy\" \/><figcaption><strong>Choose attribute type in Akeneo<\/strong><\/figcaption><\/figure>\n\n\n\n<h2 class=\"has-text-align-left wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>An attribute is a product\u2019s characteristic. A product is usually composed of several attributes: an identification number, a name, a description, a price, a color&#8230; Depending on your Akeneo Edition version (Community or Enterprise), you can choose from&nbsp;<strong>18 attribute types<\/strong>.<\/p>\n\n\n\n<p>A product family is the collection of attributes that will be the same for all products related to that family. After creating the attribute and attribute group we assign them to a product family., check our&nbsp;<a href=\"https:\/\/webkul.com\/blog\/product-families-and-categories-in-akeneo\/\" target=\"_blank\" rel=\"noreferrer noopener\">What is family?<\/a>&nbsp;article.<\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\">View Post<\/a><\/p>\n\n\n\n<p>You can easily create attribute groups to gather your attributes and ease their enrichment in the product form. Read the article to get more information about attribute groups:&nbsp;<a href=\"https:\/\/webkul.com\/blog\/how-to-create-attributes-in-akeneo\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Create Attributes and Attributes Groups in Akeneo?<\/a><\/p>\n\n\n\n<p>let&#8217;s start with how to create a new attribute type in Akeneo<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\">How to create a new attribute type in Akeneo<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>1. The first thing we need is to declare a new service for the New Attribute Type (below attribute type name taken as &#8216;url_media&#8217;)<\/strong><\/h4>\n\n\n\n<p>Make sure that the file containing your declaration is correctly loaded by your bundle extension.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">parameters:\n    acme_catalog.attribute_type.url_media.class: Acme\\Bundle\\AttributeTypeBundle\\Component\\AttributeType\\UrlMediaType\n    \nservices:\n    acme_catalog.attributetype.url_media:\n        class: &#039;%acme_catalog.attribute_type.url_media.class%&#039;\n        arguments:\n            - &#039;text&#039;\n        tags:\n            - { name: pim_catalog.attribute_type, alias: pim_catalog_url_media, entity: &#039;%pim_catalog.entity.product.class% }<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>2. Create a class of above register attribute type service<\/strong><\/h4>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace  Acme\\Bundle\\AttributeTypeBundle\\Component\\AttributeType;\n\nuse Akeneo\\Pim\\Structure\\Component\\AttributeType\\AbstractAttributeType;\n\nclass UrlMediaType extends AbstractAttributeType\n{\n     \/**\n      * {@inheritdoc}\n      *\/\n     public function getName()\n     {\n         return &#039;pim_catalog_url_media&#039;;\n     }\n }<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>3. Add Attribute Type custom icon&nbsp;<\/strong><\/h4>\n\n\n\n<p>a) Add the below configuration in &#8216;Acme\/Bundle\/AttributeTypeBundle\/Resources\/config\/requirejs.yml&#8217;<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">config:\n    config:\n        pim\/form\/common\/attributes\/create-button:\n            attribute_icons:\n                pim_catalog_url_media: url_media<\/pre>\n\n\n\n<p>b) Create less file in &#8216;Acme\/Bundle\/AttributeTypeBundle\/Resources\/public\/less\/index.less&#8217; and add icon path as given below reference<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">.AknButton-squareIcon--url_media {\n    background-image: url(&quot;..\/bundles\/attributetype\/images\/icon-url_media.svg&quot;);\n}<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>4. Run the following command using the terminal at your PIM root directory. <\/strong><\/h4>\n\n\n\n<p>( Note: Please note that neither the Apache user or the CLI should be the root user of the system. )<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console cache:clear --env=prod &amp;&amp; php bin\/console pim:installer:assets --symlink --clean --env=prod &amp;&amp; yarn run webpack &amp;&amp; php bin\/console d:s:u --force<\/pre>\n\n\n\n<p>Please explore our&nbsp;<a href=\"https:\/\/webkul.com\/akeneo\/\" target=\"_blank\" rel=\"noreferrer noopener\">Akeneo Development Services<\/a>&nbsp;and Quality&nbsp;<a href=\"https:\/\/store.webkul.com\/Akeneo.html\" target=\"_blank\" rel=\"noreferrer noopener\">Akeneo Extensions<\/a>.<\/p>\n\n\n\n<p>For more Akeneo blogs <a href=\"https:\/\/webkul.com\/blog\/?s=akeneo\" target=\"_blank\" rel=\"noreferrer noopener\">click here<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction An attribute is a product\u2019s characteristic. A product is usually composed of several attributes: an identification number, a name, a description, a price, a color&#8230; Depending on your Akeneo Edition version (Community or Enterprise), you can choose from&nbsp;18 attribute types. A product family is the collection of attributes that will be the same for <a href=\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":399,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[3649,5829,590],"class_list":["post-348983","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-akeneo","tag-pim","tag-webkul"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create a New Attribute Type in Akeneo - Webkul Blog<\/title>\n<meta name=\"description\" content=\"How to create a New Attribute Type in Akeneo: The first thing we need is to declare a new service for the New Attribute Type\" \/>\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\/how-to-create-a-new-attribute-type-in-akeneo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create a New Attribute Type in Akeneo - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"How to create a New Attribute Type in Akeneo: The first thing we need is to declare a new service for the New Attribute Type\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\" \/>\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=\"2022-08-23T14:09:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-24T15:08:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png\" \/>\n<meta name=\"author\" content=\"Nitesh Arora\" \/>\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=\"Nitesh Arora\" \/>\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\/how-to-create-a-new-attribute-type-in-akeneo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\"},\"author\":{\"name\":\"Nitesh Arora\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b0c0c713bd646e411ad5b4563364bb0\"},\"headline\":\"How to create a New Attribute Type in Akeneo\",\"datePublished\":\"2022-08-23T14:09:04+00:00\",\"dateModified\":\"2022-08-24T15:08:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\"},\"wordCount\":298,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png\",\"keywords\":[\"Akeneo\",\"pim\",\"webkul\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\",\"name\":\"How to create a New Attribute Type in Akeneo - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png\",\"datePublished\":\"2022-08-23T14:09:04+00:00\",\"dateModified\":\"2022-08-24T15:08:50+00:00\",\"description\":\"How to create a New Attribute Type in Akeneo: The first thing we need is to declare a new service for the New Attribute Type\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png\",\"width\":1120,\"height\":880,\"caption\":\"attribute_type\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create a New Attribute Type in Akeneo\"}]},{\"@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\/3b0c0c713bd646e411ad5b4563364bb0\",\"name\":\"Nitesh Arora\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2628caeef979fc167146e3d99675895a39d9ca9c9105fef4b733893fd28a25f5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2628caeef979fc167146e3d99675895a39d9ca9c9105fef4b733893fd28a25f5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Nitesh Arora\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/nitesh-arora945\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create a New Attribute Type in Akeneo - Webkul Blog","description":"How to create a New Attribute Type in Akeneo: The first thing we need is to declare a new service for the New Attribute Type","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\/how-to-create-a-new-attribute-type-in-akeneo\/","og_locale":"en_US","og_type":"article","og_title":"How to create a New Attribute Type in Akeneo - Webkul Blog","og_description":"How to create a New Attribute Type in Akeneo: The first thing we need is to declare a new service for the New Attribute Type","og_url":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-08-23T14:09:04+00:00","article_modified_time":"2022-08-24T15:08:50+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png","type":"","width":"","height":""}],"author":"Nitesh Arora","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Nitesh Arora","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/"},"author":{"name":"Nitesh Arora","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b0c0c713bd646e411ad5b4563364bb0"},"headline":"How to create a New Attribute Type in Akeneo","datePublished":"2022-08-23T14:09:04+00:00","dateModified":"2022-08-24T15:08:50+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/"},"wordCount":298,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png","keywords":["Akeneo","pim","webkul"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/","url":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/","name":"How to create a New Attribute Type in Akeneo - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png","datePublished":"2022-08-23T14:09:04+00:00","dateModified":"2022-08-24T15:08:50+00:00","description":"How to create a New Attribute Type in Akeneo: The first thing we need is to declare a new service for the New Attribute Type","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/attribute_type.png","width":1120,"height":880,"caption":"attribute_type"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-a-new-attribute-type-in-akeneo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create a New Attribute Type in Akeneo"}]},{"@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\/3b0c0c713bd646e411ad5b4563364bb0","name":"Nitesh Arora","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2628caeef979fc167146e3d99675895a39d9ca9c9105fef4b733893fd28a25f5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2628caeef979fc167146e3d99675895a39d9ca9c9105fef4b733893fd28a25f5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Nitesh Arora"},"url":"https:\/\/webkul.com\/blog\/author\/nitesh-arora945\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/348983","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\/399"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=348983"}],"version-history":[{"count":45,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/348983\/revisions"}],"predecessor-version":[{"id":349390,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/348983\/revisions\/349390"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=348983"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=348983"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=348983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}