This page is part of http://www.productontology.org/, a huge, precise dictionary of product types and brand names for marking up Web sites with schema.org or the GoodRelations e-commerce standard.
Breaking news: schema.org has just implemented our proposal to define an additionalType property with the use of this service in mind!
http://www.productontology.org/
On this page: Usage(schema.org/Microdata, RDFa, Facebook) Contact Information Caching Policy License Acknowledgments References
URI http://www.productontology.org/id/Ethiopia
rdfs:subClassOf gr:ProductOrService, http://schema.org/Product
rdfs:label Ethiopia (as a class or brand name of products of services)
Translation(s):
Ефиопиа@ab;
Ethiopia@ace;
Эфиопие@ady;
Ethiopië@af;
Äthiopien@als;
ኢትዮጵያ@am;
Ethiopia@ami;
Etiopia@an;
Sigelhearwenaland@ang;
Etiopia@ann;
is rdfs:domain of gr:category gr:color gr:condition gr:depth gr:hasEAN_UCC-13 gr:hasGTIN-14 gr:hasMPN gr:hasManufacturer gr:hasStockKeepingUnit gr:height gr:isAccessoryOrSparePartFor gr:isConsumableFor gr:isSimilarTo gr:weight gr:width
is rdfs:range of gr:includes gr:isAccessoryOrSparePartFor gr:isConsumableFor gr:isSimilarTo
Note: This is a generic list. Some of the properties may not be applicable to this particular type of object.
Trademark Disclaimer: Since this service returns class descriptions for potentiall any series of characters, it cannot indicate automatically whether a name is a registered trademark or otherwise protected. We assume no liability for the absence of trademark rights and other damages. See the section "License" below for details.
One of the most powerful usages of the class definitions from this site is to describe the type of your page and product for the schema.org product markup in Microdata syntax much more precisely.
Simply add the full URI of a class from this site, e.g. http://www.productontology.org/id/Ethiopia as an additional type as follows:
<div itemscope itemtype="http://schema.org/Product">
<link itemprop="additionalType" href="http://www.productontology.org/id/Ethiopia" />
<!-- other schema.org properties go in here -->
</div>
Note: In HTML5, it is valid to use the <link> element in the body of a HTML document.
Here is a complete example:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>An offer to sell a / some Ethiopia</title>
</head>
<body>
<div itemscope itemtype="http://schema.org/Product" itemid="#product">
<link itemprop="additionalType" href="http://www.productontology.org/id/Ethiopia" />
<span itemprop="name">.. a short name for the object ...</span>
Product description:
<span itemprop="description">... a longer description ...</span>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer" itemid="#offer">
<span itemprop="price">$19.99</span>
<link itemprop="availability" href="http://schema.org/InStock" />In stock
</div>
</div>
</body>
</html>
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix pto: <http://www.productontology.org/id/> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix foo: <http://example.com/> .
# The object
foo:myObject a <http://www.productontology.org/id/Ethiopia> ;
a gr:SomeItems ;
gr:name "... a short name for the object ..."@en ;
gr:description "... a longer description ..."@en .
# The agent (person or company) who is offering it
foo:ACMECorp a gr:BusinessEntity ;
gr:legalName "ACME Corp" ;
gr:offers foo:Offer .
# The offer to sell it
foo:Offer a gr:Offering ;
gr:includes foo:myObject;
foaf:page <http://URI_of_the_page_containing_the_offer.com>;
gr:hasBusinessFunction gr:Sell ;
gr:validFrom "2011-01-24T00:00:00+01:00"^^xsd:dateTime ;
gr:validThrough "2011-12-24T00:00:00+01:00"^^xsd:dateTime ;
gr:hasPriceSpecification
[ a gr:UnitPriceSpecification ;
gr:hasCurrency "USD"^^xsd:string ;
gr:hasCurrencyValue "19.99"^^xsd:float ;
gr:validThrough "2011-12-24T00:00:00+01:00"^^xsd:dateTime ] .
Note: Replace gr:SomeItems (http://purl.org/goodrelations/v1#SomeItems) by gr:Individual if you are describing a unique object of that kind (e.g. antique furniture).
<!DOCTYPE html>
<html version="HTML+RDFa 1.1" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>An offer to sell a / some Ethiopia</title>
</head>
<body>
<div xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:gr="http://purl.org/goodrelations/v1#"
xmlns:pto="http://www.productontology.org/id/"
xmlns:foo="http://example.com/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<!-- The agent (person or company) who is offering it -->
<div about="#ACMECorp" typeof="gr:BusinessEntity">
<div property="gr:legalName">ACME Corp</div>
<div rel="gr:offers">
<!-- The offer to sell it -->
<div about="#offer" typeof="gr:Offering">
<div rel="gr:hasBusinessFunction" resource="http://purl.org/goodrelations/v1#Sell"></div>
<div rel="gr:includes">
<!-- The object -->
<div about="#myObject" typeof="http://www.productontology.org/id/Ethiopia">
<div rel="rdf:type" resource="http://purl.org/goodrelations/v1#SomeItems"></div>
<div property="gr:description" xml:lang="en">... a longer description ...</div>
<div property="gr:name" xml:lang="en">.. a short name for the object ...</div>
</div>
</div>
<div rel="foaf:page" resource="http://URI_of_the_page_containing_the_offer"></div>
<div rel="gr:hasPriceSpecification">
<div typeof="gr:UnitPriceSpecification">
<div property="gr:hasCurrency" content="USD" datatype="xsd:string">$ </div>
<div property="gr:hasCurrencyValue" datatype="xsd:float">19.99</div>
<div property="gr:validThrough" content="2011-12-24T00:00:00+01:00"
datatype="xsd:dateTime"></div>
</div>
</div>
<div property="gr:validFrom" content="2011-01-24T00:00:00+01:00"
datatype="xsd:dateTime"></div>
<div property="gr:validThrough" content="2011-12-24T00:00:00+01:00"
datatype="xsd:dateTime"></div>
</div>
</div>
</div>
</div>
</body>
</html>
Note: Replace gr:SomeItems (http://purl.org/goodrelations/v1#SomeItems) by gr:Individual if you are describing a unique object of that kind (e.g. antique furniture).
<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns:gr="http://purl.org/goodrelations/v1#"
xmlns:pto="http://www.productontology.org/id/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:foo="http://example.com/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!-- The object -->
<rdf:Description rdf:about="http://example.com/myObject">
<rdf:type rdf:resource="http://www.productontology.org/id/Ethiopia"/>
<rdf:type rdf:resource="http://purl.org/goodrelations/v1#SomeItems"/>
<gr:name xml:lang="en">... a short name for the object ...</gr:name>
<gr:description xml:lang="en">... a longer description ...</gr:description>
</rdf:Description>
<!-- The agent (person or company) who is offering it -->
<gr:BusinessEntity rdf:about="http://example.com/ACMECorp">
<gr:legalName>ACME Corp</gr:legalName>
<gr:offers rdf:resource="http://example.com/Offer" />
</gr:BusinessEntity>
<!-- The offer to sell it -->
<gr:Offering rdf:about="http://example.com/Offer">
<gr:includes rdf:resource="http://example.com/myObject" />
<foaf:page rdf:resource="http://URI_of_the_page_containing_the_offer"/>
<gr:hasBusinessFunction rdf:resource="http://purl.org/goodrelations/v1#Sell"/>
<gr:validFrom rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">
2011-01-24T00:00:00+01:00</gr:validFrom>
<gr:validThrough rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">
2011-12-24T00:00:00+01:00</gr:validThrough>
<gr:hasPriceSpecification>
<gr:UnitPriceSpecification>
<gr:hasCurrency rdf:datatype="http://www.w3.org/2001/XMLSchema#string">USD</gr:hasCurrency>
<gr:hasCurrencyValue rdf:datatype="http://www.w3.org/2001/XMLSchema#float">19.99</gr:hasCurrencyValue>
<gr:validThrough rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">
2011-12-24T00:00:00+01:00</gr:validThrough>
</gr:UnitPriceSpecification>
</gr:hasPriceSpecification>
</gr:Offering>
</rdf:RDF>
Note: Replace gr:SomeItems (http://purl.org/goodrelations/v1#SomeItems) by gr:Individual if you are describing a unique object of that kind (e.g. antique furniture).
prefix foaf: <http://xmlns.com/foaf/0.1/>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
prefix pto: <http://www.productontology.org/id/>
prefix gr: <http://purl.org/goodrelations/v1#>
prefix foo: <http://example.com/>
# Find the cheapest offer for a Ethiopia
SELECT * WHERE{
?company gr:offers ?offer .
?offer a gr:Offering .
?offer gr:hasBusinessFunction gr:Sell .
OPTIONAL {?offer rdfs:label ?label } .
OPTIONAL {?offer gr:name ?label } .
OPTIONAL {?offer rdfs:comment ?label } .
OPTIONAL {?offer gr:description ?label } .
?offer gr:hasPriceSpecification ?p .
?p a gr:UnitPriceSpecification .
?p gr:hasCurrency ?currency .
?p gr:hasCurrencyValue ?price .
?offer gr:includes ?product .
?product a <http://www.productontology.org/id/Ethiopia> .
}
ORDER BY (?price)
LIMIT 10
You can also use the class definitions from this site for better describing the type of your page or product for the Facebook Open Graph Protocol.
Simply define the namespace prefix pto: in the <html> element of your page
<html version="HTML+RDFa 1.1"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:pto="http://www.productontology.org/id/"
>
and use the compact URI (CURIE) pto:Ethiopia in combination with og:type as follows:
<meta property="og:type" content="pto:Ethiopia"/>
A complete example is here.
Univ.-Prof. Dr. Martin Hepp
E-Business and Web Science Research Group
Chair of General Management and E-Business
Universität der Bundeswehr München
Werner-Heisenberg-Weg 39
D-85579 Neubiberg, Germany
Phone: +49 89 6004-4217
eMail: mhepp(at)computer.org (preferred mode of communication)
Web: http://www.heppnetz.de/
Web: http://www.unibw.de/ebusiness/
In order to minimize the load on the Wikipedia API, all requests are cached internally for 72 hours. This means that changes to the English Wikipedia will be available in this service within 72 hours or less if the same entry has been requested before. Classes not requested within the last six hours are always guaranteed to be in sync with the latest version in Wikipedia.
The RDF/XML dump file is updated every 12 hours only.
The class definition text is taken from Wikipedia, the free encyclopedia under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license. Accordingly, the ontology class definitions are available under the very same license.
Trademark Disclaimer: Since this service returns class descriptions for potentially any series of characters, it cannot indicate automatically whether a name is a registered trademark or otherwise protected. If you want us to block a certain name, please send your request including proof of your rights on the name to our contact address listed below.. Any of the trademarks, service marks, collective marks, design rights or similar rights that are mentioned, used, or cited in this service are the property of their respective owners. Their use here does not imply that you may use them for any purpose other than for the same or a similar informational use as contemplated by the original authors of the underlying Wikipedia articles under the CC-BY-SA and GFDL licensing schemes. Productontology.org is neither endorsed by nor affiliated with any of the holders of any such rights and as such cannot grant any rights to use any otherwise protected materials. Your use of any such or similar incorporeal property is at your own risk.
Thanks to Stefano Bertolo, Julien Chaumond, Bob Ferris, Kingsley Idehen, Axel Polleres, Andreas Radinger, Alex Stolz, and Giovanni Tummarello for very valuable feedback, and to Katharina Siorpaes and Daniel Bachlechner, who contributed to the initial analysis of the stability of Wikipedia URIs back in 2007.
The work on The Product Types Ontology has been supported by the German Federal Ministry of Research (BMBF) by a grant under the KMU Innovativ program as part of the Intelligent Match project (FKZ 01IS10022B).
Wikipedia: Ethiopia, available at http://en.wikipedia.org/wiki/Ethiopia.
Hepp, Martin: GoodRelations: An Ontology for Describing Products and Services Offers on the Web, Proceedings of the 16th International Conference on Knowledge Engineering and Knowledge Management (EKAW2008), Acitrezza, Italy, September 29 - October 3, 2008, Springer LNCS, Vol 5268, pp. 332-347.
Hepp, Martin; Siorpaes, Katharina; Bachlechner, Daniel: Harvesting Wiki Consensus: Using Wikipedia Entries as Vocabulary for Knowledge Management, IEEE Internet Computing, Vol. 11, No. 5, pp. 54-65, Sept-Oct 2007.
rdfs:comment
{{Infobox country | conventional_long_name = Federal Democratic Republic of Ethiopia | common_name = Ethiopia | native_name = | p1 = | flag_p1 = Flag of Ethiopia (1991-1996).svg| | image_flag = Flag of Ethiopia.svg | image_coat = Emblem of Ethiopia.svg | symbol_type = Emblem | national_anthem = "Wedefīt Gesigishī Wid Inat ītiyop’iy"| image_map = | capital = Addis Ababa | largest_city = Addis Ababa | coordinates = | official_languages = | languages_type = | ethnic_groups = | languages_sub = yes | languages = | languages2_type = Foreign languages | languages2 = | ethnic_groups_year = 2007 | religion = | religion_year = 2016 | border_p2 = Eritea, Kenya, Sudan, South Sudan, Djibouti, Somalia | demonym = Ethiopian | government_type = Federal parliamentary republic under an authoritarian government | leader_title1 = President | leader_name1 = Taye Atske Selassie | leader_title2 = Prime Minister | leader_name2 = Abiy Ahmed | leader_title3 = Deputy Prime Minister | leader_name3 = Temesgen Tiruneh | leader_title4 = Chief Justice of the Federal Supreme Court | leader_name4 = Tewodros Mihret | legislature = Federal Parliamentary Assembly | upper_house = House of Federation | lower_house = House of Peoples' Representatives | sovereignty_type = Formation | established_date1 = 980 BC | established_event1 = Dʿmt | established_date2 = 400 BC | established_event2 = Kingdom of Aksum | established_date3 = 1270 | established_event3 = Ethiopian Empire | established_date4 = 7 May 1769 | established_event4 = Zemene Mesafint | established_date5 = 11 February 1855 | established_event5 = Reunification | established_date6 = 1904 | established_event6 = Centralisation | established_date7 = 9 May 1936 | established_event7 = Occupied and annexed into Italian East Africa | established_date8 = 31 January 1942 | established_event8 = Anglo-Ethiopian Agreement | established_date9 = 12 September 1974 | established_event9 = Derg | established_date10 = 22 February 1987 | established_event10 = People's Democratic Republic | established_date11 = 28 May 1991 | established_event11 = Transitional government | established_date12 = 21 August 1995 | established_event12 = Current constitution | area_km2 = 1,104,300 | area_rank = 26th | area_sq_mi = 426,373 | percent_water = 0.7 | population_estimate = 132,900,000 | population_estimate_year = 2024 | population_estimate_rank = 10th | population_census = 73,750,932 | population_census_year = 2007 | population_density_km2 = 92.7 | population_density_sq_mi = 240.1 | population_density_rank = 123rd | GDP_PPP = $434.44 billion | GDP_PPP_year = 2024 | GDP_PPP_rank = 55th | GDP_PPP_per_capita = $4,050 | GDP_PPP_per_capita_rank = 159th | GDP_nominal = $145.03 billion | GDP_nominal_year = 2024 | GDP_nominal_rank = 59th | GDP_nominal_per_capita = $1,350 | GDP_nominal_per_capita_rank = 159th | Gini = 35.0 | Gini_year = 2015 | Gini_change = increase | Gini_ref = | HDI = 0.492 | HDI_year = 2022 | HDI_change = increase | HDI_ref = | HDI_rank = 176th | currency = Birr | currency_code = ETB | time_zone = EAT | utc_offset = +3 | utc_offset_DST = | time_zone_DST = | date_format = dd/mm/yyyy | drives_on = right | calling_code = +251 | cctld = .et }} Ethiopia,officially the Federal Democratic Republic of Ethiopia, is a landlocked country located in the Horn of Africa region of East Africa. It shares borders with Eritrea to the north, Djibouti to the northeast, Somalia to the east, Kenya to the south, South Sudan to the west, and Sudan to the northwest. Ethiopia covers a land area of . it has around 132 million inhabitants, making it the tenth-most populous country in the world, the second-most populous in Africa after Nigeria, and the most populated landlocked country on Earth. The national capital and largest city, Addis Ababa, lies several kilometres west of the East African Rift that splits the country into the African and Somali tectonic plates. Anatomically modern humans emerged from modern-day Ethiopia and set out for the Near East and elsewhere in the Middle Paleolithic period. In 980 BC, the Kingdom of D'mt extended its realm over Eritrea and the northern region of Ethiopia, while the Kingdom of Aksum maintained a unified civilization in the region for 900 years. Christianity was embraced by the kingdom in 330, and Islam arrived by the first Hijra in 615. After the collapse of Aksum in 960, the Zagwe dynasty ruled the north-central parts of Ethiopia until being overthrown by Yekuno Amlak in 1270, inaugurating the Ethiopian Empire and the Solomonic dynasty, claimed descent from the biblical Solomon and Queen of Sheba under their son Menelik I. By the 14th century, the empire had grown in prestige through territorial expansion and fighting against adjacent territories; most notably, the Ethiopian–Adal War (1529–1543) contributed to fragmentation of the empire, which ultimately fell under a decentralization known as Zemene Mesafint in the mid-18th century. Emperor Tewodros II ended Zemene Mesafint at the beginning of his reign in 1855, marking the reunification and modernization of Ethiopia. From 1878 onwards, Emperor Menelik II launched a series of conquests known as Menelik's Expansions, which resulted in the formation of Ethiopia's current border. Externally, during the late 19th century, Ethiopia defended itself against foreign invasions, including from Egypt and Italy; as a result, Ethiopia preserved its sovereignty during the Scramble for Africa. In 1936, Ethiopia was occupied by Fascist Italy and annexed with Italian-possessed Eritrea and Somaliland, later forming Italian East Africa. In 1941, during World War II, it was occupied by the British Army, and its full sovereignty was restored in 1944 after a period of military administration. The Derg, a Soviet-backed military junta, took power in 1974 after deposing Emperor Haile Selassie and the Solomonic dynasty, and ruled the country for nearly 17 years amidst the Ethiopian Civil War. Following the dissolution of the Derg in 1991, the Ethiopian People's Revolutionary Democratic Front (EPRDF) dominated the country with a new constitution and ethnic-based federalism. Since then, Ethiopia has suffered from prolonged and unsolved inter-ethnic clashes and political instability marked by democratic backsliding. From 2018, regional and ethnically based factions carried out armed attacks in multiple ongoing wars throughout Ethiopia. Ethiopia is a multi-ethnic state with over 80 different ethnic groups. Christianity is the most widely professed faith in the country, with the largest denomination being the Ethiopian Orthodox Tewahedo Church. After Christianity, Ethiopia houses a significant minority of adherents to Islam and a small percentage to traditional faiths. This sovereign state is a founding member of the UN, the Group of 24, the Non-Aligned Movement, the Group of 77, and the Organisation of African Unity. Addis Ababa is the headquarters of the African Union, the Pan African Chamber of Commerce and Industry, the United Nations Economic Commission for Africa, the African Standby Force and many of the global non-governmental organizations focused on Africa. Ethiopia became a full member of BRICS in 2024. Ethiopia is one of the least developed countries but is sometimes considered an emerging power, having the fastest economic growth in sub-Saharan African countries because of foreign direct investment in expansion of agricultural and manufacturing industries; agriculture is the country's largest economic sector, accounting for over 37% of the gross domestic product as of 2022. However, in terms of per capita income and the Human Development Index, the Ethiopian economy has experienced consistent growth, though the country remains among the poorest in Africa. Ethiopia faces numerous challenges, including high rates of poverty, human rights violations, widespread ethnic discrimination, and a literacy rate of 52%. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Ethiopia)
Note: The extraction of the abstract from the Wikipedia page may sometimes yield imperfect results. We are improving the algorithm regularly.