Meta
Representation of generic meta values for an object
type Meta {
title: [LocalizedString]
description: [LocalizedString]
keywords: [LocalizedString]
ogTitle: [LocalizedString]
ogDescription: [LocalizedString]
ogImage: [LocalizedString]
}
Fields
title ● [LocalizedString]
The title of the object
description ● [LocalizedString]
The description of the object
keywords ● [LocalizedString]
The keywords of the object. Often used for search purposes
ogTitle ● [LocalizedString]
The meta tag og:title of the object
ogDescription ● [LocalizedString]
The meta tag og:Description of the object
ogImage ● [LocalizedString]
The meta tag og:Image of the object
Example
{
"title": [
{
"language": "EN",
"value": "String"
}
]
}