संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
माइक्रोडेटा, एचटीएमएल दस्तावेज़ों में मशीन के समझने लायक डेटा को एम्बेड करने के लिए एक स्पेसिफ़िकेशन है. माइक्रोडेटा में नाम-वैल्यू वाले जोड़े (जिन्हें items कहा जाता है) होते हैं. इन्हें शब्दावली के हिसाब से तय किया जाता है. schema.org, मार्कअप के लिए इस्तेमाल होने वाले शब्दों का एक कलेक्शन उपलब्ध कराता है.
बुनियादी सिंटैक्स में, किसी आइटम को तय करने के लिए itemscope एट्रिब्यूट और आइटम की किसी प्रॉपर्टी के बारे में बताने के लिए itemprop एट्रिब्यूट शामिल होता है. टाइप की जानकारी देने के लिए, itemtype एट्रिब्यूट का इस्तेमाल किया जाता है. साथ ही, इसके लिए अपनी पसंद की शब्दावली में तय की गई वैल्यू का इस्तेमाल किया जा सकता है. उदाहरण के लिए, schema.org से http://schema.org/Person या http://schema.org/PostalAddress जैसे टाइप तय होते हैं.
यहां दिए गए उदाहरण (Wikipedia से लिया गया) में, किसी व्यक्ति के बारे में बताने के लिए माइक्रोडेटा का इस्तेमाल करने का तरीका दिखाया गया है:
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-08-29 (UTC) को अपडेट किया गया."],[],[],null,["# Microdata\n\n[Microdata](https://html.spec.whatwg.org/multipage/microdata.html#microdata)\nis a specification to embed machine-readable data in HTML documents. Microdata consists of name-value pairs (known as `items`) defined according to a vocabulary. A collection of commonly used markup vocabularies are provided by [schema.org](https://schema.org/).\n\nThe basic syntax includes the `itemscope` attribute to define an item and the `itemprop` attribute to describe one of the item's properties. Types are specified using the `itemtype` attribute and can assume values defined in the vocabulary of choice. For instance, `schema.org` defines types such as `http://schema.org/Person` or `http://schema.org/PostalAddress`.\n\nThe following example (from [Wikipedia](http://en.wikipedia.org/wiki/Microdata_(HTML)#Example)) shows how to use microdata to describe a person: \n\n \u003csection itemscope itemtype=\"http://schema.org/Person\"\u003e\n Hello, my name is\n \u003cspan itemprop=\"name\"\u003eJohn Doe\u003c/span\u003e,\n I am a\n \u003cspan itemprop=\"jobTitle\"\u003eGraduate research assistant\u003c/span\u003e\n at the\n \u003cspan itemprop=\"affiliation\"\u003eUniversity of Dreams\u003c/span\u003e\n My friends call me\n \u003cspan itemprop=\"additionalName\"\u003eJohnny\u003c/span\u003e\n You can visit my homepage at\n \u003ca href=\"http://www.example.com.com\" itemprop=\"url\"\u003ewww.example.com\u003c/a\u003e\n \u003csection itemprop=\"address\" itemscope itemtype=\"http://schema.org/PostalAddress\"\u003e\n I live at\n \u003cspan itemprop=\"streetAddress\"\u003e1234 Peach Drive\u003c/span\u003e\n \u003cspan itemprop=\"addressLocality\"\u003eWarner Robins\u003c/span\u003e\n \u003cspan itemprop=\"addressRegion\"\u003eGeorgia\u003c/span\u003e.\n \u003c/section\u003e\n \u003c/section\u003e\n\nCheck the [Schema Validator](/workspace/gmail/markup/testing-your-schema#schema_validator) tool to debug your markup and validate it against the supported schema."]]