-
Notifications
You must be signed in to change notification settings - Fork 905
Closed
Labels
schema.org vocabGeneral top level tag for issues on the vocabularyGeneral top level tag for issues on the vocabulary
Milestone
Description
As it stands, http://schema.org/Dataset allows one to describe the metadata for a dataset, but not the actual data. I propose we:
- Move Dataset out from CreativeWork and make it a child of ItemList (similar to the change to BreadcrumbList made in version 1.92).
- Create a new type Thing > Intangible > ListItem > DataItem.
- Expand the range for http://schema.org/dateCreated to include DataItem.
This would allow people to create data catalogs like:
{
"@context": "http://schema.org/",
"@type": "Dataset",
"name": "Company directory",
"itemListElement": [
{
"@type": "Person",
"name": "Alice",
"email": "[email protected]",
"dateCreated": "2014-07-01"'
},
{
"@type": "Person",
"name": "Bob",
"email": "[email protected]",
"dateCreated": "2015-01-02"'
},
]
}
Note in the above example, the dateCreated is the date the record was created not the date when the person joined the company.
One could describe simple datasets by using Number or Text instead of a richer type.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
schema.org vocabGeneral top level tag for issues on the vocabularyGeneral top level tag for issues on the vocabulary