Questions tagged [structured-data]

Structured data is a system of pairing a name with a value that helps search engines categorize and index your content. Schema is recognized (and in fact the vocabulary is maintained) by Google, Bing, Yahoo!, and Yandex. It's unclear whether other search engines are using this markup to change how they display search results.

Structured data is a form of semantic mark-up designed to describe elements on a web page e.g. review, person, event etc. This mark-up can be combined with typical HTML properties to define each item type through the use of associated attributes.

For example, ‘Person’ has the properties name, url and title – attributes can be applied to HTML tags to describe each property:

<div itemscope itemtype="http://data-vocabulary.org/Person">
Name: <span itemprop="name">Sahil Popli</span>
Website: <a href="http://popli.me" itemprop="url">popli.me</a>
Title: <span itemprop="title">UI/UX Developer</span>
</div>
  • Itemscope – is an indicator that the content within this is an item.
  • Itemtype – describes what the item is, in the above instance ‘Person’.
  • Itemprop – describes each property of the specific item.

Structured data can be used to mark up all kinds of items from products to events to recipes. It is most often used to provide additional information about the following:

  • Creative work
  • Event
  • Organization
  • Person
  • Place
  • Product

A full list of items you can mark up with Schema is available here.

337 questions
-1
votes
1 answer

shema.org structured data type for driving instructor or other learning center

Trying to find a proper type of structured data for driving school/driving instructor. According Google recommendations "Use the most specific LocalBusiness sub-type possible; for example, Restaurant, DaySpa, HealthClub, and so on." Looking at…
-1
votes
1 answer

Schema JSON codes and their effect on the page speed rank

I searched in many articles but nobody has talked about this stuff. For example, google suggested JSON-LD for structured data but I wanna know if I add dozens line of JSON codes, does not it affect on my page speed badly? I mean tools like GTMetrix…
ThisIsWilliam
  • 995
  • 8
  • 10
-1
votes
1 answer

GraphQL to Schema Markup

I am building a site with Gatsby and am trying to get some structured data setup to help with my search visibility. The bit I need help with is where there are multiple images in the image array. Here's an example of what I'm wanting: const…
Glen
  • 390
  • 2
  • 9
-1
votes
1 answer

How is structured data cross-checked with the page content by search engines?

I've just started learning structured data and I'm still trying to wrap my head around the concept. First I started out with Microdata using schema.org vocabulary and now I'm learning JSON-LD. The thing that is bugging me is that 'how do search…
-1
votes
4 answers

What structured text format is the best supported in Python?

This question may be seen as subjective, but I'd like to ask SO users which common structured textual data format is best supported in Python. My initial choices are: XML JSON and YAML Which of these three is easiest to work with in Python (ie.…
ocodo
  • 29,401
  • 18
  • 105
  • 117
-2
votes
1 answer

Storing structured and unstructured data

I working on web application that require to store structured information like user information and unstructured information corresponding to the user. My question is whether I should use two different databases for storing structured and…
-3
votes
1 answer

How to replace comma with a dot in the number and delete € symbol in JAVASCRIPT

i have a price valor (for example 3,45€) how can i create a function that could replace and create a dynamic output with the dot in place of the comma? and without the "€". (in this example 3.45) thank you
1 2 3
22
23