adiwg-mdcodes 2.4.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74df95178e73da14795a871ba682ee5d9098d6d8
4
- data.tar.gz: 20d23b4e675f712abd9decab4bf51079966ba4cd
3
+ metadata.gz: 6967dcbe4564065a981b8ad92a7bb79ce80c1f1b
4
+ data.tar.gz: b98b892f8311c40b333f752058e4c292b0563911
5
5
  SHA512:
6
- metadata.gz: e6092b672672b0edbefd40aabb6b0383d9772ba50a84493663423cb8c544457fd844023ccef9a5be8638f5aab4dc9ec8695d0bb87fc69ab1133444be9d5cc62e
7
- data.tar.gz: c264be358d80b88ab99988b239159f70e5bf8f7ec3e9aab86b0050fd9542e05eaff8db6ff9a9321e9f059524b2ccdbc2e7faa7ca87e70eac1281adfdcf74a4b3
6
+ metadata.gz: 63b8be0e72aa004ccebbadcc35cee405f05b030f9dbc857f51615c0d654635f13d1597e444d313470ca3779019101525a41d2dbaa4422c59368174efdefbd534
7
+ data.tar.gz: 596da5e3440c2e02e72611cb98d93a5f4453bf50cd5ece6da76147401d29cebe731858bbbdd0cbe3f01f82b63902baf61669957ebcdf142844372bce6e3286ff
@@ -1,7 +1,7 @@
1
1
  # adiwg mdCodes
2
2
 
3
3
  # version 2 history
4
- # 2.4.0 2018-01-10 added adiwg mapGridSystem codelist
4
+ # 2.5.0 2018-03-28 added adiwg dataTypes codelist (ANSI and SQL data types)
5
5
  # 2.4.0 2018-01-10 added adiwg mapProjection codelist
6
6
  # 2.3.3 2017-10-11 added associationType code 'isPartOf'
7
7
  # 2.3.2 2017-10-05 added spatialRepresentation code 'coordinate'
@@ -18,6 +18,12 @@
18
18
  # 2.1.1 2016-12-18 change to European spelling 'polarisation'
19
19
  # 2.1.0 2016-11-27 added 10 MI codelists
20
20
 
21
+ module ADIWG
22
+ module Mdcodes
23
+ VERSION = "2.5.0"
24
+ end
25
+ end
26
+
21
27
  # version 1 history
22
28
  # 0.1.0 2014-11-05 first release
23
29
  # 0.1.1 2014-11-06 added factSheet to scope
@@ -32,9 +38,3 @@
32
38
  # 1.1.0 2015-07-28 added codelists for country, languages
33
39
  # 1.2.0 2015-09-18 change source of characterSet from ISO to IANA
34
40
  # 1.2.1 2015-09-28 bumped version number to match gem
35
-
36
- module ADIWG
37
- module Mdcodes
38
- VERSION = "2.4.0"
39
- end
40
- end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdcodes",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "CodeLists for ADIwg mdJSON",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,51 @@
1
+ ---
2
+ # mdJson codelists
3
+ # base codelist for mdEditor
4
+
5
+ codelistType: "staticList"
6
+ codelistName: "adiwg_dataType"
7
+ source: "Alaska Data Integration working group"
8
+ sourceName: "ADIwg_DataType"
9
+ extensible: true
10
+ description: "ANSI and SQL dataTypes"
11
+ codelist:
12
+ - {code: "char01", codeName: character, description: "fixed length character strings"}
13
+ - {code: "char03", codeName: character varying", description: "variable length character strings"}
14
+ - {code: "char06", codeName: character large object, description: "character large object"}
15
+ - {code: "nchar01", codeName: national character, description: "fixed length national character strings (2 byte unicode)"}
16
+ - {code: "nchar04", codeName: national character varying, description: "variable length national character strings (2 byte unicode)"}
17
+ - {code: "nchar07", codeName: national character large object, description: "national character (2 byte unicode) large object"}
18
+ - {code: "text01", codeName: text, description: "variable string to maximum of 65K characters"}
19
+ - {code: "text02", codeName: tinytext, description: "variable string to maximum of 255 characters"}
20
+ - {code: "text03", codeName: mediumtext, description: "variable string to maximum of 16M characters"}
21
+ - {code: "text04", codeName: longtext, description: "variable string to maximum of 4G characters"}
22
+ - {code: "bin01", codeName: binary, description: "fixed length binary"}
23
+ - {code: "bin02", codeName: binary varying, description: "variable length binary"}
24
+ - {code: "bin03", codeName: binary large object, description: "binary large object to maximum of 65K bytes"}
25
+ - {code: "bin05", codeName: mediumblob, description: "binary large object to maximum of 16M bytes"}
26
+ - {code: "bin06", codeName: longblob, description: "binary large object to maximum of 4G bytes"}
27
+ - {code: "int01", codeName: integer, description: "integers number (+-2B)"}
28
+ - {code: "int03", codeName: tinyint, description: "integer numbers (+-128)"}
29
+ - {code: "int04", codeName: mediumint, description: "integer numbers (+-16K)"}
30
+ - {code: "int05", codeName: smallint, description: "integer numbers (+-32K)"}
31
+ - {code: "int06", codeName: bigint, description: "integer numbers (+-1e27)"}
32
+ - {code: "num01", codeName: float, description: "floating point numbers"}
33
+ - {code: "num02", codeName: real, description: "low precision floating point numbers"}
34
+ - {code: "num03", codeName: double precision, description: "high precision floating point numbers"}
35
+ - {code: "num04", codeName: numeric, description: "fixed precision and scale decimal numbers"}
36
+ - {code: "num05", codeName: decimal, description: "fixed precision and scale decimal numbers (numeric alternate)"}
37
+ - {code: "bit01", codeName: bit, description: "fixed length bit strings"}
38
+ - {code: "bit02", codeName: bit varying, description: "variable length bit strings"}
39
+ - {code: "date01", codeName: date, description: "calendar date"}
40
+ - {code: "date02", codeName: time, description: "clock time"}
41
+ - {code: "date03", codeName: datetime, description: "date and time"}
42
+ - {code: "date04", codeName: timestamp, description: "number of seconds since the Unix epoch (1970-01-01T00:00:00 UTC)"}
43
+ - {code: "date05", codeName: year, description: "year"}
44
+ - {code: "date06", codeName: interval, description: "time intervals"}
45
+ - {code: "date07", codeName: interval day, description: "day intervals"}
46
+ - {code: "date08", codeName: interval year, description: "year intervals"}
47
+ - {code: "money01", codeName: currency, description: "monetary value"}
48
+ - {code: "money02", codeName: money, description: "monetary value"}
49
+ - {code: "bool01", codeName: boolean, description: "Boolean value (true/false)"}
50
+ - {code: "xml01", codeName: xml, description: "xml formatted data"}
51
+ - {code: "enum01", codeName: enum, description: "list of possible values: enum('a','b','c')"}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adiwg-mdcodes
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - stansmith907, jlblcc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-19 00:00:00.000000000 Z
11
+ date: 2018-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -91,6 +91,7 @@ files:
91
91
  - lib/adiwg/mdcodes/version.rb
92
92
  - package.json
93
93
  - resources/adiwg_addressType.yml
94
+ - resources/adiwg_dataType.yml
94
95
  - resources/adiwg_entityType.yml
95
96
  - resources/adiwg_mapGridSystem.yml
96
97
  - resources/adiwg_mapProjection.yml