Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade column from single to multiple values API
- Loading branch information
Showing
3 changed files
with
205 additions
and
4 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
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,125 @@ | ||
| [ | ||
| { | ||
| "type": "add", | ||
| "id": "id1", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Brazil", | ||
| "address": "Shibuya, Tokyo, Japan", | ||
| "email_address": "info@razil.jp", | ||
| "age": 1, | ||
| "product": ["moritapo","groonga"] | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id2", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Enishi Tech Inc.", | ||
| "address": "Sapporo, Hokkaido, Japan", | ||
| "email_address": "info@enishi-tech.com", | ||
| "age": 2, | ||
| "product": ["nroonga","groonga"] | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id3", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "ClearCode Inc.", | ||
| "address": "Hongo, Tokyo, Japan", | ||
| "email_address": "info@clear-code.com", | ||
| "age": 3, | ||
| "product": ["cutter","groonga"] | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id4", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Anaheim Electronics", | ||
| "address": "Granada, Moon", | ||
| "age": 4, | ||
| "product": ["hi-zack","gundam"] | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id5", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Shinsei Industry", | ||
| "address": "Earth", | ||
| "age": 5, | ||
| "product": "valkyrie" | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id6", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Omni Consumer Products", | ||
| "address": "Detroit and Delta City, Michigan, United States", | ||
| "age": 6, | ||
| "product": "robocop" | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id7", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Capsule Corporation", | ||
| "address": "West City", | ||
| "age": 7, | ||
| "product": "time machine" | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id8", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Stark Industries", | ||
| "address": "United States", | ||
| "age": 8, | ||
| "product": "iron man" | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id9", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "Umbrella Corporation", | ||
| "address": "Tokyo, Japan", | ||
| "age": 9, | ||
| "product": "tyrant" | ||
| } | ||
| }, | ||
| { | ||
| "type": "add", | ||
| "id": "id10", | ||
| "version": 1, | ||
| "lang": "en", | ||
| "fields": { | ||
| "name": "U.S. Robots and Mechanical Men", | ||
| "address": "New York, United States", | ||
| "age": 10, | ||
| "product": ["ndr114","spd13"] | ||
| } | ||
| } | ||
| ] |