In my jbuilder template I'm not able to have keys starting with "@" symbol. e.g. "@context". What should I do. I want to get following json
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"publisher": "The Ghost Blog",
"author": {
"@type": "Person",
"name": "John O'Nolan",
"image": "http://blog.ghost.org/content/images/2013/Nov/gravatar_j7_200.jpg",
"url": "http://blog.ghost.org/author/john",
"sameAs": "http://twitter.com/JohnONolan"
},
"headline": "11 Tools We Use at Ghost for Distributed Teams & Digital Nomads",
"url": "http://blog.ghost.org/distributed-team-tools/",
"datePublished": "2014-12-15T14:09:18.000Z",
"dateModified": "2014-12-18T22:13:49.000Z",
"image": "http://blog.ghost.org/content/images/2014/12/ghostdistrib.jpg",
"keywords": "Remote Work",
"description": "Doing remote work is tough. The freedom is great, but distributed team tools and communication are essential to making it work. Here are our top apps...."
}
</script>
In my jbuilder template I'm not able to have keys starting with "@" symbol. e.g. "@context". What should I do. I want to get following json