Great news for Semantic Web, Facebook announced that they are going to use more structured metadata in shared web pages then just their original meta tags.
There are two parts to it – first they are going to provide storage about all things withing Facebook and on the internet in JSON format so people can write applications that use this data.
For example, public information about me on Facebook can be seen at this URL:
https://graph.facebook.com/sergey.chernyshev
And here how it looks:
{ "id": "504972292", "name": "Sergey Chernyshev", "first_name": "Sergey", "last_name": "Chernyshev", "link": "http://www.facebook.com/sergey.chernyshev" }
This way all you need to know is ID, which in my case is sergey.chernyshev or 504972292.
Another side of this is that Facebook is going to also store data from pages that were shared using their share button or added to interests or in any other way loaded into facebook’s system. They will be extracting this data using RDFa format and interpret it using a vocabulary that they call Open Graph Protocol (I will be calling it RDfb).
<html xmlns:og="http://opengraphprotocol.org/schema/"> <head> <title>The Rock (1996)</title> <meta property="og:title" content="The Rock" /> <meta property="og:type" content="movie" /> <meta property="og:url" content="http://www.imdb.com/title/tt0117500/" /> <meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" /> ... </head> ... </html>
This will allow sites to add a few lines of code to their pages to get them recognized as meaningful data instead of just human-readable documents – this will allow smart agents like search engines, mobile applications, embedded systems and just simple widgets to make sense of this data and help people see it in the context that is most usable for them.
I have a feeling that Facebook being a great driver for many business decisions related to promotion and marketing through social media, this change is going to be a best thing that happened to Semantic Web so far, might be even bigger then Yahoo’s and Google’s efforts in universal search.
P.S. Such a great present for my presentation about RDFa tonight ;)