{"id":506,"date":"2022-05-12T10:42:26","date_gmt":"2022-05-12T08:42:26","guid":{"rendered":"https:\/\/kairntech.com\/doc\/?p=506"},"modified":"2023-06-12T17:02:37","modified_gmt":"2023-06-12T15:02:37","slug":"how-to-add-more-examples-of-specific-annotators-using-wikidata","status":"publish","type":"post","link":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/","title":{"rendered":"Examples to configure specific Wikidata annotators"},"content":{"rendered":"\n<p>Annotators can refer to any of the properties of Wikidata entries. Please check out more information in <a href=\"https:\/\/kairntech.com\/doc\/how-to-use-wikidata-for-entity-detection\/\" target=\"_blank\" rel=\"noreferrer noopener\">this article<\/a>.<\/p>\n\n\n\n<p>The name of a property (like \u201c<strong>instance of<\/strong>\u201d) or its&nbsp;<strong>identifier&nbsp;<\/strong>are obtained by placing the mouse over \u201cinstance of\u201d in the browser.<\/p>\n\n\n\n<p><\/p>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"501\" src=\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1024x501.png\" alt=\"\" class=\"wp-image-1576\" srcset=\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1024x501.png 1024w, https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-300x147.png 300w, https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-768x376.png 768w, https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1536x751.png 1536w, https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png 1916w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n<p><\/p>\n\n\n<div class=\"wp-block-image is-style-default\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"645\" height=\"462\" src=\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-38.png\" alt=\"\" class=\"wp-image-1578\" srcset=\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-38.png 645w, https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-38-300x215.png 300w\" sizes=\"auto, (max-width: 645px) 100vw, 645px\" \/><\/figure>\n<\/div>\n\n\n<p>Note in the definition of \u201cdiseases\u201d, we make use of the fact that Wikidata concepts are linked to domain specific database such as MeSH that allows to make a statement about the concept using a regular expression.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Person<\/h2>\n\n\n\n<p>One option to define a \u201cperson\u201d concept is to say that any Wikidata concept that has &#8220;human&#8221; (Q5) as value of \u201cproperty ID\u201d (P31) is a person. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"statements\": {\n    \"$elemMatch\": {\n      \"propertyId\": \"P31\",\n      \"value\": \"Q5\"\n    }\n  }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Location<\/h2>\n\n\n\n<p>One option to define a \u201clocation\u201d concept is to say that any Wikidata concept that has a \u201cGeonames ID\u201d will be a location.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> {\n   \"statements\": {\n     \"$elemMatch\": {\n       \"propertyName\": \"GeoNames ID\"\n     }\n   }\n }\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Actor<\/h2>\n\n\n\n<p>In order to define an \u201cactor\u201d concept we can rely on the fact that for persons a lot of properties such as birthplace and birthdate but in many cases also the occupation are listed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> {\n   \"statements\": {\n     \"$elemMatch\": {\n       \"propertyName\": \"occupation\",\n       \"value\": {\n         \"$in\": &#91;\n           \"Q33999\"\n         ]\n       }\n     }\n   }\n }\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Disease<\/h2>\n\n\n\n<p>In order to define a \u201cdisease\u201d concept we restrict the matches to all concepts that have a MeSH identifier (Property P672) that starts with a \u201cC\u201d (the disease subtree in MeSH).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n   \"statements\": {\n     \"$elemMatch\": {\n               \"propertyId\": \"P672\",\n               \"value\": {\n                 \"$regex\": \"C.+\"\n               }\n             }\n   }\n }\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Abundance<\/h2>\n\n\n\n<p>Note the \u201c$or\u201d statement that allows to specify a list of constraints, here requiring that a concept must be an \u201cinstance of\u201d (P31) a \u201cmedication\u201d (Q12140) or a \u201csubclass of\u201d (P279) a \u201cmedication\u201d (Q12140) or a \u201ctreatment\u201d (Q179661) or it must have an entry in the ChEBI database (P683).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> {\n   \"statements\": {\n     \"$elemMatch\": {\n       \"$or\": &#91;\n         {\n           \"propertyId\": \"P31\",\n           \"value\": \"Q12140\"\n         },\n         {\n           \"propertyId\": \"P279\",\n           \"value\": {\n             \"$in\": &#91;\n               \"Q12140\",\n               \"Q179661\"\n             ]\n           }\n         },\n         {\n           \"propertyId\": \"P683\"\n         }\n       ]\n     }\n   }\n }\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Drug<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"statements\": {\n    \"$elemMatch\": {\n      \"$or\": &#91;\n        {\n          \"propertyId\": \"P31\",\n          \"value\": \"Q12140\"\n        },\n        {\n          \"propertyId\": \"P279\",\n          \"value\": {\n            \"$in\": &#91;\n              \"Q12140\",\n              \"Q179661\"\n            ]\n          }\n        }\n      ]\n    }\n  }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Organization<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"statements\": {\n    \"$elemMatch\": {\n      \"propertyName\": \"instance of\",\n      \"value\": {\n        \"$in\": &#91;\n          \"Q6881511\",\n          \"Q4830453\",\n          \"Q783794\",\n          \"Q192283\",\n          \"Q484652\",\n          \"Q484652\",\n          \"Q43229\",\n          \"Q7278\",\n          \"Q79913\",\n          \"Q7210356\",\n          \"Q31855\",\n          \"Q45103187\",\n          \"Q4671277\",\n          \"Q3918\",\n          \"Q693737\",\n          \"Q161726\",\n          \"Q891723\",\n          \"Q1262438\",\n          \"Q46970\",\n          \"Q47913\",\n          \"Q3238445\",\n          \"Q936518\",\n          \"Q1413677\",\n          \"Q14037025\",\n          \"Q20901295\",\n          \"Q4120211\",\n          \"Q3623811\",\n          \"Q1335818\",\n          \"Q2300373\",\n          \"Q178790\",\n          \"Q37178026\",\n          \"Q627272\",\n          \"Q327333\",\n          \"Q748720\",\n          \"Q3591583\",\n          \"Q249556\",\n          \"Q22687\",\n          \"Q19758733\",\n          \"Q480242\",\n          \"Q1345691\",\n          \"Q21104425\",\n          \"Q1896989\",\n          \"Q245065\",\n          \"Q21104425\"\n        ]\n      }\n    }\n  }\n}<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-kairntech-documentation wp-block-embed-kairntech-documentation\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"0SW55lZlDI\"><a href=\"https:\/\/kairntech.com\/doc\/more-on-configuring-wikidata-annotators\/\">More on configuring Wikidata annotators<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;More on configuring Wikidata annotators&#8221; &#8212; Kairntech Documentation\" src=\"https:\/\/kairntech.com\/doc\/more-on-configuring-wikidata-annotators\/embed\/#?secret=hXqtBTZo3Q#?secret=0SW55lZlDI\" data-secret=\"0SW55lZlDI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-kairntech-documentation wp-block-embed-kairntech-documentation\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"9hx1RoHkia\"><a href=\"https:\/\/kairntech.com\/doc\/how-to-use-wikidata-for-entity-detection\/\">How to use Wikidata to detect entities?<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;How to use Wikidata to detect entities?&#8221; &#8212; Kairntech Documentation\" src=\"https:\/\/kairntech.com\/doc\/how-to-use-wikidata-for-entity-detection\/embed\/#?secret=tt5lDOis9i#?secret=9hx1RoHkia\" data-secret=\"9hx1RoHkia\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Annotators can refer to any of the properties of Wikidata entries. Please check out more information in this article. The name of a property (like \u201cinstance of\u201d) or its&nbsp;identifier&nbsp;are obtained by placing the mouse over \u201cinstance of\u201d in the browser. Note in the definition of \u201cdiseases\u201d, we make use of the fact that Wikidata concepts [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[14],"tags":[],"class_list":["post-506","post","type-post","status-publish","format-standard","hentry","category-advanced-topics"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Examples to configure specific Wikidata annotators - Kairntech Documentation<\/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:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Examples to configure specific Wikidata annotators - Kairntech Documentation\" \/>\n<meta property=\"og:description\" content=\"Annotators can refer to any of the properties of Wikidata entries. Please check out more information in this article. The name of a property (like \u201cinstance of\u201d) or its&nbsp;identifier&nbsp;are obtained by placing the mouse over \u201cinstance of\u201d in the browser. Note in the definition of \u201cdiseases\u201d, we make use of the fact that Wikidata concepts [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\" \/>\n<meta property=\"og:site_name\" content=\"Kairntech Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-12T08:42:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-12T15:02:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1916\" \/>\n\t<meta property=\"og:image:height\" content=\"937\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"kairntech\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kairntech\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\"},\"author\":{\"name\":\"kairntech\",\"@id\":\"https:\/\/kairntech.com\/doc\/#\/schema\/person\/a365548dd164374256996280f16999a4\"},\"headline\":\"Examples to configure specific Wikidata annotators\",\"datePublished\":\"2022-05-12T08:42:26+00:00\",\"dateModified\":\"2023-06-12T15:02:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\"},\"wordCount\":268,\"image\":{\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1024x501.png\",\"articleSection\":[\"Advanced Topics\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\",\"url\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\",\"name\":\"Examples to configure specific Wikidata annotators - Kairntech Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/kairntech.com\/doc\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1024x501.png\",\"datePublished\":\"2022-05-12T08:42:26+00:00\",\"dateModified\":\"2023-06-12T15:02:37+00:00\",\"author\":{\"@id\":\"https:\/\/kairntech.com\/doc\/#\/schema\/person\/a365548dd164374256996280f16999a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage\",\"url\":\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png\",\"contentUrl\":\"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png\",\"width\":1916,\"height\":937},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/kairntech.com\/doc\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Examples to configure specific Wikidata annotators\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kairntech.com\/doc\/#website\",\"url\":\"https:\/\/kairntech.com\/doc\/\",\"name\":\"Kairntech Documentation\",\"description\":\"All the information you need to use Kairntech Software, methodology,  user and installation guides.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kairntech.com\/doc\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/kairntech.com\/doc\/#\/schema\/person\/a365548dd164374256996280f16999a4\",\"name\":\"kairntech\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/kairntech.com\/doc\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d14681f6de1176d95124e9a1b865c480db72dc77623eb2400ef08f018e54db4f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d14681f6de1176d95124e9a1b865c480db72dc77623eb2400ef08f018e54db4f?s=96&d=mm&r=g\",\"caption\":\"kairntech\"},\"url\":\"https:\/\/kairntech.com\/doc\/author\/kairntech\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Examples to configure specific Wikidata annotators - Kairntech Documentation","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:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/","og_locale":"en_GB","og_type":"article","og_title":"Examples to configure specific Wikidata annotators - Kairntech Documentation","og_description":"Annotators can refer to any of the properties of Wikidata entries. Please check out more information in this article. The name of a property (like \u201cinstance of\u201d) or its&nbsp;identifier&nbsp;are obtained by placing the mouse over \u201cinstance of\u201d in the browser. Note in the definition of \u201cdiseases\u201d, we make use of the fact that Wikidata concepts [&hellip;]","og_url":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/","og_site_name":"Kairntech Documentation","article_published_time":"2022-05-12T08:42:26+00:00","article_modified_time":"2023-06-12T15:02:37+00:00","og_image":[{"width":1916,"height":937,"url":"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png","type":"image\/png"}],"author":"kairntech","twitter_card":"summary_large_image","twitter_misc":{"Written by":"kairntech","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#article","isPartOf":{"@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/"},"author":{"name":"kairntech","@id":"https:\/\/kairntech.com\/doc\/#\/schema\/person\/a365548dd164374256996280f16999a4"},"headline":"Examples to configure specific Wikidata annotators","datePublished":"2022-05-12T08:42:26+00:00","dateModified":"2023-06-12T15:02:37+00:00","mainEntityOfPage":{"@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/"},"wordCount":268,"image":{"@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage"},"thumbnailUrl":"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1024x501.png","articleSection":["Advanced Topics"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/","url":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/","name":"Examples to configure specific Wikidata annotators - Kairntech Documentation","isPartOf":{"@id":"https:\/\/kairntech.com\/doc\/#website"},"primaryImageOfPage":{"@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage"},"image":{"@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage"},"thumbnailUrl":"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37-1024x501.png","datePublished":"2022-05-12T08:42:26+00:00","dateModified":"2023-06-12T15:02:37+00:00","author":{"@id":"https:\/\/kairntech.com\/doc\/#\/schema\/person\/a365548dd164374256996280f16999a4"},"breadcrumb":{"@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#primaryimage","url":"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png","contentUrl":"https:\/\/kairntech.com\/doc\/wp-content\/uploads\/sites\/2\/2022\/11\/image-37.png","width":1916,"height":937},{"@type":"BreadcrumbList","@id":"https:\/\/kairntech.com\/doc\/how-to-add-more-examples-of-specific-annotators-using-wikidata\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kairntech.com\/doc\/"},{"@type":"ListItem","position":2,"name":"Examples to configure specific Wikidata annotators"}]},{"@type":"WebSite","@id":"https:\/\/kairntech.com\/doc\/#website","url":"https:\/\/kairntech.com\/doc\/","name":"Kairntech Documentation","description":"All the information you need to use Kairntech Software, methodology,  user and installation guides.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kairntech.com\/doc\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/kairntech.com\/doc\/#\/schema\/person\/a365548dd164374256996280f16999a4","name":"kairntech","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/kairntech.com\/doc\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d14681f6de1176d95124e9a1b865c480db72dc77623eb2400ef08f018e54db4f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d14681f6de1176d95124e9a1b865c480db72dc77623eb2400ef08f018e54db4f?s=96&d=mm&r=g","caption":"kairntech"},"url":"https:\/\/kairntech.com\/doc\/author\/kairntech\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/posts\/506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/comments?post=506"}],"version-history":[{"count":4,"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/posts\/506\/revisions"}],"predecessor-version":[{"id":3317,"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/posts\/506\/revisions\/3317"}],"wp:attachment":[{"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/media?parent=506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/categories?post=506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kairntech.com\/doc\/wp-json\/wp\/v2\/tags?post=506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}