{% extends '@ElementsJsonLdReloaded/jsonld/base.html.twig' %}
{% block jsonLd %}
"address":{
"@type": "PostalAddress",
"streetAddress": "{{ object.street }}",
"addressLocality": "{{ object.city }}",
"postalCode": "{{ object.zip }}",
"addressCountry": "{{ object.config[0].country }}"
},
"name": "{{ object.name|jld_sanitize }}",
{% if object.seoDescription %}
"description": "{{ jld_escape_string(jld_escape_string(object.seoDescription), ['
', '
', ' '], ['', '', '']) }}",
{% endif %}
"telephone": "{{ object.phone }}",
"fax": "{{ object.fax }}",
"email": "{{ object.email }}",
"image": "{{jld_imageUrl(object.image)}}",
"url": "{{jld_url(object)}}",
"resorts": "HomeAndConstructionBusiness",
"geo": {{ jld_geo(object.getGeo()) }},
"openingHours": "{{ object.openingTimes|jld_sanitize }}"
{% endblock %}