## RDF-Turtle Start ##
@prefix : <#> .
@prefix schema: .
@prefix dbo: .
@prefix chicken-image: .
:Okhokho a schema:Thing .
:Okhokho a dbo:Bird .
:Okhokho schema:name "Chicken in Edo"@en .
:Akuko schema:name "Chicken in Yoruba"@en .
:Okuko schema:name "Chicken in Yoruba"@en .
:Kukko schema:name "Chicken in Finnish"@en .
:Okhokho owl:sameAs :Akuko, :Okuko, :Kukko .
chicken-image:
a schema:Image ;
schema:name "Chicken Image from a Tweet"@en .
:Okhokho schema:image chicken-image: .
## RDF-Turtle End ##
## JSON-LD Start ##
{
"@context": {
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"schema": "http://schema.org/",
"dbo": "http://dbpedia.org/ontology/",
"owl": "http://www.w3.org/2002/07/owl#"
},
"@graph": [
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Akuko",
"http://schema.org/name": [
{
"@value": "Chicken in Yoruba",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
}
]
},
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Kukko",
"http://schema.org/name": [
{
"@value": "Chicken in Finnish",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
}
]
},
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Okhokho",
"@type": [
"http://schema.org/Thing",
"http://dbpedia.org/ontology/Bird"
],
"http://schema.org/name": [
{
"@value": "Chicken in Edo",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
}
],
"http://www.w3.org/2002/07/owl#sameAs": [
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Akuko"
},
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Okuko"
},
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Kukko"
}
],
"http://schema.org/image": [
{
"@id": "https://cdn11.bigcommerce.com/s-ubwzbv1de6/images/stencil/original/uploaded_images/benefits-of-having-a-rooste.jpg"
}
]
},
{
"@id": "http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/Tutorials/nanotation-exercises/about-a-chicken-in-various-languages.txt#Okuko",
"http://schema.org/name": [
{
"@value": "Chicken in Yoruba",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
}
]
},
{
"@id": "https://cdn11.bigcommerce.com/s-ubwzbv1de6/images/stencil/original/uploaded_images/benefits-of-having-a-rooste.jpg",
"@type": [
"http://schema.org/Image"
],
"http://schema.org/name": [
{
"@value": "Chicken Image from a Tweet",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
}
]
}
]
}
## JSON-LD End ##