{"id":2152,"date":"2010-12-14T08:56:32","date_gmt":"2010-12-14T12:56:32","guid":{"rendered":"http:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/"},"modified":"2010-12-14T09:03:56","modified_gmt":"2010-12-14T13:03:56","slug":"how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/","title":{"rendered":"How to add custom attribute, Object Classe in OID from command line or GUI"},"content":{"rendered":"<p>I discussed about <strong>Attribute<\/strong> and <strong>Object Class <\/strong>in Oracle Internet Directory (OID)\u00a0in my previous post <a target=\"_blank\" href=\"https:\/\/onlineappsdba.com\/index.php\/2010\/09\/28\/oiddirectory-services-11g-schema-object-class-attributes\/\">here<\/a>\u00a0 . OID comes with default attributes and objects classes and provides mechanism (Graphical User Interface &#8211; GUI\u00a0and Command Line Interface &#8211; CLI) to add attributes and objects classes (<font color=\"#ff0000\">Process of adding attributes and object classes is also known as OID Schema Extension<\/font>)<\/p>\n<p>In this post I am going to show <strong>how to add attributes and object class<\/strong> both from CLI and GUI.<\/p>\n<p><strong><u>First some theory<\/u><\/strong> :<\/p>\n<p><strong>1.<\/strong> ODSM more <a target=\"_blank\" href=\"https:\/\/onlineappsdba.com\/index.php\/2009\/09\/30\/oid-11g-oracle-directory-services-manager-odsm\/\">here<\/a>,\u00a0 is a Graphical Tool to create\/view\/manage Attributes\/Object Classes (Select tab <strong>Schema<\/strong> &amp; then select <strong>Attributes<\/strong> or <strong>Object Classes<\/strong>)<\/p>\n<p><strong>2.<\/strong> OID schema is stored under <strong>cn=subschemasubentry <\/strong>at Root DSE (Directory Server Entry)<strong>\u00a0<\/strong><\/p>\n<p><strong>3.<\/strong> To read schema definition (list of defined attributes, object classes) run<br \/>\n<strong>\u00a0ldapsearch -h [host] -p [port] -b &#8220;cn=subschemasubentry&#8221; -s base &#8220;objectclass=*&#8221;<\/strong>\u00a0 (where host is OID server and Port is OID port)<\/p>\n<p><strong>4. <\/strong>Use ldapmodify (LDAP command) to define new attribute\/object class<\/p>\n<p>.<\/p>\n<p>.<\/p>\n<p><strong><u>How to add attribute from GUI ?<\/u><\/strong><\/p>\n<p><strong>1. <\/strong>Login to ODSM <strong>http:\/\/server:port\/odsm<\/strong>(where server is hostname of machine where ODSM\/WebLogic <strong>wls_ods1<\/strong> managed server is running and port is <strong>wls_ods1<\/strong> managed server port\u00a0i.e. <strong>7005<\/strong>)<\/p>\n<p><strong>2.<\/strong> Select tab <strong>Schema<\/strong><\/p>\n<p><strong>3.<\/strong> Click on <strong>Attributes<\/strong> or <strong>Object Classes<\/strong><\/p>\n<p><strong>4.<\/strong> Click on <strong>Add<\/strong> button<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif\"><img decoding=\"async\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif\" \/><\/a><\/p>\n<p>.<\/p>\n<p>.<\/p>\n<p><u><strong>How to add attribute from CLI ?<\/strong><\/u><\/p>\n<p><strong>1.<\/strong>Create a ldif file with list of all attributes and object classes like<\/p>\n<p>_________________________<\/p>\n<p>dn: cn=subschemasubentry<br \/>\nchangetype: modify<br \/>\n<strong>add: attributetypes<br \/>\n<\/strong>attributetypes: ( 99.99.99.99.01 NAME &#8216;attribute1&#8217; DESC &#8216;Custom Attribute 1&#8217; EQUALITY caseIgnoreMatch SYNTAX &#8216;1.3.3.4.1.1466.115.121.1.15&#8217; )<\/p>\n<p>dn: cn=subschemasubentry<br \/>\nchangetype: modify<br \/>\n<strong>add: attributetypes<\/strong><br \/>\nattributetypes: ( 99.99.99.99.02 NAME &#8216;attribute2&#8217; DESC &#8216;Custom Attribute 2&#8217; EQUALITY caseIgnoreMatch SYNTAX &#8216;1.3.3.4.1.1466.115.121.1.15&#8217; )<\/p>\n<p>dn: cn=subschemasubentry<br \/>\nchangetype: modify<br \/>\n<strong>add: objectClasses<\/strong><br \/>\nobjectClassess: ( 99.99.99.99.03 NAME &#8216;class1&#8217; DESC &#8216;custom object class 1&#8217; SUP top\u00a0STRUCTURAL MUST cn\u00a0MAY ( Attribute1 $ Attribute2 ) )<\/p>\n<p>dn: cn=subschemasubentry<br \/>\nchangetype: modify<br \/>\n<strong>add: objectClasses<br \/>\n<\/strong>objectClassess: ( 99.99.99.99.04 NAME &#8216;class2&#8217; DESC &#8216;custom object class 2&#8217; SUP top AUXILIARY MAY ( Attribute1 $ Attribute2 ) )<\/p>\n<p>_________________<\/p>\n<p>Lets understand what is in above\u00a0LDIF\u00a0file<\/p>\n<p><strong>a)<\/strong> I am creating two attributes and two object classes\u00a0using LDIF file above .<\/p>\n<p><strong>B)<\/strong>\u00a0\u00a0Each attribute\/object class is separated by blank line (<font color=\"#ff0000\">You will hit error if you don&#8217;t leave blank line between two attributes\/object classes<\/font>)<\/p>\n<p><strong>c)<\/strong> Number 99.99.99.99.0X represents <a target=\"_blank\" href=\"http:\/\/en.wikipedia.org\/wiki\/Object_identifier\">Object Identifier<\/a>\u00a0which is unique number<\/p>\n<p><strong>d)<\/strong>\u00a0attribute1\/2,\u00a0class1\/2 represents <strong>name of <\/strong>attribute or object class<\/p>\n<p><strong>e)<\/strong>\u00a0\u00a0EQUALITY caseIgnoreMatch represents that attribute is case <strong>insensitive<\/strong><\/p>\n<p><strong>f)<\/strong> SYNTAX &#8216;1.3.3.4.1.1466.115.121.1.15&#8217;\u00a0 represents that attribute is of type <strong>Directory String<\/strong> . Other option for SYNTAX are Binary, Boolean, Certificate, Audio&#8230;<\/p>\n<p><strong>g)<\/strong> SUP top in object class represents that Super class for particular Object class is top (top\u00a0is object class of OID)<\/p>\n<p><strong>h)<\/strong> STRUCTURAL (objectclass1), AUXILIARY (objectclass2) represents object class type (<font color=\"#ff0000\">In total Object Class are of three type STRUCTURAL, AUXILIARY\u00a0and ABSTRACT<\/font>\u00a0)<\/p>\n<p><strong>i)<\/strong> MUST represents mandatory\u00a0attributes and MAY represents optional attributes.<\/p>\n<p><strong>j) <\/strong>Multiple attributes are added by putting then\u00a0between ( ) and $ as seperator<\/p>\n<p><strong>2.<\/strong>\u00a0Next step after creating\u00a0LDIF file is to <strong>load\u00a0this file<\/strong> in OID using<\/p>\n<p><strong>$ORACLE_HOME\/bin\/ldapadd -h [OID_Host] -p [OID_Port] -D &#8220;cn=orcladmin&#8221; -w\u00a0[orcladmin_password] -f [name_of_LDIF_file]<\/strong>\u00a0 (<font color=\"#ff0000\">Where ORACLE_HOME is set to OID ORACLE_HOME<\/font>)\u00a0<\/p>\n<p><strong>3.<\/strong> Above step will create attribute and object class in OID , next step is to add indexes to attributes loaded above (<font color=\"#ff0000\">Attribute with Indexes are search-able<\/font>)<\/p>\n<p><strong>$ORACLE_HOME\/ldap\/bin\/catalog connect=oiddb add=TRUE attribute=[name_of_attribute] verbose=TRUE\u00a0\u00a0<\/strong>(<font color=\"#ff0000\">Where ORACLE_HOME is set to OID ORACLE_HOME. Make sure ORACLE_INSTANCE is set to OID instance<\/font>)\u00a0<\/p>\n<p>.<\/p>\n<p><strong><u>References<\/u><\/strong><\/p>\n<ul>\n<li><a target=\"_blank\" href=\"http:\/\/download.oracle.com\/docs\/cd\/E14571_01\/oid.1111\/e10029\/schema.htm#OIDAG2376\">Adding Attributes in OID<\/a>\u00a0<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>I discussed about Attribute and Object Class in Oracle Internet Directory (OID)\u00a0in my previous post here\u00a0 . OID comes with [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2152","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add custom attribute, Object Classe in OID from command line or GUI  -<\/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:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add custom attribute, Object Classe in OID from command line or GUI  -\" \/>\n<meta property=\"og:description\" content=\"I discussed about Attribute and Object Class in Oracle Internet Directory (OID)\u00a0in my previous post here\u00a0 . OID comes with [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/\" \/>\n<meta property=\"article:published_time\" content=\"2010-12-14T12:56:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2010-12-14T13:03:56+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/\",\"name\":\"How to add custom attribute, Object Classe in OID from command line or GUI -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif\",\"datePublished\":\"2010-12-14T12:56:32+00:00\",\"dateModified\":\"2010-12-14T13:03:56+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#primaryimage\",\"url\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif\",\"contentUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add custom attribute, Object Classe in OID from command line or GUI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add custom attribute, Object Classe in OID from command line or GUI  -","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:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/","og_locale":"en_US","og_type":"article","og_title":"How to add custom attribute, Object Classe in OID from command line or GUI  -","og_description":"I discussed about Attribute and Object Class in Oracle Internet Directory (OID)\u00a0in my previous post here\u00a0 . OID comes with [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/","article_published_time":"2010-12-14T12:56:32+00:00","article_modified_time":"2010-12-14T13:03:56+00:00","og_image":[{"url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif","type":"","width":"","height":""}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/","url":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/","name":"How to add custom attribute, Object Classe in OID from command line or GUI -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#primaryimage"},"thumbnailUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif","datePublished":"2010-12-14T12:56:32+00:00","dateModified":"2010-12-14T13:03:56+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#primaryimage","url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif","contentUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2010\/09\/oid_schema_2.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2010\/12\/14\/how-to-add-custom-attributes-object-classes-in-oid-from-command-line-or-gui\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"How to add custom attribute, Object Classe in OID from command line or GUI"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/2152","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=2152"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/2152\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=2152"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=2152"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=2152"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}