Last active
February 8, 2017 15:16
-
-
Save htuscher/e499d088deca478fbdc3cdb130ca9229 to your computer and use it in GitHub Desktop.
Neos Fusion JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jobData = Neos.Fusion:RawArray { | |
| '@context' = 'http://schema.org' | |
| '@type' = 'JobPosting' | |
| baseSalary = 10000 | |
| industry = 'Some thing' | |
| title = ${q(node).property('title')} | |
| jobLocation = Neos.Fusion:RawArray { | |
| '@type' = 'Place' | |
| address = Neos.Fusion:RawArray { | |
| '@type' = 'PostalAddress' | |
| addressLocality = ${q(node).property('location')} | |
| country = 'Germany' | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="application/ld+json"> | |
| {jobData -> f:format.json(forceObject: true) -> f:format.raw()} | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment