Object-specific custom code field 
Autor: Raoul R.In addition to the existing custom CSS field, allow advanced users to add object-specific HTML, JavaScript or JSON-LD. The code should only be included on pages containing that object. This would make it possible to keep structured data directly associated with visible content, such as a review, product, event or FAQ object, instead of maintaining separate code under Page Properties. Ideally, users should be able to choose whether the code is inserted in the <head>, before </body>, or directly alongside the object.
When only the object-specific code is changed, Website X5 should regenerate and upload only the affected page or pages.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Review",
"name": "Good",
"author": {
"@type": "Person",
"name": "Swami"
},
"datePublished": "2026-09-15",
"reviewBody": "It was comfortable ride",
"reviewRating": {
"@type": "Rating",
"ratingValue": 10,
"bestRating": 10,
"worstRating": 1
},
"itemReviewed": {
"@type": "Service",
"name": "Taxi from Gouda to Amsterdam Airport Schiphol",
"serviceType": "Private taxi transfer",
"provider": {
"@type": "Organization",
"name": "ClubTaxi",
"url": "https://www.clubtaxi.nl/"
}
}
}
</script>
Codes like this causes rendering of the full project, a pain with large projects.

Autor
do not use the above at home : <script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Review",
"name": "Excellent Trip from Rotterdam to Amsterdam Airport",
"author": {
"@type": "Person",
"name": "Tim"
},
"datePublished": "2026-07-13",
"reviewBody": "Communication with our driver was excellent and he was willing to alter our time after our schedule changed - we appreciate his flexibility. The van was clean and had plenty of room for 4 of us with our luggage.",
"reviewRating": {
"@type": "Rating",
"ratingValue": 10,
"bestRating": 10,
"worstRating": 1
},
"itemReviewed": {
"@type": "Organization",
"@id": "https://www.clubtaxi.nl/#organization",
"name": "ClubTaxi",
"url": "https://www.clubtaxi.nl/"
}
}
</script>