Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in schema:Enumeration name #669

Merged
merged 4 commits into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/croissant.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ croissant:Transform a rdf:Class ;
croissant:ContentExtractionEnumeration a rdf:Class ;
rdfs:label "ContexExtractionEnumeration" ;
rdfs:comment "Specifies which content to extract from a file. One of \"all\", \"lines\", or \"lineNumbers\"." ;
rdfs:subClassOf schema:Enumerations .
rdfs:subClassOf schema:Enumeration .

croissant:FilePropertyEnumeration a rdf:Class ;
rdfs:label "FilePropertyEnumeration" ;
rdfs:comment "Specifies a property of a FileObject. One of \"fullPath\" or \"fileName\"." ;
rdfs:subClassOf schema:Enumerations .
rdfs:subClassOf schema:Enumeration .

# Dataset level properies

Expand Down Expand Up @@ -261,7 +261,7 @@ croissant:jsonQuery a rdf:Property ;
croissant:Split a rdf:class ;
rdfs:label "Split" ;
rdfs:comment "Splits for training a machine learning, typically test, train and validation." ;
rdfs:subClassOf schema:enumeration .
rdfs:subClassOf schema:Enumeration .

croissant:TrainSplit a croissant:Split ;
rdfs:label "TrainSplit" ;
Expand Down
Loading