Dabbu19/schema-org-v1
Schema.org Dataset Description Vocabulary schemas for structured data on the web Original Source: https://schema.org/version/latest/schemaorg-current-https.ttl Dataset Summary This dataset contains RDF triples from Schema.org converted to HuggingFace dataset format for easy use in machine learning pipelines. Format: Originally turtle, converted to HuggingFace Dataset Size: 0.01 GB (extracted) Entities: ~2K types Triples: ~15K Original License: CC… See the full description on the dataset page: https://huggingface.co/datasets/Dabbu19/schema-org-v1.
Schema.org
Dataset Description
Vocabulary schemas for structured data on the web
Original Source: https://schema.org/version/latest/schemaorg-current-https.ttl
Dataset Summary
This dataset contains RDF triples from Schema.org converted to HuggingFace dataset format for easy use in machine learning pipelines.
- Format: Originally turtle, converted to HuggingFace Dataset
- Size: 0.01 GB (extracted)
- Entities: ~2K types
- Triples: ~15K
- Original License: CC BY-SA 3.0
Recommended Use
Ontology understanding, vocabulary learning, small-scale testing
Notes
Direct download, no extraction needed
RDF Format
This dataset uses a standard lossless format for representing RDF triples. Each triple is a row with 6 fields:
subject: Subject URI or blank nodepredicate: Predicate URIobject: Object value (URI, literal, or blank node)object_type: Type of object (uri,literal, orblank_node)object_datatype: XSD datatype URI (for typed literals)object_language: Language tag (for language-tagged literals)
Loading the Dataset
from datasets import load_dataset
dataset = load_dataset("schema-org")
for row in dataset["train"]:
print(f"{row['subject']} {row['predicate']} {row['object']}")Citation
If you use this dataset, please cite the original source:
Dataset: Schema.org URL: https://schema.org/version/latest/schemaorg-current-https.ttl License: CC BY-SA 3.0
Conversion Details
- Converted using: RDF to HuggingFace Incremental Converter
- Conversion date: 2026-01-13
- Format version: 1.0
This dataset is part of the CleverThis knowledge graph collection.
