forked from frictionlessdata/tableschema-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
76 lines (76 loc) · 2.47 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Package: tableschema.r
Type: Package
Title: Table Schema 'Frictionless Data'
Version: 1.1.1
Date: 2021-02-09
Authors@R: c(person("Kleanthis", "Koupidis", email = "koupidis@okfn.gr", role = c("aut", "cre")),
person("Lazaros", "Ioannidis", email = "larjohn@gmail.com", role = "aut"),
person("Charalampos", "Bratsas", email = "cbratsas@math.auth.gr", role = "aut"),
person("Open Knowledge International", email = "info@okfn.org", role = "cph"))
Maintainer: Kleanthis Koupidis <koupidis@okfn.gr>
Description: Allows to work with 'Table Schema' (<http://specs.frictionlessdata.io/table-schema/>). 'Table Schema' is well suited for use cases around handling and validating tabular data in text formats such as 'csv', but its utility extends well beyond this core usage, towards a range of applications where data benefits from a portable schema format. The 'tableschema.r' package can load and validate any table schema descriptor, allow the creation and modification of descriptors, expose methods for reading and streaming data that conforms to a 'Table Schema' via the 'Tabular Data Resource' abstraction.
URL: https://github.com/frictionlessdata/tableschema-r
BugReports: https://github.com/frictionlessdata/tableschema-r/issues
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Imports:
config,
future,
httr,
iterators,
jsonlite,
jsonvalidate,
lubridate,
purrr,
R6,
RCurl,
rlist,
stringr,
urltools
Suggests:
covr,
foreach,
testthat
Collate:
'constraints.checkUnique.R'
'constraints.checkRequired.R'
'constraints.checkPattern.R'
'constraints.checkMinLength.R'
'constraints.checkMinimum.R'
'constraints.checkMaxLength.R'
'constraints.checkMaximum.R'
'constraints.checkEnum.R'
'constraints.R'
'types.castArray.R'
'types.castYearmonth.R'
'types.castYear.R'
'types.castTime.R'
'types.castString.R'
'types.castObject.R'
'types.castNumber.R'
'types.castList.R'
'types.castInteger.R'
'types.castGeopoint.R'
'types.castGeojson.R'
'types.castDuration.R'
'types.castDatetime.R'
'types.castDate.R'
'types.castBoolean.R'
'types.castAny.R'
'types.R'
'field.R'
'helpers.R'
'infer.R'
'is.valid.R'
'tableschemaerror.R'
'profile.R'
'readable.R'
'readable.array.R'
'readable.connection.R'
'schema.R'
'table.R'
'tableschema.r.R'
'validate.R'
'writable.R'
RoxygenNote: 7.1.0