-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
162 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[ | ||
{ | ||
"title": "Student List", | ||
"description": "A simple CSV file containing a list of students with their names and ages.", | ||
"expectedResult": "This CSV should validate successfully without errors or warnings.", | ||
"csvUrl": "https://raw.githubusercontent.com/theodi/csvlint.io/refs/heads/main/public/examples/students_perfect.csv", | ||
"dialect": "", | ||
"schemaUrl": "" | ||
}, | ||
{ | ||
"title": "Mixed types", | ||
"description": "A simple CSV file containing a list of students with their names and ages.", | ||
"expectedResult": "This CSV should produce warnings due to data inconsistencies in the age column.", | ||
"csvUrl": "https://raw.githubusercontent.com/theodi/csvlint.io/refs/heads/main/public/examples/students_warnings.csv", | ||
"dialect": "", | ||
"schemaUrl": "" | ||
}, | ||
{ | ||
"title": "Pipe Separator", | ||
"description": "A simple CSV file containing a list of students with their names and ages.", | ||
"expectedResult": "This CSV is valid but the separator is a pipe character.", | ||
"csvUrl": "https://raw.githubusercontent.com/theodi/csvlint.io/refs/heads/main/public/examples/students_pipe.txt", | ||
"dialect": "delimiter=|", | ||
"schemaUrl": "" | ||
}, | ||
{ | ||
"title": "Schema validation", | ||
"description": "Same file as in the first example, but this time the schema will throw errors.", | ||
"expectedResult": "This CSV should be invalid based upon the schema.", | ||
"csvUrl": "https://raw.githubusercontent.com/theodi/csvlint.io/refs/heads/main/public/examples/students_perfect.csv", | ||
"dialect": "", | ||
"schemaUrl": "https://raw.githubusercontent.com/theodi/csvlint.io/refs/heads/main/public/examples/studentsSchema.json" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters