{"id":349688,"date":"2022-08-29T08:21:45","date_gmt":"2022-08-29T08:21:45","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=349688"},"modified":"2023-05-25T04:10:22","modified_gmt":"2023-05-25T04:10:22","slug":"how-to-regenerate-entity-in-symfony-6-using-cli","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/","title":{"rendered":"How to regenerate entity in symfony-6 using CLI"},"content":{"rendered":"\n<p>In this blog, we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field and use the setter and the getter method, in this solution no need to write the setter and the getter method yourself, you can generate the setter and the getter method using CLI.<\/p>\n\n\n\n<p>Symfony provides all the tools you need to use databases in your applications thanks to&nbsp;<a href=\"https:\/\/www.doctrine-project.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Doctrine<\/a>, the best set of PHP libraries to work with databases. These tools support relational databases like MySQL and PostgreSQL and also NoSQL databases like MongoDB.<\/p>\n\n\n\n<p>Symfony provides all the tools you need to use databases in your applications thanks to&nbsp;<a href=\"https:\/\/www.doctrine-project.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Doctrine<\/a>, the best set of PHP libraries to work with databases. These tools support relational databases like MySQL and PostgreSQL and also NoSQL databases like MongoDB.<\/p>\n\n\n\n<p id=\"block-65e1a5ca-4f17-4d76-bc46-3c22a27bffc4\">you need to follow below few steps-<\/p>\n\n\n\n<p id=\"block-56f1c964-f726-47a8-8eb9-abbe84be53a4\">Step -1: if you have not to install MakerBundle, you will need to install Symfony MakerBundle. use given below composer command and install. <a href=\"https:\/\/symfony.com\/bundles\/SymfonyMakerBundle\/current\/index.html\">https:\/\/symfony.com\/bundles\/SymfonyMakerBundle\/current\/index.html<\/a><\/p>\n\n\n\n<p id=\"block-099ec69b-dc21-44e3-8eb9-ba22ba04e9fb\">First, install Doctrine support via the&nbsp;<code>orm<\/code>&nbsp;<a href=\"https:\/\/symfony.com\/doc\/current\/setup.html#symfony-packs\">Symfony pack<\/a>, as well as the MakerBundle, which will help generate some code.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">composer require --dev symfony\/maker-bundle<\/pre>\n\n\n\n<p>Step-2: if you have not registered the maker bundle then go to the project root directory &#8220;config\/bundles.php&#8221; and register MakerBundle<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">Symfony\\Bundle\\MakerBundle\\MakerBundle::class =&gt; &#091;&#039;dev&#039; =&gt; true, &#039;test&#039; =&gt; true, &#039;prod&#039; =&gt; true]<\/pre>\n\n\n\n<p>Step-3: Suppose you&#8217;re building an application where the Users need to be displayed. Without even thinking about Doctrine or databases, you have already created the User.php entity for using user info. Now open your existing entity class (e.g. Acme\/Bundle\/NotifyConnectorBundle\/Entity\/User.php). Define variables your need in a table column. <a href=\"https:\/\/symfony.com\/doc\/current\/doctrine.html\">https:\/\/symfony.com\/doc\/current\/doctrine.html<\/a><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Acme\\Bundle\\NotifyConnectorBundle\\Entity;\nuse Doctrine\\Common\\Collections\\Collection;\nuse Doctrine\\Orm\\Mapping as ORM;\n\n\/**\n* @ORM\\Entity\n*\/\nclass User\n{\n       \/* * @var string    *\/    \n       protected $designation;\n       \/* * @var string    *\/\n      protected $department;\n}<\/pre>\n\n\n\n<p>Step-4: After defining the variable then Run the given below command. like (php bin\/console make:entity &#8211;regenerate &#8220;namespace of entity class&#8221;)<\/p>\n\n\n\n<p id=\"block-e5bdbe2b-fd50-4eec-8493-10c2cde913d4\"><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console make:entity --regenerate &quot;Acme\\Bundle\\NotifyConnectorBundle\\Entity\\User&quot;<\/pre>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console ca:cl --env=prod;<\/pre>\n\n\n\n<p id=\"block-3d38abac-af07-4e9f-8f29-3fcf49809b93\"> if you want to check that what has generate MY-SQL query then run this command<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console d:s:update --dump-sql;<\/pre>\n\n\n\n<p id=\"block-c8e11286-5860-41f2-bf36-287b59e40098\">  this command update database schema in your database<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/console d:s:update --force;<\/pre>\n\n\n\n<p id=\"block-9599c242-0673-497b-897c-824953fa3479\">After executing the command, now depending on what your defined variable will has been generated the setter and the getter method.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1146\" height=\"270\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png\" alt=\"table-entity\" class=\"wp-image-349720\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png 1146w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity-300x71.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity-250x59.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity-768x181.png 768w\" sizes=\"(max-width: 1146px) 100vw, 1146px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p id=\"block-6e745a9e-2d61-436d-bd06-4211fc88e9c6\">Thank you!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field and use the setter and the getter method, in this solution no need to write the setter and the getter method yourself, you can generate the <a href=\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":460,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-349688","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to regenerate entity in symfony-6 using CLI - Webkul Blog<\/title>\n<meta name=\"description\" content=\"we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field\" \/>\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-regenerate-entity-in-symfony-6-using-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to regenerate entity in symfony-6 using CLI - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\" \/>\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-29T08:21:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-25T04:10:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png\" \/>\n<meta name=\"author\" content=\"Vipin Yadav\" \/>\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=\"Vipin Yadav\" \/>\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-regenerate-entity-in-symfony-6-using-cli\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\"},\"author\":{\"name\":\"Vipin Yadav\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f02cd102f4b3819f40243c149504d86c\"},\"headline\":\"How to regenerate entity in symfony-6 using CLI\",\"datePublished\":\"2022-08-29T08:21:45+00:00\",\"dateModified\":\"2023-05-25T04:10:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\"},\"wordCount\":364,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\",\"name\":\"How to regenerate entity in symfony-6 using CLI - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png\",\"datePublished\":\"2022-08-29T08:21:45+00:00\",\"dateModified\":\"2023-05-25T04:10:22+00:00\",\"description\":\"we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png\",\"width\":1146,\"height\":270,\"caption\":\"table-entity\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to regenerate entity in symfony-6 using CLI\"}]},{\"@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\/f02cd102f4b3819f40243c149504d86c\",\"name\":\"Vipin Yadav\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/bc438188cd8679430881b3f44cd6e63b9feab1b29fcecb3e9720356e68bd4e5d?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\/bc438188cd8679430881b3f44cd6e63b9feab1b29fcecb3e9720356e68bd4e5d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vipin Yadav\"},\"description\":\"Vipin Yadav is a Software Engineer specializing in the Akeneo platform, with expertise in CMS Integration and Digital Asset Management services. Proficient in jQuery and eCommerce marketplace development, Vipin delivers seamless, innovative solutions that enhance digital operations and drive business growth.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/vipinyadav-akeneo432\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to regenerate entity in symfony-6 using CLI - Webkul Blog","description":"we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new 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\/how-to-regenerate-entity-in-symfony-6-using-cli\/","og_locale":"en_US","og_type":"article","og_title":"How to regenerate entity in symfony-6 using CLI - Webkul Blog","og_description":"we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field","og_url":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-08-29T08:21:45+00:00","article_modified_time":"2023-05-25T04:10:22+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png","type":"","width":"","height":""}],"author":"Vipin Yadav","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vipin Yadav","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/"},"author":{"name":"Vipin Yadav","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f02cd102f4b3819f40243c149504d86c"},"headline":"How to regenerate entity in symfony-6 using CLI","datePublished":"2022-08-29T08:21:45+00:00","dateModified":"2023-05-25T04:10:22+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/"},"wordCount":364,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/","url":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/","name":"How to regenerate entity in symfony-6 using CLI - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png","datePublished":"2022-08-29T08:21:45+00:00","dateModified":"2023-05-25T04:10:22+00:00","description":"we will discuss how to regenerate entity in symfony-6 using CLI. If you have already maked an entity and you want to add a new field","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/08\/table-entity.png","width":1146,"height":270,"caption":"table-entity"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-regenerate-entity-in-symfony-6-using-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to regenerate entity in symfony-6 using CLI"}]},{"@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\/f02cd102f4b3819f40243c149504d86c","name":"Vipin Yadav","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/bc438188cd8679430881b3f44cd6e63b9feab1b29fcecb3e9720356e68bd4e5d?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\/bc438188cd8679430881b3f44cd6e63b9feab1b29fcecb3e9720356e68bd4e5d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vipin Yadav"},"description":"Vipin Yadav is a Software Engineer specializing in the Akeneo platform, with expertise in CMS Integration and Digital Asset Management services. Proficient in jQuery and eCommerce marketplace development, Vipin delivers seamless, innovative solutions that enhance digital operations and drive business growth.","url":"https:\/\/webkul.com\/blog\/author\/vipinyadav-akeneo432\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/349688","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\/460"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=349688"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/349688\/revisions"}],"predecessor-version":[{"id":383508,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/349688\/revisions\/383508"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=349688"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=349688"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=349688"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}