JSON-LD হল একটি সহজে ব্যবহারযোগ্য JSON-ভিত্তিক লিঙ্কড ডেটা ফরম্যাট যা ধরন এবং বৈশিষ্ট্যের জন্য শব্দভাণ্ডার নির্দিষ্ট করতে context ধারণাকে সংজ্ঞায়িত করে। Gmail schema.org এর @context সহ HTML নথিতে এমবেড করা JSON-LD ডেটা সমর্থন করে, যেমনটি নিম্নলিখিত উদাহরণে রয়েছে:
<scripttype="application/ld+json">
{"@context":"http://schema.org","@type":"Person","name":"John Doe","jobTitle":"Graduate research assistant","affiliation":"University of Dreams","additionalName":"Johnny","url":"http://www.example.com","address":{"@type":"PostalAddress","streetAddress":"1234 Peach Drive","addressLocality":"Wonderland","addressRegion":"Georgia"}}
</script>
JSON-LD সিনট্যাক্সের জন্য সম্পূর্ণ স্পেসিফিকেশন এবং প্রয়োজনীয়তাগুলি json-ld.org এ উপলব্ধ, এবং আপনি JSON-LD ব্যবহার করে দেখতে এবং আপনার মার্কআপ ডিবাগ করতে আমাদের স্কিমা ভ্যালিডেটর টুল ব্যবহার করতে পারেন।
[null,null,["2024-12-21 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["JSON-LD is a JSON-based format used for representing linked data on the web, using a `context` to define vocabulary."],["Gmail supports JSON-LD data embedded within HTML documents, specifically utilizing the `schema.org` context for defining types and properties."],["The `@type` key within JSON-LD is reserved and should contain a full type URI or a fragment referencing `http://schema.org/`."],["Developers can refer to json-ld.org for complete specifications and utilize Google's Schema Validator tool for testing and debugging JSON-LD markup."]]],["JSON-LD, a linked data format, uses `context` to define vocabulary. Gmail accepts JSON-LD embedded in HTML with a `schema.org` context. The `@type` key within the JSON-LD defines a full URI or URI fragment, with `http://schema.org/` as a default prefix. The provided example shows how to structure person data using JSON-LD, including details such as name, job title, and address. Users can use a schema validator to test and debug their JSON-LD markup.\n"]]