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
0
votes
1 answer

Google Structure data and breadcrumbs stopped showing

We are running the largest car website in the GCC - www.drivearabia.com All our breadcrumbs and structured data were working fine and now have stopped showing up on google. Our website master tools do not show any errors and properly show the…
Imran Omar Bukhsh
  • 7,849
  • 12
  • 59
  • 81
0
votes
1 answer

Is this structured data markup using schema.org for a game review correct?

I understand that it takes time for Google to show rich snippets for a website. But, I want to make sure that I'm marking up my structured data correctly in the mean time. Is the following code okay for a review? Can it be done better?
user1413341
  • 226
  • 3
  • 17
0
votes
1 answer

Importing loosely structured data into database

I get daily data feeds with data that is only loosely structured. I need to import it into a database so I can run a report that finds new records and changes to existing records. The data looks like…
Paul Ericson
  • 777
  • 2
  • 7
  • 15
0
votes
1 answer

Parsing Huge structured file in python 2.7

I am a newbie in the python world and bioinformatics. I am dealing with a almost 50GB structured file to write it out. So I would like to take some great tips from you. The file goes like this. (it's actually called…
jkim
  • 81
  • 7
0
votes
1 answer

Which is the correct way to mark tags in an article using schema.org?

I have found the following 3 ways, but it's not clear which is the correct one, or are all of them correct? Should I even be marking tags in my articles? I'm especially concerned about SEO issues.
pandronic
  • 631
  • 2
  • 9
  • 21
0
votes
1 answer

Schema applied on Magento Doesnt appear in richsnippet tool

I have added richsnippet code as per this online tutor http://www.creare.co.uk/magento-product-schema on my website. But I am not able to see schema code to appear here is an example of how it shows…
0
votes
1 answer

XML, Python - save file structure

I need to scan a large filesystem (1tb) and save this to an XML file. I want this XML file to be structured as described in the code. Does anybody know how to read a directory and all its subdirectories and files one by one (so they can be added to…
user3327457
0
votes
2 answers

Can This Schema Markup Be Improved?

If you were implementing schema markup for a local business that is a tour operator, what would you add to or change to the schema markup listed below. I generated this code from an online schema tool creator, but I don't know if it's really the…
user3137996
  • 83
  • 1
  • 1
  • 6
0
votes
1 answer

Why is my Google Structured Data Testing Tool = Error: Incomplete microdata with schema.org

http://www.google.com/webmasters/tools/richsnippets?q=http%3A%2F%2Femfnews.com%2Fshop%2Fglytamins-liver-gallbladder-kidney-detox%2F can somebody help point out the error. thanks
paul
  • 3
  • 2
0
votes
3 answers

How to remove rel=publisher tag in blogger?

I have searched for this a hundred times and only found how to add such tags in Blogger. I have not found a tutorial on how to remove those tags if they are added automatically by Blogger / Blogspot. In my head area of one of my Blogspot blogs using…
Ashish Singh
  • 135
  • 1
  • 14
0
votes
1 answer

Google Structured Data Markup Helper - Opening Hours

I'm trying to add some structured markup to my restaurant listing website using the Structured Markup Helper (highlighting tool) from Google. When I highlight a restaurant's weekday and opening time, the markup helper tells me that the Day, Month…
Callum
  • 435
  • 1
  • 4
  • 14
0
votes
1 answer

Author data not being recognized in Google structured data testing tool

I've searched all over the place and I can't figure out what I'm doing wrong. No matter what I still get a Page does not contain authorship markup on the structured data testing tool I have two sites with almost identical pages. The rel=author tags…
0
votes
0 answers

How do I make a multiple choice test in VB?

It is part of a homework assignment. I have to have structured data, and read the questions in for a .dat file. So far this is what I have. I'm having the most trouble in my Private Sub cmdNext_Click function. There are 4 radio buttons that much…
allison Snell
  • 23
  • 1
  • 5
0
votes
1 answer

Global File Referencing

My basic file structure something like: domain.com/ home.php images/ global/ nav/ nav-img.jpg includes/ menu.php fruit/ …
conceive
  • 33
  • 1
  • 9
-1
votes
1 answer

Can someone show me some Python examples of how to turn this XML data into Structured Data?

I have some XML that I need to turn into structured data in Python. I am needing to know how to access each element of the XML below. The example I used there worked with another XML file. I guess I need to know more about the root and an element…
YoYoYo
  • 17
  • 1
  • 7
1 2 3
22
23