├── .gitignore ├── .htaccess ├── README.md ├── about.html ├── default.css ├── examples ├── DataType │ ├── CSV │ │ └── README.md │ ├── JSON │ │ └── README.md │ ├── RDFa │ │ └── README.md │ └── README.md ├── README.md ├── Thing │ ├── CreativeWork │ │ ├── Article │ │ │ ├── Article.jsonld │ │ │ ├── Article.microdata │ │ │ └── Article.rdfa │ │ ├── Book │ │ │ ├── Book.jsonld │ │ │ ├── Book.microdata │ │ │ └── Book.rdfa │ │ ├── CreativeWork-Advanced.jsonld │ │ ├── CreativeWork-Advanced.microdata │ │ ├── CreativeWork-Advanced.rdfa │ │ ├── CreativeWork.jsonld │ │ ├── CreativeWork.microdata │ │ ├── CreativeWork.rdfa │ │ ├── DataCatalog │ │ │ ├── DataCatalog.microdata │ │ │ └── README.md │ │ ├── Dataset │ │ │ ├── Dataset.microdata │ │ │ └── README.md │ │ ├── ItemList │ │ │ ├── ItemList.jsonld │ │ │ ├── ItemList.microdata │ │ │ └── ItemList.rdfa │ │ ├── MediaObject │ │ │ ├── AudioObject │ │ │ │ ├── AudioObject.jsonld │ │ │ │ ├── AudioObject.microdata │ │ │ │ └── AudioObject.rdfa │ │ │ ├── DataDownload │ │ │ │ ├── DataDownload.microdata │ │ │ │ └── README.md │ │ │ ├── ImageObject │ │ │ │ ├── ImageObject.jsonld │ │ │ │ ├── ImageObject.microdata │ │ │ │ └── ImageObject.rdfa │ │ │ ├── MediaObject.jsonld │ │ │ ├── MediaObject.microdata │ │ │ ├── MediaObject.rdfa │ │ │ └── VideoObject │ │ │ │ ├── VideoObject.jsonld │ │ │ │ ├── VideoObject.microdata │ │ │ │ └── VideoObject.rdfa │ │ ├── Movie │ │ │ ├── Movie.jsonld │ │ │ ├── Movie.microdata │ │ │ └── Movie.rdfa │ │ ├── MusicPlaylist │ │ │ ├── MusicPlaylist.jsonld │ │ │ ├── MusicPlaylist.microdata │ │ │ └── MusicPlaylist.rdfa │ │ ├── MusicRecording │ │ │ ├── MusicRecording.jsonld │ │ │ ├── MusicRecording.microdata │ │ │ └── MusicRecording.rdfa │ │ ├── Recipe │ │ │ ├── Recipe.jsonld │ │ │ ├── Recipe.microdata │ │ │ └── Recipe.rdfa │ │ ├── Review │ │ │ ├── Review-Example2.jsonld │ │ │ ├── Review-Example2.microdata │ │ │ ├── Review-Example2.rdfa │ │ │ ├── Review.jsonld │ │ │ ├── Review.microdata │ │ │ └── Review.rdfa │ │ ├── TVEpisode │ │ │ ├── TVEpisode.jsonld │ │ │ ├── TVEpisode.microdata │ │ │ └── TVEpisode.rdfa │ │ ├── TVSeason │ │ │ ├── TVSeason.jsonld │ │ │ ├── TVSeason.microdata │ │ │ └── TVSeason.rdfa │ │ ├── TVSeries │ │ │ ├── TVSeries.jsonld │ │ │ ├── TVSeries.microdata │ │ │ └── TVSeries.rdfa │ │ ├── WebPage │ │ │ ├── WebPage.jsonld │ │ │ ├── WebPage.microdata │ │ │ └── WebPage.rdfa │ │ └── WebPageElement │ │ │ └── Table │ │ │ ├── Table.jsonld │ │ │ ├── Table.microdata │ │ │ └── Table.rdfa │ ├── Event │ │ ├── Event-Example2.jsonld │ │ ├── Event-Example2.microdata │ │ ├── Event-Example2.rdfa │ │ ├── Event.jsonld │ │ ├── Event.microdata │ │ ├── Event.rdfa │ │ └── UserInteraction │ │ │ ├── UserInteraction.jsonld │ │ │ ├── UserInteraction.microdata │ │ │ └── UserInteraction.rdfa │ ├── Intangible │ │ ├── Offer │ │ │ ├── AggregateOffer │ │ │ │ ├── AggregateOffer.jsonld │ │ │ │ ├── AggregateOffer.microdata │ │ │ │ └── AggregateOffer.rdfa │ │ │ ├── Offer.jsonld │ │ │ ├── Offer.microdata │ │ │ └── Offer.rdfa │ │ ├── Rating │ │ │ ├── AggregateRating │ │ │ │ ├── AggregateRating-Example2.jsonld │ │ │ │ ├── AggregateRating-Example2.microdata │ │ │ │ ├── AggregateRating-Example2.rdfa │ │ │ │ ├── AggregateRating-Example3.jsonld │ │ │ │ ├── AggregateRating-Example3.microdata │ │ │ │ ├── AggregateRating-Example3.rdfa │ │ │ │ ├── AggregateRating-Example4.jsonld │ │ │ │ ├── AggregateRating-Example4.microdata │ │ │ │ ├── AggregateRating-Example4.rdfa │ │ │ │ ├── AggregateRating.jsonld │ │ │ │ ├── AggregateRating.microdata │ │ │ │ └── AggregateRating.rdfa │ │ │ ├── Rating.jsonld │ │ │ ├── Rating.microdata │ │ │ └── Rating.rdfa │ │ └── StructuredValue │ │ │ ├── ContactPoint │ │ │ └── PostalAddress │ │ │ │ ├── PostalAddress-Example2.jsonld │ │ │ │ ├── PostalAddress-Example2.microdata │ │ │ │ ├── PostalAddress-Example2.rdfa │ │ │ │ ├── PostalAddress.jsonld │ │ │ │ ├── PostalAddress.microdata │ │ │ │ └── PostalAddress.rdfa │ │ │ ├── GeoCoordinates │ │ │ ├── GeoCoordinates.jsonld │ │ │ ├── GeoCoordinates.microdata │ │ │ └── GeoCoordinates.rdfa │ │ │ └── NutritionInformation │ │ │ ├── NutritionInformation.jsonld │ │ │ ├── NutritionInformation.microdata │ │ │ └── NutritionInformation.rdfa │ ├── Organization │ │ ├── EdducationalOrganization │ │ │ ├── EdducationalOrganization.jsonld │ │ │ ├── EdducationalOrganization.microdata │ │ │ └── EdducationalOrganization.rdfa │ │ ├── LocalBusiness │ │ │ ├── LocalBusiness-Example2.jsonld │ │ │ ├── LocalBusiness-Example2.microdata │ │ │ ├── LocalBusiness-Example2.rdfa │ │ │ ├── LocalBusiness.jsonld │ │ │ ├── LocalBusiness.microdata │ │ │ └── LocalBusiness.rdfa │ │ ├── NGO │ │ │ ├── NGO.jsonld │ │ │ ├── NGO.microdata │ │ │ └── NGO.rdfa │ │ ├── Organization.jsonld │ │ ├── Organization.microdata │ │ ├── Organization.rdfa │ │ └── PerformingGroup │ │ │ └── MusicGroup │ │ │ ├── MusicGroup.jsonld │ │ │ ├── MusicGroup.microdata │ │ │ └── MusicGroup.rdfa │ ├── Person │ │ ├── Person-Advanced.jsonld │ │ ├── Person-Advanced.microdata │ │ ├── Person-Advanced.rdfa │ │ ├── Person.jsonld │ │ ├── Person.microdata │ │ └── Person.rdfa │ ├── Place │ │ ├── CivicStructure │ │ │ ├── CivicStructure.jsonld │ │ │ ├── CivicStructure.microdata │ │ │ └── CivicStructure.rdfa │ │ ├── LocalBusiness │ │ │ ├── LocalBusiness.jsonld │ │ │ ├── LocalBusiness.microdata │ │ │ └── LocalBusiness.rdfa │ │ ├── Place.jsonld │ │ ├── Place.microdata │ │ └── Place.rdfa │ ├── Product │ │ ├── Product.jsonld │ │ ├── Product.microdata │ │ └── Product.rdfa │ ├── Thing.jsonld │ └── Thing.rdfa └── schema.org-markup-bugs.txt ├── faq.html ├── img ├── csv.png ├── json.png ├── ntriples.png ├── rdf-xml.png └── turtle.png ├── index.html ├── learn.html ├── mappings.html ├── mappings ├── README.md ├── bibo.ttl ├── schemaorg_wn.owl └── sioc.ttl ├── sandbox ├── kidehen_linked_data_version_of_all.rdf └── schema-org-nav │ ├── README.md │ ├── doc │ ├── schema-org-nav-screenshot-explore.png │ └── schema-org-nav-screenshot-ext.png │ ├── lib │ ├── jquery-ui.min.js │ ├── jquery.min.js │ └── jquery.rdfquery.rdfa.min-1.0.js │ ├── load.gif │ ├── rdfa.css │ ├── rdfa.html │ ├── rdflib-rdfa.js │ └── schema-org-nav.js ├── schemaorg.css ├── scrapers ├── README.md ├── run.rb ├── schema2csv.py ├── schema2json.py ├── schema2rdf.py ├── schema_scraper.py ├── scrape_all.py ├── scrape_csv.py ├── scrape_json.py └── scrape_rdf.py ├── tools.html ├── tools └── schema-gateway │ ├── README.md │ ├── microdata_pp.py │ ├── rdflib_schemaorg_csv.py │ ├── schema_org_processor.py │ └── test │ ├── md-test-1.html │ ├── md-test-1.ttl │ ├── solar-system.csv │ └── solar-system.ttl └── tutorials ├── README.md └── ld-html ├── Overview.html ├── acme.html ├── acme.ttl ├── comprod.ttl ├── img ├── acme-tabview.png ├── baseline.graffle ├── baseline.png ├── comprod.graffle ├── comprod.png ├── foaf.png ├── morecompany-team.graffle ├── morecompany-team.png ├── morecompany.graffle ├── morecompany.png ├── products.graffle └── products.png ├── list-hammer-prices-and-provider.sparql └── local-style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/about.html -------------------------------------------------------------------------------- /default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/default.css -------------------------------------------------------------------------------- /examples/DataType/CSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/DataType/CSV/README.md -------------------------------------------------------------------------------- /examples/DataType/JSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/DataType/JSON/README.md -------------------------------------------------------------------------------- /examples/DataType/RDFa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/DataType/RDFa/README.md -------------------------------------------------------------------------------- /examples/DataType/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/DataType/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Article/Article.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Article/Article.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Article/Article.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Article/Article.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Article/Article.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Article/Article.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Book/Book.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Book/Book.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Book/Book.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Book/Book.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Book/Book.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Book/Book.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/CreativeWork-Advanced.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/CreativeWork-Advanced.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/CreativeWork-Advanced.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/CreativeWork-Advanced.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/CreativeWork-Advanced.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/CreativeWork-Advanced.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/CreativeWork.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/CreativeWork.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/CreativeWork.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/CreativeWork.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/CreativeWork.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/CreativeWork.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/DataCatalog/DataCatalog.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/DataCatalog/DataCatalog.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/DataCatalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/DataCatalog/README.md -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Dataset/Dataset.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Dataset/Dataset.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Dataset/README.md -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/ItemList/ItemList.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/ItemList/ItemList.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/ItemList/ItemList.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/ItemList/ItemList.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/ItemList/ItemList.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/ItemList/ItemList.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/AudioObject/AudioObject.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/AudioObject/AudioObject.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/AudioObject/AudioObject.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/AudioObject/AudioObject.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/AudioObject/AudioObject.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/AudioObject/AudioObject.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/DataDownload/DataDownload.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/DataDownload/DataDownload.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/DataDownload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/DataDownload/README.md -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/ImageObject/ImageObject.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/ImageObject/ImageObject.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/ImageObject/ImageObject.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/ImageObject/ImageObject.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/ImageObject/ImageObject.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/ImageObject/ImageObject.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/MediaObject.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/MediaObject.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/MediaObject.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/MediaObject.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/MediaObject.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/MediaObject.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/VideoObject/VideoObject.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/VideoObject/VideoObject.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/VideoObject/VideoObject.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/VideoObject/VideoObject.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MediaObject/VideoObject/VideoObject.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MediaObject/VideoObject/VideoObject.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Movie/Movie.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Movie/Movie.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Movie/Movie.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Movie/Movie.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Movie/Movie.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Movie/Movie.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MusicPlaylist/MusicPlaylist.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MusicPlaylist/MusicPlaylist.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MusicPlaylist/MusicPlaylist.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MusicPlaylist/MusicPlaylist.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MusicPlaylist/MusicPlaylist.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MusicPlaylist/MusicPlaylist.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MusicRecording/MusicRecording.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MusicRecording/MusicRecording.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MusicRecording/MusicRecording.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MusicRecording/MusicRecording.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/MusicRecording/MusicRecording.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/MusicRecording/MusicRecording.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Recipe/Recipe.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Recipe/Recipe.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Recipe/Recipe.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Recipe/Recipe.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Recipe/Recipe.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Recipe/Recipe.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Review/Review-Example2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Review/Review-Example2.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Review/Review-Example2.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Review/Review-Example2.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Review/Review-Example2.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Review/Review-Example2.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Review/Review.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Review/Review.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Review/Review.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Review/Review.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/Review/Review.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/Review/Review.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVEpisode/TVEpisode.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVEpisode/TVEpisode.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVEpisode/TVEpisode.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVEpisode/TVEpisode.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVEpisode/TVEpisode.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVEpisode/TVEpisode.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVSeason/TVSeason.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVSeason/TVSeason.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVSeason/TVSeason.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVSeason/TVSeason.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVSeason/TVSeason.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVSeason/TVSeason.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVSeries/TVSeries.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVSeries/TVSeries.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVSeries/TVSeries.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVSeries/TVSeries.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/TVSeries/TVSeries.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/TVSeries/TVSeries.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/WebPage/WebPage.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/WebPage/WebPage.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/WebPage/WebPage.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/WebPage/WebPage.microdata -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/WebPage/WebPage.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/WebPage/WebPage.rdfa -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/WebPageElement/Table/Table.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/WebPageElement/Table/Table.jsonld -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/WebPageElement/Table/Table.microdata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Thing/CreativeWork/WebPageElement/Table/Table.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/CreativeWork/WebPageElement/Table/Table.rdfa -------------------------------------------------------------------------------- /examples/Thing/Event/Event-Example2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/Event-Example2.jsonld -------------------------------------------------------------------------------- /examples/Thing/Event/Event-Example2.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/Event-Example2.microdata -------------------------------------------------------------------------------- /examples/Thing/Event/Event-Example2.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/Event-Example2.rdfa -------------------------------------------------------------------------------- /examples/Thing/Event/Event.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/Event.jsonld -------------------------------------------------------------------------------- /examples/Thing/Event/Event.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/Event.microdata -------------------------------------------------------------------------------- /examples/Thing/Event/Event.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/Event.rdfa -------------------------------------------------------------------------------- /examples/Thing/Event/UserInteraction/UserInteraction.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/UserInteraction/UserInteraction.jsonld -------------------------------------------------------------------------------- /examples/Thing/Event/UserInteraction/UserInteraction.microdata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Thing/Event/UserInteraction/UserInteraction.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Event/UserInteraction/UserInteraction.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Offer/AggregateOffer/AggregateOffer.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Offer/AggregateOffer/AggregateOffer.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Offer/AggregateOffer/AggregateOffer.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Offer/AggregateOffer/AggregateOffer.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Offer/AggregateOffer/AggregateOffer.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Offer/AggregateOffer/AggregateOffer.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Offer/Offer.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Offer/Offer.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Offer/Offer.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Offer/Offer.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Offer/Offer.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Offer/Offer.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example2.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example2.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example2.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example2.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example2.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example3.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example3.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example3.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example3.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example3.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example3.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example4.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example4.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example4.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example4.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example4.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating-Example4.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/AggregateRating/AggregateRating.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/AggregateRating/AggregateRating.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/Rating.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/Rating.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/Rating.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/Rating.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/Rating/Rating.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/Rating/Rating.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress-Example2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress-Example2.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress-Example2.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress-Example2.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress-Example2.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress-Example2.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/ContactPoint/PostalAddress/PostalAddress.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/GeoCoordinates/GeoCoordinates.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/GeoCoordinates/GeoCoordinates.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/GeoCoordinates/GeoCoordinates.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/GeoCoordinates/GeoCoordinates.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/GeoCoordinates/GeoCoordinates.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/GeoCoordinates/GeoCoordinates.rdfa -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/NutritionInformation/NutritionInformation.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/NutritionInformation/NutritionInformation.jsonld -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/NutritionInformation/NutritionInformation.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/NutritionInformation/NutritionInformation.microdata -------------------------------------------------------------------------------- /examples/Thing/Intangible/StructuredValue/NutritionInformation/NutritionInformation.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Intangible/StructuredValue/NutritionInformation/NutritionInformation.rdfa -------------------------------------------------------------------------------- /examples/Thing/Organization/EdducationalOrganization/EdducationalOrganization.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/EdducationalOrganization/EdducationalOrganization.jsonld -------------------------------------------------------------------------------- /examples/Thing/Organization/EdducationalOrganization/EdducationalOrganization.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/EdducationalOrganization/EdducationalOrganization.microdata -------------------------------------------------------------------------------- /examples/Thing/Organization/EdducationalOrganization/EdducationalOrganization.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/EdducationalOrganization/EdducationalOrganization.rdfa -------------------------------------------------------------------------------- /examples/Thing/Organization/LocalBusiness/LocalBusiness-Example2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/LocalBusiness/LocalBusiness-Example2.jsonld -------------------------------------------------------------------------------- /examples/Thing/Organization/LocalBusiness/LocalBusiness-Example2.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/LocalBusiness/LocalBusiness-Example2.microdata -------------------------------------------------------------------------------- /examples/Thing/Organization/LocalBusiness/LocalBusiness-Example2.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/LocalBusiness/LocalBusiness-Example2.rdfa -------------------------------------------------------------------------------- /examples/Thing/Organization/LocalBusiness/LocalBusiness.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/LocalBusiness/LocalBusiness.jsonld -------------------------------------------------------------------------------- /examples/Thing/Organization/LocalBusiness/LocalBusiness.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/LocalBusiness/LocalBusiness.microdata -------------------------------------------------------------------------------- /examples/Thing/Organization/LocalBusiness/LocalBusiness.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/LocalBusiness/LocalBusiness.rdfa -------------------------------------------------------------------------------- /examples/Thing/Organization/NGO/NGO.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/NGO/NGO.jsonld -------------------------------------------------------------------------------- /examples/Thing/Organization/NGO/NGO.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/NGO/NGO.microdata -------------------------------------------------------------------------------- /examples/Thing/Organization/NGO/NGO.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/NGO/NGO.rdfa -------------------------------------------------------------------------------- /examples/Thing/Organization/Organization.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/Organization.jsonld -------------------------------------------------------------------------------- /examples/Thing/Organization/Organization.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/Organization.microdata -------------------------------------------------------------------------------- /examples/Thing/Organization/Organization.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/Organization.rdfa -------------------------------------------------------------------------------- /examples/Thing/Organization/PerformingGroup/MusicGroup/MusicGroup.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/PerformingGroup/MusicGroup/MusicGroup.jsonld -------------------------------------------------------------------------------- /examples/Thing/Organization/PerformingGroup/MusicGroup/MusicGroup.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/PerformingGroup/MusicGroup/MusicGroup.microdata -------------------------------------------------------------------------------- /examples/Thing/Organization/PerformingGroup/MusicGroup/MusicGroup.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Organization/PerformingGroup/MusicGroup/MusicGroup.rdfa -------------------------------------------------------------------------------- /examples/Thing/Person/Person-Advanced.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Person/Person-Advanced.jsonld -------------------------------------------------------------------------------- /examples/Thing/Person/Person-Advanced.microdata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Thing/Person/Person-Advanced.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Person/Person-Advanced.rdfa -------------------------------------------------------------------------------- /examples/Thing/Person/Person.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Person/Person.jsonld -------------------------------------------------------------------------------- /examples/Thing/Person/Person.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Person/Person.microdata -------------------------------------------------------------------------------- /examples/Thing/Person/Person.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Person/Person.rdfa -------------------------------------------------------------------------------- /examples/Thing/Place/CivicStructure/CivicStructure.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/CivicStructure/CivicStructure.jsonld -------------------------------------------------------------------------------- /examples/Thing/Place/CivicStructure/CivicStructure.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/CivicStructure/CivicStructure.microdata -------------------------------------------------------------------------------- /examples/Thing/Place/CivicStructure/CivicStructure.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/CivicStructure/CivicStructure.rdfa -------------------------------------------------------------------------------- /examples/Thing/Place/LocalBusiness/LocalBusiness.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/LocalBusiness/LocalBusiness.jsonld -------------------------------------------------------------------------------- /examples/Thing/Place/LocalBusiness/LocalBusiness.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/LocalBusiness/LocalBusiness.microdata -------------------------------------------------------------------------------- /examples/Thing/Place/LocalBusiness/LocalBusiness.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/LocalBusiness/LocalBusiness.rdfa -------------------------------------------------------------------------------- /examples/Thing/Place/Place.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/Place.jsonld -------------------------------------------------------------------------------- /examples/Thing/Place/Place.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/Place.microdata -------------------------------------------------------------------------------- /examples/Thing/Place/Place.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Place/Place.rdfa -------------------------------------------------------------------------------- /examples/Thing/Product/Product.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Product/Product.jsonld -------------------------------------------------------------------------------- /examples/Thing/Product/Product.microdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Product/Product.microdata -------------------------------------------------------------------------------- /examples/Thing/Product/Product.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Product/Product.rdfa -------------------------------------------------------------------------------- /examples/Thing/Thing.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Thing.jsonld -------------------------------------------------------------------------------- /examples/Thing/Thing.rdfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/Thing/Thing.rdfa -------------------------------------------------------------------------------- /examples/schema.org-markup-bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/examples/schema.org-markup-bugs.txt -------------------------------------------------------------------------------- /faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/faq.html -------------------------------------------------------------------------------- /img/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/img/csv.png -------------------------------------------------------------------------------- /img/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/img/json.png -------------------------------------------------------------------------------- /img/ntriples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/img/ntriples.png -------------------------------------------------------------------------------- /img/rdf-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/img/rdf-xml.png -------------------------------------------------------------------------------- /img/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/img/turtle.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/index.html -------------------------------------------------------------------------------- /learn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/learn.html -------------------------------------------------------------------------------- /mappings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/mappings.html -------------------------------------------------------------------------------- /mappings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/mappings/README.md -------------------------------------------------------------------------------- /mappings/bibo.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/mappings/bibo.ttl -------------------------------------------------------------------------------- /mappings/schemaorg_wn.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/mappings/schemaorg_wn.owl -------------------------------------------------------------------------------- /mappings/sioc.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/mappings/sioc.ttl -------------------------------------------------------------------------------- /sandbox/kidehen_linked_data_version_of_all.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/kidehen_linked_data_version_of_all.rdf -------------------------------------------------------------------------------- /sandbox/schema-org-nav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/README.md -------------------------------------------------------------------------------- /sandbox/schema-org-nav/doc/schema-org-nav-screenshot-explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/doc/schema-org-nav-screenshot-explore.png -------------------------------------------------------------------------------- /sandbox/schema-org-nav/doc/schema-org-nav-screenshot-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/doc/schema-org-nav-screenshot-ext.png -------------------------------------------------------------------------------- /sandbox/schema-org-nav/lib/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/lib/jquery-ui.min.js -------------------------------------------------------------------------------- /sandbox/schema-org-nav/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/lib/jquery.min.js -------------------------------------------------------------------------------- /sandbox/schema-org-nav/lib/jquery.rdfquery.rdfa.min-1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/lib/jquery.rdfquery.rdfa.min-1.0.js -------------------------------------------------------------------------------- /sandbox/schema-org-nav/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/load.gif -------------------------------------------------------------------------------- /sandbox/schema-org-nav/rdfa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/rdfa.css -------------------------------------------------------------------------------- /sandbox/schema-org-nav/rdfa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/rdfa.html -------------------------------------------------------------------------------- /sandbox/schema-org-nav/rdflib-rdfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/rdflib-rdfa.js -------------------------------------------------------------------------------- /sandbox/schema-org-nav/schema-org-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/sandbox/schema-org-nav/schema-org-nav.js -------------------------------------------------------------------------------- /schemaorg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/schemaorg.css -------------------------------------------------------------------------------- /scrapers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/README.md -------------------------------------------------------------------------------- /scrapers/run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/run.rb -------------------------------------------------------------------------------- /scrapers/schema2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/schema2csv.py -------------------------------------------------------------------------------- /scrapers/schema2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/schema2json.py -------------------------------------------------------------------------------- /scrapers/schema2rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/schema2rdf.py -------------------------------------------------------------------------------- /scrapers/schema_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/schema_scraper.py -------------------------------------------------------------------------------- /scrapers/scrape_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/scrape_all.py -------------------------------------------------------------------------------- /scrapers/scrape_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/scrape_csv.py -------------------------------------------------------------------------------- /scrapers/scrape_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/scrape_json.py -------------------------------------------------------------------------------- /scrapers/scrape_rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/scrapers/scrape_rdf.py -------------------------------------------------------------------------------- /tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools.html -------------------------------------------------------------------------------- /tools/schema-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/README.md -------------------------------------------------------------------------------- /tools/schema-gateway/microdata_pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/microdata_pp.py -------------------------------------------------------------------------------- /tools/schema-gateway/rdflib_schemaorg_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/rdflib_schemaorg_csv.py -------------------------------------------------------------------------------- /tools/schema-gateway/schema_org_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/schema_org_processor.py -------------------------------------------------------------------------------- /tools/schema-gateway/test/md-test-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/test/md-test-1.html -------------------------------------------------------------------------------- /tools/schema-gateway/test/md-test-1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/test/md-test-1.ttl -------------------------------------------------------------------------------- /tools/schema-gateway/test/solar-system.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/test/solar-system.csv -------------------------------------------------------------------------------- /tools/schema-gateway/test/solar-system.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tools/schema-gateway/test/solar-system.ttl -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/ld-html/Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/Overview.html -------------------------------------------------------------------------------- /tutorials/ld-html/acme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/acme.html -------------------------------------------------------------------------------- /tutorials/ld-html/acme.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/acme.ttl -------------------------------------------------------------------------------- /tutorials/ld-html/comprod.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/comprod.ttl -------------------------------------------------------------------------------- /tutorials/ld-html/img/acme-tabview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/acme-tabview.png -------------------------------------------------------------------------------- /tutorials/ld-html/img/baseline.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/baseline.graffle -------------------------------------------------------------------------------- /tutorials/ld-html/img/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/baseline.png -------------------------------------------------------------------------------- /tutorials/ld-html/img/comprod.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/comprod.graffle -------------------------------------------------------------------------------- /tutorials/ld-html/img/comprod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/comprod.png -------------------------------------------------------------------------------- /tutorials/ld-html/img/foaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/foaf.png -------------------------------------------------------------------------------- /tutorials/ld-html/img/morecompany-team.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/morecompany-team.graffle -------------------------------------------------------------------------------- /tutorials/ld-html/img/morecompany-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/morecompany-team.png -------------------------------------------------------------------------------- /tutorials/ld-html/img/morecompany.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/morecompany.graffle -------------------------------------------------------------------------------- /tutorials/ld-html/img/morecompany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/morecompany.png -------------------------------------------------------------------------------- /tutorials/ld-html/img/products.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/products.graffle -------------------------------------------------------------------------------- /tutorials/ld-html/img/products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/img/products.png -------------------------------------------------------------------------------- /tutorials/ld-html/list-hammer-prices-and-provider.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/list-hammer-prices-and-provider.sparql -------------------------------------------------------------------------------- /tutorials/ld-html/local-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/link-fish/schema-org-rdf/HEAD/tutorials/ld-html/local-style.css --------------------------------------------------------------------------------