Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fstueber committed Jul 31, 2024
1 parent a61c10b commit 3ff1b83
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 64 deletions.
10 changes: 5 additions & 5 deletions samples/sample01a.csvts.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"language": "en",
"columns": [
{
"code": "id",
"id": "id",
"name": "Id",
"description": "Unique id",
"type": "string"
},
{
"code": "title",
"id": "title",
"name": "Title",
"description": "Course title",
"type": "string"
},
{
"code": "startDate",
"id": "startDate",
"name": "StartDate",
"description": "Start date of the course",
"type": "date-time",
Expand All @@ -30,7 +30,7 @@
]
},
{
"code": "endDate",
"id": "endDate",
"name": "EndDate",
"description": "End date of the course",
"type": "date-time",
Expand All @@ -39,7 +39,7 @@
]
},
{
"code": "subjectId",
"id": "subjectId",
"name": "SubjectId",
"description": "Reference to subject (see sample02c.csv-schema.json)",
"type": "string"
Expand Down
10 changes: 5 additions & 5 deletions samples/sample01b.csvts.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"language": "en",
"columns": [
{
"code": "id",
"id": "id",
"name": "Id",
"description": "Unique id",
"type": "string"
},
{
"code": "title",
"id": "title",
"name": "Title",
"description": "Course title",
"type": "string"
},
{
"code": "startDate",
"id": "startDate",
"name": "StartDate",
"description": "Start date of the course",
"type": "date-time",
Expand All @@ -30,7 +30,7 @@
]
},
{
"code": "endDate",
"id": "endDate",
"name": "EndDate",
"description": "End date of the course",
"type": "date-time",
Expand All @@ -39,7 +39,7 @@
]
},
{
"code": "subjectId",
"id": "subjectId",
"name": "SubjectId",
"description": "Reference to subject (see sample02c.csv-schema.json)",
"type": "string"
Expand Down
6 changes: 3 additions & 3 deletions samples/sample01c.csvts.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
"language": "en",
"columns": [
{
"code": "id",
"id": "id",
"name": "Id",
"description": "Unique id",
"type": "string"
},
{
"code": "shortName",
"id": "shortName",
"name": "ShortName",
"description": "Short name of subject",
"type": "string"
},
{
"code": "longName",
"id": "longName",
"name": "LongName",
"description": "Long name of subject",
"type": "string"
Expand Down
3 changes: 3 additions & 0 deletions samples/sample02.csvts.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
"language": "en",
"keys": [
{
"id": "timeZone",
"name": "TimeZone",
"description": "Time Zone according to http://web.cs.ucla.edu/~eggert/tz/tz-link.htm",
"type": "string"
},
{
"id": "validFrom",
"name": "ValidFrom",
"description": "Start date of validity",
"type": "date",
Expand All @@ -21,6 +23,7 @@
]
},
{
"id": "validTo",
"name": "ValidTo",
"description": "End date of validity",
"type": "date",
Expand Down
10 changes: 5 additions & 5 deletions samples/sample03.csvts.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"description": "List of countries",
"columns": [
{
"code": "country",
"id": "country",
"description": "Discriminator for country row",
"type": "discriminator",
"values": [
Expand All @@ -21,12 +21,12 @@
]
},
{
"code": "name",
"id": "name",
"description": "Name of the country",
"type": "string"
},
{
"code": "continent",
"id": "continent",
"description": "Name of the continent",
"type": "string"
}
Expand All @@ -36,7 +36,7 @@
"description": "List of continents",
"columns": [
{
"code": "continent",
"id": "continent",
"description": "Discriminator for continent row",
"type": "discriminator",
"values": [
Expand All @@ -46,7 +46,7 @@
]
},
{
"code": "name",
"id": "name",
"description": "Name of the continent",
"type": "string"
}
Expand Down
Loading

0 comments on commit 3ff1b83

Please sign in to comment.