{"id":11103,"date":"2020-10-27T11:48:19","date_gmt":"2020-10-27T15:48:19","guid":{"rendered":"https:\/\/www.carnaghan.com\/?p=11103"},"modified":"2020-10-28T11:42:19","modified_gmt":"2020-10-28T15:42:19","slug":"getting-started-with-entity-modeling-in-opentext-appworks","status":"publish","type":"post","link":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/","title":{"rendered":"Getting Started with Entity Modeling in OpenText AppWorks"},"content":{"rendered":"\n

AppWorks provides a handy feature for modeling business objects through the use of entities<\/span>. Objects could take the form of any aspect of a business application you are building. For example, if you needed to write an application<\/span> that would be used as part of a school’s administration system you may include entities<\/span> that represented objects such as teachers, students, courses, lessons, and so on. AppWorks provides a nice interface for managing these different types of entities<\/span> and even lets you build relationships. The term entity<\/span> modeling is not new to this platform, the concept behind this has been around for a long time, but it has traditionally been the responsibility of database engineers or software developers<\/span> to define. The low-code platform AppWorks provides now enables business analysts to define these entities<\/span> and relationships, without the need to have a software engineering background.<\/p>\n\n\n\n

All entities<\/span> within AppWorks are typically made up of building blocks. There are four main types of building blocks, structure, presentation, business logic, and functional. Within each of these groups are a number of building blocks you can use to define, design, develop, and publish your application.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

This article focuses on the structure building blocks<\/strong>, which enables us to define properties<\/span> (or fields) as well as to define relationships between entities<\/span>. I demonstrate some of the basic functionality in AppWorks using example entities<\/span> in this article, but this is by no means a full application<\/span> development tutorial, rather a reference<\/span> for the various features of the platform.<\/p>\n\n\n\n

Property Building Block<\/h2>\n\n\n\n

Within structure is the properties building block, which provides a way for us to easily add fields to our entities<\/span>. For example a course within a school may have fields such as name, description, start date, end date, required, etc. Each of these fields can be defined as different data<\/span> type, for example name and description could be defined as text, start and end date could be defined using the date type, and required could be defined as boolean. Currently AppWorks provides 13 different data<\/span> types to choose from when defining a field. These are listed below.<\/p>\n\n\n\n

Boolean<\/td>Duration<\/td>Image<\/td><\/tr>
Currency<\/td>Enumerated Integer<\/td>Integer<\/td><\/tr>
Date<\/td>Enumerated Text<\/td>Long Text<\/td><\/tr>
Date and Time<\/td>Float<\/td>Text<\/td><\/tr>
Decimal<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n
\n\n\n\n

Most of these should be fairly self explanatory. AppWorks provides advanced configuration<\/span> for each data<\/span> type which enables to do things like add a pattern (e.g. 999-999-9999 could be used for a phone number). Advanced configuration<\/span> also lets you set things like default values, tooltips, and define when or if users<\/span> can change values on the property<\/span>. Enumerated text can be defined as both static and dynamic. Static enables you to enter a predefined (drop-list) of values, while dynamic can be built from a pre-defined business process. AppWorks performs what is described as intrinsic validation on user<\/span> entered data<\/span> based on the field types defined. If for example a user<\/span> tries to add alphanumeric text into an integer field, intrinsic validation will fire, preventing this action and data<\/span> to be stored. Later we will look at Rules, which provides more advanced validation in the platform.<\/p>\n\n\n\n

Creating Entities with Properties in AppWorks<\/h3>\n\n\n\n

To create a new Entity<\/span> in AppWorks, navigate to Workspace Documents in the AppWorks Explorer. See Getting Started with Low-Code Development in OpenText AppWorks<\/a> for reference<\/span>. Create a new project by right-clicking Projects and selecting ‘New Project’. Right-Click your project and select New – Other and choose Entity<\/span> from the icons selection. You should see a screen where you can begin defining your properties<\/span>. I have entered some example properties<\/span> of a person entity I’ll come back to later when I discuss relationships. You can add any fields here and explore the various data<\/span> types available under the ‘type’ column.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

Once you click ‘Add’ you will be placed Inside the Entity<\/span> editor. Note the Building Blocks side-menu on the left hand side. You can also create properties<\/span> from here as well as explore the other building blocks available. Here I am only referencing Structure (Property<\/span> and Relationship). Feel free to explore the other building blocks available under the Presentation, Business Logic and Functional groups, which I’ll cover in a later article.<\/p>\n\n\n\n

Relationship Building Block<\/h2>\n\n\n\n

If you are familiar with relational databases<\/span>, then you will find the way AppWorks handles relationships to be very familiar. AppWorks defines relationships as parent-child and peer. <\/p>\n\n\n\n

Parent-Child Relationships<\/h3>\n\n\n\n

Earlier I used the school example for describing entities<\/span>. Parent-child relationships can be used when additional details can be defined about a particular type of business object or (in this example) person. The reason these relationships exist is to provide a means to store common data<\/span> across a set of related objects while defining children objects that contain their own distinct properties<\/span>. In the diagram below, the objects in green (Teacher and Student) are child objects of person. All person objects will contain FirstName, LastName, and DateOfBirth properties<\/span>, however only students will contain GradeLevel, Enrollment, and ParentContact. Subsequently teachers will may have information stored on Department, Class, and YearsOfService. You can think of parent-child relationships as mandatory one to many relationships (for child objects to exist (teachers, or students), a parent object must be defined).<\/p>\n\n\n\n

\"\"
Parent-Child and Peer Relationships<\/figcaption><\/figure>\n\n\n\n

Peer Relationships<\/h3>\n\n\n\n

In contrast to parent-child relationships, peer relationships are two separate entities<\/span> that may form a relationship due to a certain need or requirement in our application<\/span>. In the above diagram, residence and club exist to demonstrate this point. For the purpose of this example, residence and club information in this application<\/span> may or may not be required for each person. Many people can belong to one club and one person will only be able to define one residence (where they currently live). In AppWorks, peer relationships can be defined as both one to one and one to many.<\/p>\n\n\n\n

Defining Relationships in AppWorks<\/h3>\n\n\n\n

AppWorks lets us define our relationships in the entity<\/span> editor screen by selecting Relationship under the Structure building block group. In the below example I am defining a child relationship (Teacher) belonging the the Person Entity<\/span> (from the above ERD). Note the summary guidance AppWork provides for the various relationships. By defining a child relationship, I am telling AppWorks to create a mandatory one to many relationship between Person and Teacher.<\/p>\n\n\n\n

\"\"
Adding a Child Relationship in AppWorks<\/figcaption><\/figure>\n\n\n\n

To create a peer relationship, from the entity<\/span> editor screen you will select Relationship<\/strong> as before. Here you may choose relates to one<\/strong> or relates to many<\/strong>. The entity<\/span> you are currently editing will be the source of the relationship and if you click Browse<\/strong> you can select its target. In the example below I am editing the Person entity<\/span> and selecting Browse<\/strong> for Residence (one person relates to one residence). <\/p>\n\n\n\n

\"\"
Adding a Peer Relationship in AppWorks<\/figcaption><\/figure>\n\n\n\n

Similarly from the Club entity<\/span>, you can define Club relates to many<\/strong> Persons. AppWorks allows you to choose bidirectional for two-way relationships. This provides a way to also define many to many relationships if needed. <\/p>\n\n\n\n

In my next article, I’ll cover some of the presentation building blocks available in the entity<\/span> editing screen. These building blocks provide tools for creating the User Interface<\/span> (UI<\/span>) for your application<\/span>, which include action bar, form, layout, list, and title. The action bar can be used for providing buttons for various functions such as uploading files, and other related actions. Forms provide design tool to drag and drop the various properties or fields defined under structure. Here you can visually apply your fields, labels and arrange them to your liking. Layouts provide the container of how the pages in our application will look. Eventually you will publish your application to the AppWorks Client, which provides a nice web interface for your users.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"

AppWorks provides a handy feature for modeling business objects through the use of entities. Objects could take the form of any aspect of a business application you are building. For example, if you needed to write an application that would be used as part of a school’s administration system you may include entities that represented […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[],"post_series":[11498],"class_list":["post-11103","post","type-post","status-publish","format-standard","hentry","category-coding","post_series-opentext-appworks"],"yoast_head":"\nGetting Started with Entity Modeling in OpenText AppWorks - Ian Carnaghan<\/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:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting Started with Entity Modeling in OpenText AppWorks - Ian Carnaghan\" \/>\n<meta property=\"og:description\" content=\"AppWorks provides a handy feature for modeling business objects through the use of entities. Objects could take the form of any aspect of a business application you are building. For example, if you needed to write an application that would be used as part of a school’s administration system you may include entities that represented […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\" \/>\n<meta property=\"og:site_name\" content=\"Ian Carnaghan\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-27T15:48:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-28T15:42:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1-1024x482.png\" \/>\n<meta name=\"author\" content=\"Ian Carnaghan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@icarnaghan\" \/>\n<meta name=\"twitter:site\" content=\"@icarnaghan\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ian Carnaghan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\"},\"author\":{\"name\":\"Ian Carnaghan\",\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5\"},\"headline\":\"Getting Started with Entity Modeling in OpenText AppWorks\",\"datePublished\":\"2020-10-27T15:48:19+00:00\",\"dateModified\":\"2020-10-28T15:42:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\"},\"wordCount\":1286,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5\"},\"image\":{\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1-1024x482.png\",\"articleSection\":[\"Coding\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\",\"url\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\",\"name\":\"Getting Started with Entity Modeling in OpenText AppWorks - Ian Carnaghan\",\"isPartOf\":{\"@id\":\"https:\/\/www.carnaghan.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1-1024x482.png\",\"datePublished\":\"2020-10-27T15:48:19+00:00\",\"dateModified\":\"2020-10-28T15:42:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage\",\"url\":\"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1.png\",\"contentUrl\":\"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1.png\",\"width\":1100,\"height\":518},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.carnaghan.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with Entity Modeling in OpenText AppWorks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.carnaghan.com\/#website\",\"url\":\"https:\/\/www.carnaghan.com\/\",\"name\":\"Ian Carnaghan\",\"description\":\"Software Developer, Blogger, Educator\",\"publisher\":{\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.carnaghan.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5\",\"name\":\"Ian Carnaghan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g\",\"caption\":\"Ian Carnaghan\"},\"logo\":{\"@id\":\"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/\"},\"description\":\"I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.\",\"sameAs\":[\"http:\/\/www.carnaghan.com\",\"https:\/\/x.com\/icarnaghan\"],\"url\":\"https:\/\/www.carnaghan.com\/author\/icarnaghan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting Started with Entity Modeling in OpenText AppWorks - Ian Carnaghan","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:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/","og_locale":"en_US","og_type":"article","og_title":"Getting Started with Entity Modeling in OpenText AppWorks - Ian Carnaghan","og_description":"AppWorks provides a handy feature for modeling business objects through the use of entities. Objects could take the form of any aspect of a business application you are building. For example, if you needed to write an application that would be used as part of a school’s administration system you may include entities that represented […]","og_url":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/","og_site_name":"Ian Carnaghan","article_published_time":"2020-10-27T15:48:19+00:00","article_modified_time":"2020-10-28T15:42:19+00:00","og_image":[{"url":"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1-1024x482.png"}],"author":"Ian Carnaghan","twitter_card":"summary_large_image","twitter_creator":"@icarnaghan","twitter_site":"@icarnaghan","twitter_misc":{"Written by":"Ian Carnaghan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#article","isPartOf":{"@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/"},"author":{"name":"Ian Carnaghan","@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5"},"headline":"Getting Started with Entity Modeling in OpenText AppWorks","datePublished":"2020-10-27T15:48:19+00:00","dateModified":"2020-10-28T15:42:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/"},"wordCount":1286,"commentCount":0,"publisher":{"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5"},"image":{"@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1-1024x482.png","articleSection":["Coding"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/","url":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/","name":"Getting Started with Entity Modeling in OpenText AppWorks - Ian Carnaghan","isPartOf":{"@id":"https:\/\/www.carnaghan.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage"},"image":{"@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage"},"thumbnailUrl":"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1-1024x482.png","datePublished":"2020-10-27T15:48:19+00:00","dateModified":"2020-10-28T15:42:19+00:00","breadcrumb":{"@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#primaryimage","url":"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1.png","contentUrl":"https:\/\/www.carnaghan.com\/wp-content\/uploads\/2020\/10\/AppWorks-Building-Blocks-1.png","width":1100,"height":518},{"@type":"BreadcrumbList","@id":"https:\/\/www.carnaghan.com\/getting-started-with-entity-modeling-in-opentext-appworks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.carnaghan.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started with Entity Modeling in OpenText AppWorks"}]},{"@type":"WebSite","@id":"https:\/\/www.carnaghan.com\/#website","url":"https:\/\/www.carnaghan.com\/","name":"Ian Carnaghan","description":"Software Developer, Blogger, Educator","publisher":{"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.carnaghan.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/c689c24d516c51968a88b628860740a5","name":"Ian Carnaghan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f2aa5baca80c2be728de43a975185d91?s=96&d=retro&r=g","caption":"Ian Carnaghan"},"logo":{"@id":"https:\/\/www.carnaghan.com\/#\/schema\/person\/image\/"},"description":"I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.","sameAs":["http:\/\/www.carnaghan.com","https:\/\/x.com\/icarnaghan"],"url":"https:\/\/www.carnaghan.com\/author\/icarnaghan\/"}]}},"views":1508,"_links":{"self":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/posts\/11103"}],"collection":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/comments?post=11103"}],"version-history":[{"count":0,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/posts\/11103\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/media?parent=11103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/categories?post=11103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/tags?post=11103"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/www.carnaghan.com\/wp-json\/wp\/v2\/post_series?post=11103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}