templates.json-ld-context.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nif Show documentation
Show all versions of nif Show documentation
A small library for NLP Interchange Format (NIF) — Edit
{
"@context":{
#foreach( $oc in $contextBeans )
#if($oc.type)
"$oc.name": {
"@id":"$oc.uri",
"@type":"$oc.type"
}#if( $foreach.hasNext ),
#end
#else
"$oc.name": "$oc.uri" #if( $foreach.hasNext ),
#end
#end
#end
}
}