Questions tagged [rdfa]

RDFa (Resource Description Framework in Attributes) is a technique that allows to express structured data in markup languages. It provides a set of attributes to augment the visual information on the Web with machine-readable hints.

RDFa is a W3C Recommendation for embedding data in markup languages (like HTML, XHTML, SVG, etc.).

Example

The following XHTML snippet (from the RDFa 1.1 Primer linked below), the document has "The Trouble with Bob" as a value of the property dc:terms as well as the content of an h2 element. It also has a dc:created value of 2011-09-10. Because the additional information is specified by attributes on the elements, it does not affect the display of the XHTML document.

<html>
<head>…</head>
<body>
  …
  <h2 property="http://purl.org/dc/terms/title">The Trouble with Bob</h2>
  <p>Date: <span property="http://purl.org/dc/terms/created">2011-09-10</span></p>
  …
</body>

What questions should use this tag?

Questions about adding RDFa annotations to a document, or extracting RDF data from an RDFa document should use the tag.

References

The W3C has published several documents regarding RDFa, including an introductory primer as well as the normative recommendations:

192 questions
0
votes
1 answer

semantic vocabulary to indicate count (people) and extension (across nations)

I need to often deal with membership numbers of an organization or group and the extension (number of countries involved) of that group and yet, in common vocabularies like schema.org or FOAF or the W3C organiztion ontology, I do not seem to be able…
0
votes
1 answer

Validator.w3.org doesn't understand my HTML 4.01+RDFa

I have following code in the page head:
Evgeniy
  • 2,337
  • 2
  • 28
  • 68
0
votes
1 answer

vie.js example not working

I've tried to imlement vie.js (viejs . org) in order to make my CMS's html output more machine readable/manipulatable. However, the vie-2.1.0.js always throws an error: Uncaught TypeError: Object [object Object] has no method 'getByCid' I have…
Jan
  • 907
  • 1
  • 8
  • 23
0
votes
1 answer

Relating XML data using a custom schema to RDF/OWL ontology

I have a schema which is designed to permit the description of certain types of electronic devices. XML files compliant to the schema describe the interface to the device. The schema permits the way that the interface functions to be described. As…
P Mendham
  • 241
  • 5
  • 12
0
votes
1 answer

Google RDFa breadcrumbs

I am currently trying to implement RDFa breadcrumbs to my webpages. I think that I am following the example for multiple breadcrumbs on one page correctly, however in the testing tool and search results the breadcrumbs are not processed as expected…
malejpavouk
  • 4,297
  • 6
  • 41
  • 67
0
votes
1 answer

Does Jena RDF/ model class support other RDF serialization model that RDF/XML

I wanted to know whether Jena RDF.Model Class support particular RDF serialization format or it converts any serialization formnat providing RDF data into Model.
Prannoy Mittal
  • 1,525
  • 5
  • 21
  • 32
0
votes
1 answer

Annotate webpage using RDFa

RDFa based annotation of web pages when selecting a text or image in the web pages.Does any one know how to implement it.
Ninju
  • 2,522
  • 2
  • 15
  • 21
-1
votes
1 answer

when to use the property attribute for meta tag?

Hi i have been wondering about when to use the property attribute for meta tag within document, like do we use it to specify the meaning of the page, such as itemprop attribute. If so, does it affect the SEO.. pls help!
-1
votes
1 answer

RDF structure for online shopping product

What is rdf code and vocabulary for product list in online shopping website (html/html5) : For google and other search engine
PHP
user3754884
  • 87
  • 11
-1
votes
1 answer

How do i create an RDFa definition for something like "textNode HTMLElement textNode"?

Im trying to create some custom blocks for a CMS interface based on the symfony-cmf. In order for these blocks to be edited inline with createphp/hallo i need to create RDFa mappings for them. The basic example for an included block is something…
prodigitalson
  • 60,050
  • 10
  • 100
  • 114
-2
votes
1 answer

About subject,predicate and object in RDF

This is slightly Off-topic!!!. But please answer to this question. I have studied lots of articles and materials on net about RDF but i can't understand one thing is how programatically subject, predicate and object is dividing in a natural English…
-4
votes
1 answer

How would I go about referencing a document type with RDFa?

For a website, I need structured data for a publication content type. On this website, a publication is made of: a title a short description a date a category a URL to a document What vocabulary should I use from Schema.org for such a content?…
MrUpsidown
  • 21,592
  • 15
  • 77
  • 131
1 2 3
12
13