From 392313c0c2d1e136460fa30ac2bdccafeef66ee8 Mon Sep 17 00:00:00 2001 From: dev Date: Thu, 18 Jan 2024 17:53:59 +0530 Subject: [PATCH 1/4] Added unit tests and SPARQL to fix blank nodes, fix type objects --- sparql/fix_entity_type.sparql | 15 +++++++++++ src/main.rb | 6 +++-- tests/fix_entity_type_test.rb | 34 ++++++++++++++++++++++++ tests/fixtures/test_blank_nodes.jsonld | 5 ++++ tests/fixtures/test_capital_types.jsonld | 15 +++++++++++ 5 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 sparql/fix_entity_type.sparql create mode 100644 tests/fix_entity_type_test.rb create mode 100644 tests/fixtures/test_blank_nodes.jsonld create mode 100644 tests/fixtures/test_capital_types.jsonld diff --git a/sparql/fix_entity_type.sparql b/sparql/fix_entity_type.sparql new file mode 100644 index 0000000..1bab7bb --- /dev/null +++ b/sparql/fix_entity_type.sparql @@ -0,0 +1,15 @@ +PREFIX schema: + +DELETE { + ?s ?p ?entityClass +} +INSERT { + ?s ?p ?updatedEntityClass +} +WHERE { + ?s a ?entityClass ; + ?p ?entityClass . + FILTER(STRSTARTS(STR(?entityClass), STR(schema:))) + FILTER(REGEX(SUBSTR(STRAFTER(STR(?entityClass), STR(schema:)), 1, 1), "^[a-z]")) + BIND(URI(CONCAT(STR(schema:), UCASE(SUBSTR(STRAFTER(STR(?entityClass), STR(schema:)), 1, 1)) , SUBSTR(STRAFTER(STR(?entityClass), STR(schema:)), 2))) AS ?updatedEntityClass) +} diff --git a/src/main.rb b/src/main.rb index 8a16b18..06977d5 100644 --- a/src/main.rb +++ b/src/main.rb @@ -59,8 +59,10 @@ retry_count = 0 end -sparql_file = "./sparql/replace_blank_nodes.sparql" -graph.query(SPARQL.parse(File.read(sparql_file), update: true)) +replace_blank_nodes_sparql = "./sparql/replace_blank_nodes.sparql" +fix_entity_type_sparql = "./sparql/fix_entity_type.sparql" +graph.query(SPARQL.parse(File.read(replace_blank_nodes_sparql), update: true)) +graph.query(SPARQL.parse(File.read(fix_entity_type_sparql), update: true)) File.open(file_name, 'w') do |file| file.puts(graph.dump(:jsonld)) end diff --git a/tests/fix_entity_type_test.rb b/tests/fix_entity_type_test.rb new file mode 100644 index 0000000..781134c --- /dev/null +++ b/tests/fix_entity_type_test.rb @@ -0,0 +1,34 @@ +require 'minitest/autorun' +require 'linkeddata' + +class SparqlTest < Minitest::Test + + # Load and parse sparql + def setup + @fix_entity_type_sparql_file = "./sparql/fix_entity_type.sparql" + @replace_blank_node_sparql_file = "./sparql/replace_blank_nodes.sparql" + end + + # check that the blank node is replaced + def test_capitalized_first_letter + sparql = SPARQL.parse(File.read(@fix_entity_type_sparql_file), update: true) + graph = RDF::Graph.load("./tests/fixtures/test_capital_types.jsonld") + # puts "before: #{graph.dump(:jsonld)}" + graph.query(sparql) + # puts "after: #{graph.dump(:jsonld)}" + assert_equal [ + RDF::URI("http://schema.org/Person"), + RDF::URI("http://schema.org/Place") + ], graph.query([nil, RDF::type, nil]).each.objects + end + + # check that the blank node is replaced + def test_blank_node_replaced + sparql = SPARQL.parse(File.read(@replace_blank_node_sparql_file), update: true) + graph = RDF::Graph.load("./tests/fixtures/test_blank_nodes.jsonld") + # puts "before: #{graph.dump(:jsonld)}" + graph.query(sparql) + # puts "after: #{graph.dump(:jsonld)}" + assert_equal false, graph.query([nil, RDF::type, RDF::URI("http://schema.org/Thing")]).each.subjects.node? + end +end diff --git a/tests/fixtures/test_blank_nodes.jsonld b/tests/fixtures/test_blank_nodes.jsonld new file mode 100644 index 0000000..1983c0a --- /dev/null +++ b/tests/fixtures/test_blank_nodes.jsonld @@ -0,0 +1,5 @@ +{ + "@context":"http://schema.org", + "@type":"Thing", + "name":"Some name" + } \ No newline at end of file diff --git a/tests/fixtures/test_capital_types.jsonld b/tests/fixtures/test_capital_types.jsonld new file mode 100644 index 0000000..47e3f08 --- /dev/null +++ b/tests/fixtures/test_capital_types.jsonld @@ -0,0 +1,15 @@ +{ + "@context":"http://schema.org", + "@graph":[ + { + "@type":"person", + "@id":"http://example.com/person1", + "name":"Person1" + }, + { + "@type":"place", + "@id":"http://example.com/place1", + "name":"Place1" + } + ] + } \ No newline at end of file From 88af7c1367685f7be4ecce1573fedd548f1b164a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Thu, 18 Jan 2024 08:46:25 +0000 Subject: [PATCH 2/4] Add data generated by the script --- output/yardbirdsuite-events.jsonld | 4744 ++++++++++++++++++++++------ 1 file changed, 3773 insertions(+), 971 deletions(-) diff --git a/output/yardbirdsuite-events.jsonld b/output/yardbirdsuite-events.jsonld index ec1c233..ff8a2b6 100644 --- a/output/yardbirdsuite-events.jsonld +++ b/output/yardbirdsuite-events.jsonld @@ -169,64 +169,76 @@ "@id": "_:g455600" }, { - "@id": "_:g458120" + "@id": "_:g458760" }, { - "@id": "_:g458700" + "@id": "_:g459340" }, { - "@id": "_:g459820" + "@id": "_:g461120" }, { - "@id": "_:g461900" + "@id": "_:g463840" }, { - "@id": "_:g462600" + "@id": "_:g465620" }, { - "@id": "_:g464660" + "@id": "_:g468340" }, { - "@id": "_:g466680" + "@id": "_:g471420" }, { - "@id": "_:g468240" + "@id": "_:g473660" }, { - "@id": "_:g470140" + "@id": "_:g475640" }, { - "@id": "_:g472220" + "@id": "_:g478340" }, { - "@id": "_:g474240" + "@id": "_:g481440" }, { - "@id": "_:g476300" + "@id": "_:g484020" }, { - "@id": "_:g477840" + "@id": "_:g485620" }, { - "@id": "_:g479920" + "@id": "_:g488740" }, { - "@id": "_:g481980" + "@id": "_:g491440" }, { - "@id": "_:g484000" + "@id": "_:g494300" }, { - "@id": "_:g485520" + "@id": "_:g497220" }, { - "@id": "_:g487600" + "@id": "_:g500260" }, { - "@id": "_:g490060" + "@id": "_:g503220" }, { - "@id": "_:g492120" + "@id": "_:g505840" + }, + { + "@id": "_:g509280" + }, + { + "@id": "_:g512000" + }, + { + "@id": "_:g515060" + }, + { + "@id": "_:g518520" } ], "http://schema.org/inLanguage": [ @@ -353,13 +365,13 @@ ] }, { - "@id": "_:g458120", + "@id": "_:g458760", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g458140" + "@id": "_:g458780" } ], "http://schema.org/query-input": [ @@ -369,13 +381,13 @@ ] }, { - "@id": "_:g458700", + "@id": "_:g459340", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g458720" + "@id": "_:g459360" } ], "http://schema.org/query-input": [ @@ -385,13 +397,13 @@ ] }, { - "@id": "_:g459820", + "@id": "_:g461120", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g459840" + "@id": "_:g461140" } ], "http://schema.org/query-input": [ @@ -401,13 +413,13 @@ ] }, { - "@id": "_:g461900", + "@id": "_:g463840", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g461920" + "@id": "_:g463860" } ], "http://schema.org/query-input": [ @@ -417,13 +429,13 @@ ] }, { - "@id": "_:g462600", + "@id": "_:g465620", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g462620" + "@id": "_:g465640" } ], "http://schema.org/query-input": [ @@ -433,13 +445,13 @@ ] }, { - "@id": "_:g464660", + "@id": "_:g468340", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g464680" + "@id": "_:g468360" } ], "http://schema.org/query-input": [ @@ -449,13 +461,13 @@ ] }, { - "@id": "_:g466680", + "@id": "_:g471420", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g466700" + "@id": "_:g471440" } ], "http://schema.org/query-input": [ @@ -465,13 +477,13 @@ ] }, { - "@id": "_:g468240", + "@id": "_:g473660", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g468260" + "@id": "_:g473680" } ], "http://schema.org/query-input": [ @@ -481,13 +493,13 @@ ] }, { - "@id": "_:g470140", + "@id": "_:g475640", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g470160" + "@id": "_:g475660" } ], "http://schema.org/query-input": [ @@ -497,13 +509,13 @@ ] }, { - "@id": "_:g472220", + "@id": "_:g478340", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g472240" + "@id": "_:g478360" } ], "http://schema.org/query-input": [ @@ -513,13 +525,13 @@ ] }, { - "@id": "_:g474240", + "@id": "_:g481440", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g474260" + "@id": "_:g481460" } ], "http://schema.org/query-input": [ @@ -529,13 +541,13 @@ ] }, { - "@id": "_:g476300", + "@id": "_:g484020", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g476320" + "@id": "_:g484040" } ], "http://schema.org/query-input": [ @@ -545,13 +557,13 @@ ] }, { - "@id": "_:g477840", + "@id": "_:g485620", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g477860" + "@id": "_:g485640" } ], "http://schema.org/query-input": [ @@ -561,13 +573,13 @@ ] }, { - "@id": "_:g479920", + "@id": "_:g488740", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g479940" + "@id": "_:g488760" } ], "http://schema.org/query-input": [ @@ -577,13 +589,13 @@ ] }, { - "@id": "_:g481980", + "@id": "_:g491440", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g482000" + "@id": "_:g491460" } ], "http://schema.org/query-input": [ @@ -593,13 +605,13 @@ ] }, { - "@id": "_:g484000", + "@id": "_:g494300", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g484020" + "@id": "_:g494320" } ], "http://schema.org/query-input": [ @@ -609,13 +621,13 @@ ] }, { - "@id": "_:g485520", + "@id": "_:g497220", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g485540" + "@id": "_:g497240" } ], "http://schema.org/query-input": [ @@ -625,13 +637,13 @@ ] }, { - "@id": "_:g487600", + "@id": "_:g500260", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g487620" + "@id": "_:g500280" } ], "http://schema.org/query-input": [ @@ -641,13 +653,13 @@ ] }, { - "@id": "_:g490060", + "@id": "_:g503220", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g490080" + "@id": "_:g503240" } ], "http://schema.org/query-input": [ @@ -657,13 +669,77 @@ ] }, { - "@id": "_:g492120", + "@id": "_:g505840", + "@type": [ + "http://schema.org/SearchAction" + ], + "http://schema.org/target": [ + { + "@id": "_:g505860" + } + ], + "http://schema.org/query-input": [ + { + "@value": "required name=search_term_string" + } + ] + }, + { + "@id": "_:g509280", + "@type": [ + "http://schema.org/SearchAction" + ], + "http://schema.org/target": [ + { + "@id": "_:g509300" + } + ], + "http://schema.org/query-input": [ + { + "@value": "required name=search_term_string" + } + ] + }, + { + "@id": "_:g512000", + "@type": [ + "http://schema.org/SearchAction" + ], + "http://schema.org/target": [ + { + "@id": "_:g512020" + } + ], + "http://schema.org/query-input": [ + { + "@value": "required name=search_term_string" + } + ] + }, + { + "@id": "_:g515060", + "@type": [ + "http://schema.org/SearchAction" + ], + "http://schema.org/target": [ + { + "@id": "_:g515080" + } + ], + "http://schema.org/query-input": [ + { + "@value": "required name=search_term_string" + } + ] + }, + { + "@id": "_:g518520", "@type": [ "http://schema.org/SearchAction" ], "http://schema.org/target": [ { - "@id": "_:g492140" + "@id": "_:g518540" } ], "http://schema.org/query-input": [ @@ -1107,7 +1183,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g458040" + "@id": "_:g458680" } ], "https://api.w.org/": [ @@ -1156,18 +1232,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g458060" + "@id": "_:g458700" }, { - "@id": "_:g458080" + "@id": "_:g458720" }, { - "@id": "_:g458100" + "@id": "_:g458740" } ] }, { - "@id": "_:g458040", + "@id": "_:g458680", "@type": [ "http://schema.org/ReadAction" ], @@ -1178,7 +1254,7 @@ ] }, { - "@id": "_:g458060", + "@id": "_:g458700", "@type": [ "http://schema.org/ListItem" ], @@ -1200,7 +1276,7 @@ ] }, { - "@id": "_:g458080", + "@id": "_:g458720", "@type": [ "http://schema.org/ListItem" ], @@ -1222,7 +1298,7 @@ ] }, { - "@id": "_:g458100", + "@id": "_:g458740", "@type": [ "http://schema.org/ListItem" ], @@ -1239,7 +1315,7 @@ ] }, { - "@id": "_:g458140", + "@id": "_:g458780", "@type": [ "http://schema.org/EntryPoint" ], @@ -1250,7 +1326,7 @@ ] }, { - "@id": "_:g458200", + "@id": "_:g458840", "@type": [ "http://schema.org/Offer" ], @@ -1288,7 +1364,7 @@ ] }, { - "@id": "_:g458220", + "@id": "_:g458860", "@type": [ "http://schema.org/Offer" ], @@ -1326,7 +1402,7 @@ ] }, { - "@id": "_:g458240", + "@id": "_:g458880", "@type": [ "http://schema.org/Offer" ], @@ -1364,7 +1440,7 @@ ] }, { - "@id": "_:g458260", + "@id": "_:g458900", "@type": [ "http://schema.org/Offer" ], @@ -1402,7 +1478,7 @@ ] }, { - "@id": "_:g458280", + "@id": "_:g458920", "@type": [ "http://schema.org/Place" ], @@ -1418,12 +1494,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g458300" + "@id": "_:g458940" } ] }, { - "@id": "_:g458300", + "@id": "_:g458940", "@type": [ "http://schema.org/PostalAddress" ], @@ -1574,7 +1650,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g458620" + "@id": "_:g459260" } ], "https://api.w.org/": [ @@ -1623,18 +1699,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g458640" + "@id": "_:g459280" }, { - "@id": "_:g458660" + "@id": "_:g459300" }, { - "@id": "_:g458680" + "@id": "_:g459320" } ] }, { - "@id": "_:g458620", + "@id": "_:g459260", "@type": [ "http://schema.org/ReadAction" ], @@ -1645,7 +1721,7 @@ ] }, { - "@id": "_:g458640", + "@id": "_:g459280", "@type": [ "http://schema.org/ListItem" ], @@ -1667,7 +1743,7 @@ ] }, { - "@id": "_:g458660", + "@id": "_:g459300", "@type": [ "http://schema.org/ListItem" ], @@ -1689,7 +1765,7 @@ ] }, { - "@id": "_:g458680", + "@id": "_:g459320", "@type": [ "http://schema.org/ListItem" ], @@ -1706,7 +1782,7 @@ ] }, { - "@id": "_:g458720", + "@id": "_:g459360", "@type": [ "http://schema.org/EntryPoint" ], @@ -1717,7 +1793,7 @@ ] }, { - "@id": "_:g458760", + "@id": "_:g459400", "@type": [ "http://schema.org/Offer" ], @@ -1755,7 +1831,7 @@ ] }, { - "@id": "_:g458780", + "@id": "_:g459420", "@type": [ "http://schema.org/Offer" ], @@ -1793,7 +1869,7 @@ ] }, { - "@id": "_:g458800", + "@id": "_:g459440", "@type": [ "http://schema.org/Offer" ], @@ -1831,7 +1907,7 @@ ] }, { - "@id": "_:g458820", + "@id": "_:g459460", "@type": [ "http://schema.org/Offer" ], @@ -1869,7 +1945,7 @@ ] }, { - "@id": "_:g458840", + "@id": "_:g459480", "@type": [ "http://schema.org/Place" ], @@ -1885,12 +1961,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g458860" + "@id": "_:g459500" } ] }, { - "@id": "_:g458860", + "@id": "_:g459500", "@type": [ "http://schema.org/PostalAddress" ], @@ -2041,7 +2117,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g459740" + "@id": "_:g461040" } ], "https://api.w.org/": [ @@ -2090,18 +2166,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g459760" + "@id": "_:g461060" }, { - "@id": "_:g459780" + "@id": "_:g461080" }, { - "@id": "_:g459800" + "@id": "_:g461100" } ] }, { - "@id": "_:g459740", + "@id": "_:g461040", "@type": [ "http://schema.org/ReadAction" ], @@ -2112,7 +2188,7 @@ ] }, { - "@id": "_:g459760", + "@id": "_:g461060", "@type": [ "http://schema.org/ListItem" ], @@ -2134,7 +2210,7 @@ ] }, { - "@id": "_:g459780", + "@id": "_:g461080", "@type": [ "http://schema.org/ListItem" ], @@ -2156,7 +2232,7 @@ ] }, { - "@id": "_:g459800", + "@id": "_:g461100", "@type": [ "http://schema.org/ListItem" ], @@ -2173,7 +2249,7 @@ ] }, { - "@id": "_:g459840", + "@id": "_:g461140", "@type": [ "http://schema.org/EntryPoint" ], @@ -2184,7 +2260,7 @@ ] }, { - "@id": "_:g460400", + "@id": "_:g461700", "@type": [ "http://schema.org/Offer" ], @@ -2222,7 +2298,7 @@ ] }, { - "@id": "_:g460420", + "@id": "_:g461720", "@type": [ "http://schema.org/Offer" ], @@ -2260,7 +2336,7 @@ ] }, { - "@id": "_:g460440", + "@id": "_:g461740", "@type": [ "http://schema.org/Offer" ], @@ -2298,7 +2374,7 @@ ] }, { - "@id": "_:g460460", + "@id": "_:g461760", "@type": [ "http://schema.org/Offer" ], @@ -2336,7 +2412,7 @@ ] }, { - "@id": "_:g460480", + "@id": "_:g461780", "@type": [ "http://schema.org/Offer" ], @@ -2374,7 +2450,7 @@ ] }, { - "@id": "_:g460500", + "@id": "_:g461800", "@type": [ "http://schema.org/Place" ], @@ -2390,12 +2466,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g460520" + "@id": "_:g461820" } ] }, { - "@id": "_:g460520", + "@id": "_:g461820", "@type": [ "http://schema.org/PostalAddress" ], @@ -2546,7 +2622,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g461820" + "@id": "_:g463760" } ], "https://api.w.org/": [ @@ -2595,18 +2671,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g461840" + "@id": "_:g463780" }, { - "@id": "_:g461860" + "@id": "_:g463800" }, { - "@id": "_:g461880" + "@id": "_:g463820" } ] }, { - "@id": "_:g461820", + "@id": "_:g463760", "@type": [ "http://schema.org/ReadAction" ], @@ -2617,7 +2693,7 @@ ] }, { - "@id": "_:g461840", + "@id": "_:g463780", "@type": [ "http://schema.org/ListItem" ], @@ -2639,7 +2715,7 @@ ] }, { - "@id": "_:g461860", + "@id": "_:g463800", "@type": [ "http://schema.org/ListItem" ], @@ -2661,7 +2737,7 @@ ] }, { - "@id": "_:g461880", + "@id": "_:g463820", "@type": [ "http://schema.org/ListItem" ], @@ -2678,7 +2754,7 @@ ] }, { - "@id": "_:g461920", + "@id": "_:g463860", "@type": [ "http://schema.org/EntryPoint" ], @@ -2689,7 +2765,7 @@ ] }, { - "@id": "_:g461980", + "@id": "_:g463920", "@type": [ "http://schema.org/Offer" ], @@ -2727,7 +2803,7 @@ ] }, { - "@id": "_:g462000", + "@id": "_:g463940", "@type": [ "http://schema.org/Offer" ], @@ -2765,7 +2841,7 @@ ] }, { - "@id": "_:g462020", + "@id": "_:g463960", "@type": [ "http://schema.org/Offer" ], @@ -2803,7 +2879,7 @@ ] }, { - "@id": "_:g462040", + "@id": "_:g463980", "@type": [ "http://schema.org/Offer" ], @@ -2841,7 +2917,7 @@ ] }, { - "@id": "_:g462060", + "@id": "_:g464000", "@type": [ "http://schema.org/Place" ], @@ -2857,12 +2933,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g462080" + "@id": "_:g464020" } ] }, { - "@id": "_:g462080", + "@id": "_:g464020", "@type": [ "http://schema.org/PostalAddress" ], @@ -3013,7 +3089,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g462520" + "@id": "_:g465540" } ], "https://api.w.org/": [ @@ -3062,18 +3138,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g462540" + "@id": "_:g465560" }, { - "@id": "_:g462560" + "@id": "_:g465580" }, { - "@id": "_:g462580" + "@id": "_:g465600" } ] }, { - "@id": "_:g462520", + "@id": "_:g465540", "@type": [ "http://schema.org/ReadAction" ], @@ -3084,7 +3160,7 @@ ] }, { - "@id": "_:g462540", + "@id": "_:g465560", "@type": [ "http://schema.org/ListItem" ], @@ -3106,7 +3182,7 @@ ] }, { - "@id": "_:g462560", + "@id": "_:g465580", "@type": [ "http://schema.org/ListItem" ], @@ -3128,7 +3204,7 @@ ] }, { - "@id": "_:g462580", + "@id": "_:g465600", "@type": [ "http://schema.org/ListItem" ], @@ -3145,7 +3221,7 @@ ] }, { - "@id": "_:g462620", + "@id": "_:g465640", "@type": [ "http://schema.org/EntryPoint" ], @@ -3156,7 +3232,7 @@ ] }, { - "@id": "_:g463180", + "@id": "_:g466220", "@type": [ "http://schema.org/Offer" ], @@ -3194,7 +3270,7 @@ ] }, { - "@id": "_:g463200", + "@id": "_:g466240", "@type": [ "http://schema.org/Offer" ], @@ -3232,7 +3308,7 @@ ] }, { - "@id": "_:g463220", + "@id": "_:g466260", "@type": [ "http://schema.org/Offer" ], @@ -3270,7 +3346,7 @@ ] }, { - "@id": "_:g463240", + "@id": "_:g466280", "@type": [ "http://schema.org/Offer" ], @@ -3308,7 +3384,7 @@ ] }, { - "@id": "_:g463260", + "@id": "_:g466300", "@type": [ "http://schema.org/Place" ], @@ -3324,12 +3400,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g463280" + "@id": "_:g466320" } ] }, { - "@id": "_:g463280", + "@id": "_:g466320", "@type": [ "http://schema.org/PostalAddress" ], @@ -3474,7 +3550,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g464580" + "@id": "_:g468260" } ], "https://api.w.org/": [ @@ -3523,18 +3599,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g464600" + "@id": "_:g468280" }, { - "@id": "_:g464620" + "@id": "_:g468300" }, { - "@id": "_:g464640" + "@id": "_:g468320" } ] }, { - "@id": "_:g464580", + "@id": "_:g468260", "@type": [ "http://schema.org/ReadAction" ], @@ -3545,7 +3621,7 @@ ] }, { - "@id": "_:g464600", + "@id": "_:g468280", "@type": [ "http://schema.org/ListItem" ], @@ -3567,7 +3643,7 @@ ] }, { - "@id": "_:g464620", + "@id": "_:g468300", "@type": [ "http://schema.org/ListItem" ], @@ -3589,7 +3665,7 @@ ] }, { - "@id": "_:g464640", + "@id": "_:g468320", "@type": [ "http://schema.org/ListItem" ], @@ -3606,7 +3682,7 @@ ] }, { - "@id": "_:g464680", + "@id": "_:g468360", "@type": [ "http://schema.org/EntryPoint" ], @@ -3617,7 +3693,7 @@ ] }, { - "@id": "_:g465240", + "@id": "_:g468920", "@type": [ "http://schema.org/Offer" ], @@ -3655,7 +3731,7 @@ ] }, { - "@id": "_:g465260", + "@id": "_:g468940", "@type": [ "http://schema.org/Offer" ], @@ -3693,7 +3769,7 @@ ] }, { - "@id": "_:g465280", + "@id": "_:g468960", "@type": [ "http://schema.org/Offer" ], @@ -3731,7 +3807,7 @@ ] }, { - "@id": "_:g465300", + "@id": "_:g468980", "@type": [ "http://schema.org/Offer" ], @@ -3769,7 +3845,7 @@ ] }, { - "@id": "_:g465320", + "@id": "_:g469000", "@type": [ "http://schema.org/Place" ], @@ -3785,12 +3861,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g465340" + "@id": "_:g469020" } ] }, { - "@id": "_:g465340", + "@id": "_:g469020", "@type": [ "http://schema.org/PostalAddress" ], @@ -3935,7 +4011,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g466600" + "@id": "_:g471340" } ], "https://api.w.org/": [ @@ -3984,18 +4060,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g466620" + "@id": "_:g471360" }, { - "@id": "_:g466640" + "@id": "_:g471380" }, { - "@id": "_:g466660" + "@id": "_:g471400" } ] }, { - "@id": "_:g466600", + "@id": "_:g471340", "@type": [ "http://schema.org/ReadAction" ], @@ -4006,7 +4082,7 @@ ] }, { - "@id": "_:g466620", + "@id": "_:g471360", "@type": [ "http://schema.org/ListItem" ], @@ -4028,7 +4104,7 @@ ] }, { - "@id": "_:g466640", + "@id": "_:g471380", "@type": [ "http://schema.org/ListItem" ], @@ -4050,7 +4126,7 @@ ] }, { - "@id": "_:g466660", + "@id": "_:g471400", "@type": [ "http://schema.org/ListItem" ], @@ -4067,7 +4143,7 @@ ] }, { - "@id": "_:g466700", + "@id": "_:g471440", "@type": [ "http://schema.org/EntryPoint" ], @@ -4078,7 +4154,7 @@ ] }, { - "@id": "_:g466760", + "@id": "_:g472000", "@type": [ "http://schema.org/Offer" ], @@ -4116,7 +4192,7 @@ ] }, { - "@id": "_:g466780", + "@id": "_:g472020", "@type": [ "http://schema.org/Offer" ], @@ -4154,7 +4230,7 @@ ] }, { - "@id": "_:g466800", + "@id": "_:g472040", "@type": [ "http://schema.org/Offer" ], @@ -4192,7 +4268,7 @@ ] }, { - "@id": "_:g466820", + "@id": "_:g472060", "@type": [ "http://schema.org/Offer" ], @@ -4230,7 +4306,7 @@ ] }, { - "@id": "_:g466840", + "@id": "_:g472080", "@type": [ "http://schema.org/Place" ], @@ -4246,12 +4322,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g466860" + "@id": "_:g472100" } ] }, { - "@id": "_:g466860", + "@id": "_:g472100", "@type": [ "http://schema.org/PostalAddress" ], @@ -4402,7 +4478,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g468160" + "@id": "_:g473580" } ], "https://api.w.org/": [ @@ -4451,18 +4527,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g468180" + "@id": "_:g473600" }, { - "@id": "_:g468200" + "@id": "_:g473620" }, { - "@id": "_:g468220" + "@id": "_:g473640" } ] }, { - "@id": "_:g468160", + "@id": "_:g473580", "@type": [ "http://schema.org/ReadAction" ], @@ -4473,7 +4549,7 @@ ] }, { - "@id": "_:g468180", + "@id": "_:g473600", "@type": [ "http://schema.org/ListItem" ], @@ -4495,7 +4571,7 @@ ] }, { - "@id": "_:g468200", + "@id": "_:g473620", "@type": [ "http://schema.org/ListItem" ], @@ -4517,7 +4593,7 @@ ] }, { - "@id": "_:g468220", + "@id": "_:g473640", "@type": [ "http://schema.org/ListItem" ], @@ -4534,7 +4610,7 @@ ] }, { - "@id": "_:g468260", + "@id": "_:g473680", "@type": [ "http://schema.org/EntryPoint" ], @@ -4545,7 +4621,7 @@ ] }, { - "@id": "_:g468840", + "@id": "_:g473740", "@type": [ "http://schema.org/Offer" ], @@ -4583,7 +4659,7 @@ ] }, { - "@id": "_:g468860", + "@id": "_:g473760", "@type": [ "http://schema.org/Offer" ], @@ -4621,7 +4697,7 @@ ] }, { - "@id": "_:g468880", + "@id": "_:g473780", "@type": [ "http://schema.org/Offer" ], @@ -4659,7 +4735,7 @@ ] }, { - "@id": "_:g468900", + "@id": "_:g473800", "@type": [ "http://schema.org/Offer" ], @@ -4697,7 +4773,7 @@ ] }, { - "@id": "_:g468920", + "@id": "_:g473820", "@type": [ "http://schema.org/Place" ], @@ -4713,12 +4789,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g468940" + "@id": "_:g473840" } ] }, { - "@id": "_:g468940", + "@id": "_:g473840", "@type": [ "http://schema.org/PostalAddress" ], @@ -4869,7 +4945,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g470060" + "@id": "_:g475560" } ], "https://api.w.org/": [ @@ -4918,18 +4994,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g470080" + "@id": "_:g475580" }, { - "@id": "_:g470100" + "@id": "_:g475600" }, { - "@id": "_:g470120" + "@id": "_:g475620" } ] }, { - "@id": "_:g470060", + "@id": "_:g475560", "@type": [ "http://schema.org/ReadAction" ], @@ -4940,7 +5016,7 @@ ] }, { - "@id": "_:g470080", + "@id": "_:g475580", "@type": [ "http://schema.org/ListItem" ], @@ -4962,7 +5038,7 @@ ] }, { - "@id": "_:g470100", + "@id": "_:g475600", "@type": [ "http://schema.org/ListItem" ], @@ -4984,7 +5060,7 @@ ] }, { - "@id": "_:g470120", + "@id": "_:g475620", "@type": [ "http://schema.org/ListItem" ], @@ -5001,7 +5077,7 @@ ] }, { - "@id": "_:g470160", + "@id": "_:g475660", "@type": [ "http://schema.org/EntryPoint" ], @@ -5012,7 +5088,7 @@ ] }, { - "@id": "_:g470720", + "@id": "_:g476220", "@type": [ "http://schema.org/Offer" ], @@ -5050,7 +5126,7 @@ ] }, { - "@id": "_:g470740", + "@id": "_:g476240", "@type": [ "http://schema.org/Offer" ], @@ -5088,7 +5164,7 @@ ] }, { - "@id": "_:g470760", + "@id": "_:g476260", "@type": [ "http://schema.org/Offer" ], @@ -5126,7 +5202,7 @@ ] }, { - "@id": "_:g470780", + "@id": "_:g476280", "@type": [ "http://schema.org/Offer" ], @@ -5164,7 +5240,7 @@ ] }, { - "@id": "_:g470800", + "@id": "_:g476300", "@type": [ "http://schema.org/Place" ], @@ -5180,12 +5256,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g470820" + "@id": "_:g476320" } ] }, { - "@id": "_:g470820", + "@id": "_:g476320", "@type": [ "http://schema.org/PostalAddress" ], @@ -5330,7 +5406,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g472140" + "@id": "_:g478260" } ], "https://api.w.org/": [ @@ -5379,18 +5455,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g472160" + "@id": "_:g478280" }, { - "@id": "_:g472180" + "@id": "_:g478300" }, { - "@id": "_:g472200" + "@id": "_:g478320" } ] }, { - "@id": "_:g472140", + "@id": "_:g478260", "@type": [ "http://schema.org/ReadAction" ], @@ -5401,7 +5477,7 @@ ] }, { - "@id": "_:g472160", + "@id": "_:g478280", "@type": [ "http://schema.org/ListItem" ], @@ -5423,7 +5499,7 @@ ] }, { - "@id": "_:g472180", + "@id": "_:g478300", "@type": [ "http://schema.org/ListItem" ], @@ -5445,7 +5521,7 @@ ] }, { - "@id": "_:g472200", + "@id": "_:g478320", "@type": [ "http://schema.org/ListItem" ], @@ -5462,7 +5538,7 @@ ] }, { - "@id": "_:g472240", + "@id": "_:g478360", "@type": [ "http://schema.org/EntryPoint" ], @@ -5473,7 +5549,7 @@ ] }, { - "@id": "_:g472800", + "@id": "_:g478940", "@type": [ "http://schema.org/Offer" ], @@ -5511,7 +5587,7 @@ ] }, { - "@id": "_:g472820", + "@id": "_:g478960", "@type": [ "http://schema.org/Offer" ], @@ -5549,7 +5625,7 @@ ] }, { - "@id": "_:g472840", + "@id": "_:g478980", "@type": [ "http://schema.org/Offer" ], @@ -5587,7 +5663,7 @@ ] }, { - "@id": "_:g472860", + "@id": "_:g479000", "@type": [ "http://schema.org/Offer" ], @@ -5625,7 +5701,7 @@ ] }, { - "@id": "_:g472880", + "@id": "_:g479020", "@type": [ "http://schema.org/Place" ], @@ -5641,12 +5717,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g472900" + "@id": "_:g479040" } ] }, { - "@id": "_:g472900", + "@id": "_:g479040", "@type": [ "http://schema.org/PostalAddress" ], @@ -5791,7 +5867,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g474160" + "@id": "_:g481360" } ], "https://api.w.org/": [ @@ -5840,18 +5916,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g474180" + "@id": "_:g481380" }, { - "@id": "_:g474200" + "@id": "_:g481400" }, { - "@id": "_:g474220" + "@id": "_:g481420" } ] }, { - "@id": "_:g474160", + "@id": "_:g481360", "@type": [ "http://schema.org/ReadAction" ], @@ -5862,7 +5938,7 @@ ] }, { - "@id": "_:g474180", + "@id": "_:g481380", "@type": [ "http://schema.org/ListItem" ], @@ -5884,7 +5960,7 @@ ] }, { - "@id": "_:g474200", + "@id": "_:g481400", "@type": [ "http://schema.org/ListItem" ], @@ -5906,7 +5982,7 @@ ] }, { - "@id": "_:g474220", + "@id": "_:g481420", "@type": [ "http://schema.org/ListItem" ], @@ -5923,7 +5999,7 @@ ] }, { - "@id": "_:g474260", + "@id": "_:g481460", "@type": [ "http://schema.org/EntryPoint" ], @@ -5934,7 +6010,7 @@ ] }, { - "@id": "_:g474820", + "@id": "_:g482020", "@type": [ "http://schema.org/Offer" ], @@ -5972,7 +6048,7 @@ ] }, { - "@id": "_:g474840", + "@id": "_:g482040", "@type": [ "http://schema.org/Offer" ], @@ -6010,7 +6086,7 @@ ] }, { - "@id": "_:g474860", + "@id": "_:g482060", "@type": [ "http://schema.org/Offer" ], @@ -6048,7 +6124,7 @@ ] }, { - "@id": "_:g474880", + "@id": "_:g482080", "@type": [ "http://schema.org/Offer" ], @@ -6086,7 +6162,7 @@ ] }, { - "@id": "_:g474900", + "@id": "_:g482100", "@type": [ "http://schema.org/Place" ], @@ -6102,12 +6178,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g474920" + "@id": "_:g482120" } ] }, { - "@id": "_:g474920", + "@id": "_:g482120", "@type": [ "http://schema.org/PostalAddress" ], @@ -6252,7 +6328,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g476220" + "@id": "_:g483940" } ], "https://api.w.org/": [ @@ -6301,18 +6377,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g476240" + "@id": "_:g483960" }, { - "@id": "_:g476260" + "@id": "_:g483980" }, { - "@id": "_:g476280" + "@id": "_:g484000" } ] }, { - "@id": "_:g476220", + "@id": "_:g483940", "@type": [ "http://schema.org/ReadAction" ], @@ -6323,7 +6399,7 @@ ] }, { - "@id": "_:g476240", + "@id": "_:g483960", "@type": [ "http://schema.org/ListItem" ], @@ -6345,7 +6421,7 @@ ] }, { - "@id": "_:g476260", + "@id": "_:g483980", "@type": [ "http://schema.org/ListItem" ], @@ -6367,7 +6443,7 @@ ] }, { - "@id": "_:g476280", + "@id": "_:g484000", "@type": [ "http://schema.org/ListItem" ], @@ -6384,7 +6460,7 @@ ] }, { - "@id": "_:g476320", + "@id": "_:g484040", "@type": [ "http://schema.org/EntryPoint" ], @@ -6395,7 +6471,7 @@ ] }, { - "@id": "_:g476880", + "@id": "_:g484080", "@type": [ "http://schema.org/Offer" ], @@ -6433,7 +6509,7 @@ ] }, { - "@id": "_:g476900", + "@id": "_:g484100", "@type": [ "http://schema.org/Offer" ], @@ -6471,7 +6547,7 @@ ] }, { - "@id": "_:g476920", + "@id": "_:g484120", "@type": [ "http://schema.org/Offer" ], @@ -6509,7 +6585,7 @@ ] }, { - "@id": "_:g476940", + "@id": "_:g484140", "@type": [ "http://schema.org/Offer" ], @@ -6547,7 +6623,7 @@ ] }, { - "@id": "_:g476960", + "@id": "_:g484160", "@type": [ "http://schema.org/Place" ], @@ -6563,12 +6639,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g476980" + "@id": "_:g484180" } ] }, { - "@id": "_:g476980", + "@id": "_:g484180", "@type": [ "http://schema.org/PostalAddress" ], @@ -6719,7 +6795,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g477760" + "@id": "_:g485540" } ], "https://api.w.org/": [ @@ -6768,18 +6844,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g477780" + "@id": "_:g485560" }, { - "@id": "_:g477800" + "@id": "_:g485580" }, { - "@id": "_:g477820" + "@id": "_:g485600" } ] }, { - "@id": "_:g477760", + "@id": "_:g485540", "@type": [ "http://schema.org/ReadAction" ], @@ -6790,7 +6866,7 @@ ] }, { - "@id": "_:g477780", + "@id": "_:g485560", "@type": [ "http://schema.org/ListItem" ], @@ -6812,7 +6888,7 @@ ] }, { - "@id": "_:g477800", + "@id": "_:g485580", "@type": [ "http://schema.org/ListItem" ], @@ -6834,7 +6910,7 @@ ] }, { - "@id": "_:g477820", + "@id": "_:g485600", "@type": [ "http://schema.org/ListItem" ], @@ -6851,7 +6927,7 @@ ] }, { - "@id": "_:g477860", + "@id": "_:g485640", "@type": [ "http://schema.org/EntryPoint" ], @@ -6862,7 +6938,7 @@ ] }, { - "@id": "_:g478420", + "@id": "_:g486200", "@type": [ "http://schema.org/Offer" ], @@ -6900,7 +6976,7 @@ ] }, { - "@id": "_:g478440", + "@id": "_:g486220", "@type": [ "http://schema.org/Offer" ], @@ -6938,7 +7014,7 @@ ] }, { - "@id": "_:g478460", + "@id": "_:g486240", "@type": [ "http://schema.org/Offer" ], @@ -6976,7 +7052,7 @@ ] }, { - "@id": "_:g478480", + "@id": "_:g486260", "@type": [ "http://schema.org/Offer" ], @@ -7014,7 +7090,7 @@ ] }, { - "@id": "_:g478500", + "@id": "_:g486280", "@type": [ "http://schema.org/Place" ], @@ -7030,12 +7106,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g478520" + "@id": "_:g486300" } ] }, { - "@id": "_:g478520", + "@id": "_:g486300", "@type": [ "http://schema.org/PostalAddress" ], @@ -7186,7 +7262,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g479840" + "@id": "_:g488660" } ], "https://api.w.org/": [ @@ -7235,18 +7311,18 @@ ], "http://schema.org/itemListElement": [ { - "@id": "_:g479860" + "@id": "_:g488680" }, { - "@id": "_:g479880" + "@id": "_:g488700" }, { - "@id": "_:g479900" + "@id": "_:g488720" } ] }, { - "@id": "_:g479840", + "@id": "_:g488660", "@type": [ "http://schema.org/ReadAction" ], @@ -7257,7 +7333,7 @@ ] }, { - "@id": "_:g479860", + "@id": "_:g488680", "@type": [ "http://schema.org/ListItem" ], @@ -7279,7 +7355,7 @@ ] }, { - "@id": "_:g479880", + "@id": "_:g488700", "@type": [ "http://schema.org/ListItem" ], @@ -7301,7 +7377,7 @@ ] }, { - "@id": "_:g479900", + "@id": "_:g488720", "@type": [ "http://schema.org/ListItem" ], @@ -7318,7 +7394,7 @@ ] }, { - "@id": "_:g479940", + "@id": "_:g488760", "@type": [ "http://schema.org/EntryPoint" ], @@ -7329,7 +7405,7 @@ ] }, { - "@id": "_:g480500", + "@id": "_:g489320", "@type": [ "http://schema.org/Offer" ], @@ -7367,7 +7443,7 @@ ] }, { - "@id": "_:g480520", + "@id": "_:g489340", "@type": [ "http://schema.org/Offer" ], @@ -7405,7 +7481,7 @@ ] }, { - "@id": "_:g480540", + "@id": "_:g489360", "@type": [ "http://schema.org/Offer" ], @@ -7443,7 +7519,7 @@ ] }, { - "@id": "_:g480560", + "@id": "_:g489380", "@type": [ "http://schema.org/Offer" ], @@ -7481,7 +7557,7 @@ ] }, { - "@id": "_:g480580", + "@id": "_:g489400", "@type": [ "http://schema.org/Place" ], @@ -7497,12 +7573,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g480600" + "@id": "_:g489420" } ] }, { - "@id": "_:g480600", + "@id": "_:g489420", "@type": [ "http://schema.org/PostalAddress" ], @@ -7523,7 +7599,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/", + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/", "http://ogp.me/ns#locale": [ { "@language": "en-us", @@ -7539,7 +7615,7 @@ "http://ogp.me/ns#title": [ { "@language": "en-us", - "@value": "Emerging Artists Presents The Victors featuring Lise - The Yardbird Suite" + "@value": "Mike Rud - The Yardbird Suite" } ], "http://ogp.me/ns#description": [ @@ -7551,7 +7627,7 @@ "http://ogp.me/ns#url": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@value": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://ogp.me/ns#site_name": [ @@ -7569,19 +7645,19 @@ "http://ogp.me/ns#image": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/wp-content/uploads/2021/09/YS-Hilario-Duran-Dec-7-2019-01.jpg.jpg" + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Mike-Rud.jpg" } ], "http://ogp.me/ns#image:width": [ { "@language": "en-us", - "@value": "1800" + "@value": "779" } ], "http://ogp.me/ns#image:height": [ { "@language": "en-us", - "@value": "1036" + "@value": "774" } ], "http://ogp.me/ns#image:type": [ @@ -7595,12 +7671,12 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://schema.org/name": [ { - "@value": "Emerging Artists Presents The Victors featuring Lise - The Yardbird Suite" + "@value": "Mike Rud - The Yardbird Suite" } ], "http://schema.org/isPartOf": [ @@ -7608,21 +7684,36 @@ "@id": "https://yardbirdsuite.com/#website" } ], + "http://schema.org/primaryImageOfPage": [ + { + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/#primaryimage" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/#primaryimage" + } + ], + "http://schema.org/thumbnailUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Mike-Rud.jpg" + } + ], "http://schema.org/datePublished": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-16T21:23:08+00:00" + "@value": "2024-01-17T23:25:19+00:00" } ], "http://schema.org/dateModified": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-16T21:23:08+00:00" + "@value": "2024-01-17T23:25:19+00:00" } ], "http://schema.org/breadcrumb": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/#breadcrumb" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/#breadcrumb" } ], "http://schema.org/inLanguage": [ @@ -7632,7 +7723,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g481900" + "@id": "_:g491360" } ], "https://api.w.org/": [ @@ -7642,35 +7733,68 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/#breadcrumb", + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/#primaryimage", + "@type": [ + "http://schema.org/ImageObject" + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Mike-Rud.jpg" + } + ], + "http://schema.org/contentUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Mike-Rud.jpg" + } + ], + "http://schema.org/width": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "779" + } + ], + "http://schema.org/height": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "774" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/#breadcrumb", "@type": [ "http://schema.org/BreadcrumbList" ], "http://schema.org/itemListElement": [ { - "@id": "_:g481920" + "@id": "_:g491380" }, { - "@id": "_:g481940" + "@id": "_:g491400" }, { - "@id": "_:g481960" + "@id": "_:g491420" } ] }, { - "@id": "_:g481900", + "@id": "_:g491360", "@type": [ "http://schema.org/ReadAction" ], "http://schema.org/target": [ { - "@value": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@value": "https://yardbirdsuite.com/shows/mike-rud-2/" } ] }, { - "@id": "_:g481920", + "@id": "_:g491380", "@type": [ "http://schema.org/ListItem" ], @@ -7692,7 +7816,7 @@ ] }, { - "@id": "_:g481940", + "@id": "_:g491400", "@type": [ "http://schema.org/ListItem" ], @@ -7714,7 +7838,7 @@ ] }, { - "@id": "_:g481960", + "@id": "_:g491420", "@type": [ "http://schema.org/ListItem" ], @@ -7726,12 +7850,12 @@ ], "http://schema.org/name": [ { - "@value": "Emerging Artists Presents The Victors featuring Lise" + "@value": "Mike Rud" } ] }, { - "@id": "_:g482000", + "@id": "_:g491460", "@type": [ "http://schema.org/EntryPoint" ], @@ -7742,30 +7866,30 @@ ] }, { - "@id": "_:g482560", + "@id": "_:g492020", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-16T14:20:00-07:00 " + "@value": "2024-01-17T16:21:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-25T23:55:00-07:00 " + "@value": "2024-02-22T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "15.00" + "@value": "24.00" } ], "http://schema.org/priceCurrency": [ @@ -7780,30 +7904,30 @@ ] }, { - "@id": "_:g482580", + "@id": "_:g492040", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-16T14:20:00-07:00 " + "@value": "2024-01-17T16:21:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-25T23:55:00-07:00 " + "@value": "2024-02-22T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "11.00" + "@value": "20.00" } ], "http://schema.org/priceCurrency": [ @@ -7818,25 +7942,25 @@ ] }, { - "@id": "_:g482600", + "@id": "_:g492060", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-16T14:20:00-07:00 " + "@value": "2024-01-17T16:21:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-25T23:55:00-07:00 " + "@value": "2024-02-22T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -7856,25 +7980,25 @@ ] }, { - "@id": "_:g482620", + "@id": "_:g492080", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-16T14:20:00-07:00 " + "@value": "2024-01-17T16:21:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-25T23:55:00-07:00 " + "@value": "2024-02-22T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -7894,7 +8018,7 @@ ] }, { - "@id": "_:g482640", + "@id": "_:g492100", "@type": [ "http://schema.org/Place" ], @@ -7910,12 +8034,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g482660" + "@id": "_:g492120" } ] }, { - "@id": "_:g482660", + "@id": "_:g492120", "@type": [ "http://schema.org/PostalAddress" ], @@ -7936,7 +8060,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/", + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/", "http://ogp.me/ns#locale": [ { "@language": "en-us", @@ -7952,19 +8076,19 @@ "http://ogp.me/ns#title": [ { "@language": "en-us", - "@value": "RJ LeBlanc - The Yardbird Suite" + "@value": "Biboye Onanuga Quintet - The Yardbird Suite" } ], "http://ogp.me/ns#description": [ { "@language": "en-us", - "@value": "Montreal-based bassist RJ LeBlanc's newest project, Heyday, is an eclectic, highly-energetic band mixing finesse and feel-good in beautiful ways." + "@value": " " } ], "http://ogp.me/ns#url": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@value": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://ogp.me/ns#site_name": [ @@ -7982,19 +8106,19 @@ "article:modified_time": [ { "@language": "en-us", - "@value": "2024-01-11T17:30:15+00:00" + "@value": "2024-01-17T23:37:06+00:00" } ], "http://ogp.me/ns#image": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Biboye-Onanuga-04.jpg" } ], "http://ogp.me/ns#image:width": [ { "@language": "en-us", - "@value": "1800" + "@value": "979" } ], "http://ogp.me/ns#image:height": [ @@ -8014,12 +8138,12 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://schema.org/name": [ { - "@value": "RJ LeBlanc - The Yardbird Suite" + "@value": "Biboye Onanuga Quintet - The Yardbird Suite" } ], "http://schema.org/isPartOf": [ @@ -8029,34 +8153,34 @@ ], "http://schema.org/primaryImageOfPage": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#primaryimage" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/#primaryimage" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#primaryimage" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/#primaryimage" } ], "http://schema.org/thumbnailUrl": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Biboye-Onanuga-04.jpg" } ], "http://schema.org/datePublished": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T01:35:45+00:00" + "@value": "2024-01-17T23:35:27+00:00" } ], "http://schema.org/dateModified": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T17:30:15+00:00" + "@value": "2024-01-17T23:37:06+00:00" } ], "http://schema.org/breadcrumb": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#breadcrumb" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/#breadcrumb" } ], "http://schema.org/inLanguage": [ @@ -8066,7 +8190,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g483920" + "@id": "_:g494220" } ], "https://api.w.org/": [ @@ -8076,7 +8200,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#primaryimage", + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/#primaryimage", "@type": [ "http://schema.org/ImageObject" ], @@ -8087,18 +8211,18 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Biboye-Onanuga-04.jpg" } ], "http://schema.org/contentUrl": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Biboye-Onanuga-04.jpg" } ], "http://schema.org/width": [ { "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": "1800" + "@value": "979" } ], "http://schema.org/height": [ @@ -8109,35 +8233,35 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#breadcrumb", + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/#breadcrumb", "@type": [ "http://schema.org/BreadcrumbList" ], "http://schema.org/itemListElement": [ { - "@id": "_:g483940" + "@id": "_:g494240" }, { - "@id": "_:g483960" + "@id": "_:g494260" }, { - "@id": "_:g483980" + "@id": "_:g494280" } ] }, { - "@id": "_:g483920", + "@id": "_:g494220", "@type": [ "http://schema.org/ReadAction" ], "http://schema.org/target": [ { - "@value": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@value": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ] }, { - "@id": "_:g483940", + "@id": "_:g494240", "@type": [ "http://schema.org/ListItem" ], @@ -8159,7 +8283,7 @@ ] }, { - "@id": "_:g483960", + "@id": "_:g494260", "@type": [ "http://schema.org/ListItem" ], @@ -8181,7 +8305,7 @@ ] }, { - "@id": "_:g483980", + "@id": "_:g494280", "@type": [ "http://schema.org/ListItem" ], @@ -8193,12 +8317,12 @@ ], "http://schema.org/name": [ { - "@value": "RJ LeBlanc" + "@value": "Biboye Onanuga Quintet" } ] }, { - "@id": "_:g484020", + "@id": "_:g494320", "@type": [ "http://schema.org/EntryPoint" ], @@ -8209,30 +8333,30 @@ ] }, { - "@id": "_:g484580", + "@id": "_:g494880", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T18:29:00-07:00 " + "@value": "2024-01-17T16:27:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-02T23:55:00-07:00 " + "@value": "2024-02-23T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "34.00" + "@value": "24.00" } ], "http://schema.org/priceCurrency": [ @@ -8247,30 +8371,30 @@ ] }, { - "@id": "_:g484600", + "@id": "_:g494900", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T18:29:00-07:00 " + "@value": "2024-01-17T16:27:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-02T23:55:00-07:00 " + "@value": "2024-02-23T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "30.00" + "@value": "20.00" } ], "http://schema.org/priceCurrency": [ @@ -8285,25 +8409,25 @@ ] }, { - "@id": "_:g484620", + "@id": "_:g494920", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T18:30:00-07:00 " + "@value": "2024-01-17T16:27:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-02T23:55:00-07:00 " + "@value": "2024-02-23T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -8323,25 +8447,25 @@ ] }, { - "@id": "_:g484640", + "@id": "_:g494940", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T10:00:00-07:00 " + "@value": "2024-01-17T16:27:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-02T23:55:00-07:00 " + "@value": "2024-02-23T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -8361,7 +8485,7 @@ ] }, { - "@id": "_:g484660", + "@id": "_:g494960", "@type": [ "http://schema.org/Place" ], @@ -8377,12 +8501,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g484680" + "@id": "_:g494980" } ] }, { - "@id": "_:g484680", + "@id": "_:g494980", "@type": [ "http://schema.org/PostalAddress" ], @@ -8403,7 +8527,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/", + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/", "http://ogp.me/ns#locale": [ { "@language": "en-us", @@ -8419,19 +8543,19 @@ "http://ogp.me/ns#title": [ { "@language": "en-us", - "@value": "Benny Sharoni - The Yardbird Suite" + "@value": "Emerging Artists Presents The Victors featuring Lise - The Yardbird Suite" } ], "http://ogp.me/ns#description": [ { "@language": "en-us", - "@value": "Tenor saxophonist Benny Sharoni is a U.S. bandleader, composer and arranger who is a mainstay on the international jazz scene." + "@value": " " } ], "http://ogp.me/ns#url": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@value": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://ogp.me/ns#site_name": [ @@ -8449,7 +8573,7 @@ "http://ogp.me/ns#image": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" + "@value": "https://yardbirdsuite.com/wp-content/uploads/2021/09/YS-Hilario-Duran-Dec-7-2019-01.jpg.jpg" } ], "http://ogp.me/ns#image:width": [ @@ -8461,7 +8585,7 @@ "http://ogp.me/ns#image:height": [ { "@language": "en-us", - "@value": "1198" + "@value": "1036" } ], "http://ogp.me/ns#image:type": [ @@ -8475,12 +8599,12 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://schema.org/name": [ { - "@value": "Benny Sharoni - The Yardbird Suite" + "@value": "Emerging Artists Presents The Victors featuring Lise - The Yardbird Suite" } ], "http://schema.org/isPartOf": [ @@ -8488,36 +8612,21 @@ "@id": "https://yardbirdsuite.com/#website" } ], - "http://schema.org/primaryImageOfPage": [ - { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#primaryimage" - } - ], - "http://schema.org/image": [ - { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#primaryimage" - } - ], - "http://schema.org/thumbnailUrl": [ - { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" - } - ], "http://schema.org/datePublished": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-13T17:20:35+00:00" + "@value": "2024-01-16T21:23:08+00:00" } ], "http://schema.org/dateModified": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-13T17:20:35+00:00" + "@value": "2024-01-16T21:23:08+00:00" } ], "http://schema.org/breadcrumb": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#breadcrumb" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/#breadcrumb" } ], "http://schema.org/inLanguage": [ @@ -8527,7 +8636,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g485440" + "@id": "_:g497140" } ], "https://api.w.org/": [ @@ -8537,68 +8646,35 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#primaryimage", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/inLanguage": [ - { - "@value": "en-US" - } - ], - "http://schema.org/url": [ - { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" - } - ], - "http://schema.org/contentUrl": [ - { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" - } - ], - "http://schema.org/width": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": "1800" - } - ], - "http://schema.org/height": [ - { - "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": "1198" - } - ] - }, - { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#breadcrumb", + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/#breadcrumb", "@type": [ "http://schema.org/BreadcrumbList" ], "http://schema.org/itemListElement": [ { - "@id": "_:g485460" + "@id": "_:g497160" }, { - "@id": "_:g485480" + "@id": "_:g497180" }, { - "@id": "_:g485500" + "@id": "_:g497200" } ] }, { - "@id": "_:g485440", + "@id": "_:g497140", "@type": [ "http://schema.org/ReadAction" ], "http://schema.org/target": [ { - "@value": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@value": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ] }, { - "@id": "_:g485460", + "@id": "_:g497160", "@type": [ "http://schema.org/ListItem" ], @@ -8620,7 +8696,7 @@ ] }, { - "@id": "_:g485480", + "@id": "_:g497180", "@type": [ "http://schema.org/ListItem" ], @@ -8642,7 +8718,7 @@ ] }, { - "@id": "_:g485500", + "@id": "_:g497200", "@type": [ "http://schema.org/ListItem" ], @@ -8654,12 +8730,12 @@ ], "http://schema.org/name": [ { - "@value": "Benny Sharoni" + "@value": "Emerging Artists Presents The Victors featuring Lise" } ] }, { - "@id": "_:g485540", + "@id": "_:g497240", "@type": [ "http://schema.org/EntryPoint" ], @@ -8670,30 +8746,30 @@ ] }, { - "@id": "_:g486100", + "@id": "_:g497800", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-13T10:15:00-07:00 " + "@value": "2024-01-16T14:20:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-14T23:55:00-06:00 " + "@value": "2024-02-25T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "34.00" + "@value": "15.00" } ], "http://schema.org/priceCurrency": [ @@ -8708,30 +8784,30 @@ ] }, { - "@id": "_:g486120", + "@id": "_:g497820", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-13T10:15:00-07:00 " + "@value": "2024-01-16T14:20:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-14T23:55:00-06:00 " + "@value": "2024-02-25T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "30.00" + "@value": "11.00" } ], "http://schema.org/priceCurrency": [ @@ -8746,25 +8822,25 @@ ] }, { - "@id": "_:g486140", + "@id": "_:g497840", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-13T10:15:00-07:00 " + "@value": "2024-01-16T14:20:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-14T23:55:00-06:00 " + "@value": "2024-02-25T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -8784,25 +8860,25 @@ ] }, { - "@id": "_:g486160", + "@id": "_:g497860", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-13T10:15:00-07:00 " + "@value": "2024-01-16T14:20:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-14T23:55:00-06:00 " + "@value": "2024-02-25T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -8822,7 +8898,7 @@ ] }, { - "@id": "_:g486180", + "@id": "_:g497880", "@type": [ "http://schema.org/Place" ], @@ -8838,12 +8914,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g486200" + "@id": "_:g497900" } ] }, { - "@id": "_:g486200", + "@id": "_:g497900", "@type": [ "http://schema.org/PostalAddress" ], @@ -8864,7 +8940,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/", + "@id": "https://yardbirdsuite.com/shows/okan/", "http://ogp.me/ns#locale": [ { "@language": "en-us", @@ -8880,19 +8956,19 @@ "http://ogp.me/ns#title": [ { "@language": "en-us", - "@value": "Jacob Do Octet - The Yardbird Suite" + "@value": "OKAN - The Yardbird Suite" } ], "http://ogp.me/ns#description": [ { "@language": "en-us", - "@value": "Jacob Do is a saxophonist, composer, and educator whose resonant and nuanced sound lendsitself to emotional storytelling through improvisation." + "@value": "Fusing Afro-Cuban roots with jazz, folk and global rhythms in songs about immigration, resistance and love, OKAN takes their name from the word for heart in their Afro-Cuban religion of Santeria." } ], "http://ogp.me/ns#url": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@value": "https://yardbirdsuite.com/shows/okan/" } ], "http://ogp.me/ns#site_name": [ @@ -8907,28 +8983,22 @@ "@value": "https://facebook.com/YardbirdSuite" } ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2024-01-11T17:31:56+00:00" - } - ], "http://ogp.me/ns#image": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/OKAN-01.jpg" } ], "http://ogp.me/ns#image:width": [ { "@language": "en-us", - "@value": "750" + "@value": "1553" } ], "http://ogp.me/ns#image:height": [ { "@language": "en-us", - "@value": "500" + "@value": "1200" } ], "http://ogp.me/ns#image:type": [ @@ -8942,12 +9012,12 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@id": "https://yardbirdsuite.com/shows/okan/" } ], "http://schema.org/name": [ { - "@value": "Jacob Do Octet - The Yardbird Suite" + "@value": "OKAN - The Yardbird Suite" } ], "http://schema.org/isPartOf": [ @@ -8957,34 +9027,34 @@ ], "http://schema.org/primaryImageOfPage": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#primaryimage" + "@id": "https://yardbirdsuite.com/shows/okan/#primaryimage" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#primaryimage" + "@id": "https://yardbirdsuite.com/shows/okan/#primaryimage" } ], "http://schema.org/thumbnailUrl": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/OKAN-01.jpg" } ], "http://schema.org/datePublished": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T19:37:54+00:00" + "@value": "2024-01-17T23:45:41+00:00" } ], "http://schema.org/dateModified": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T17:31:56+00:00" + "@value": "2024-01-17T23:45:41+00:00" } ], "http://schema.org/breadcrumb": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#breadcrumb" + "@id": "https://yardbirdsuite.com/shows/okan/#breadcrumb" } ], "http://schema.org/inLanguage": [ @@ -8994,7 +9064,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g487520" + "@id": "_:g500180" } ], "https://api.w.org/": [ @@ -9004,7 +9074,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#primaryimage", + "@id": "https://yardbirdsuite.com/shows/okan/#primaryimage", "@type": [ "http://schema.org/ImageObject" ], @@ -9015,57 +9085,57 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/OKAN-01.jpg" } ], "http://schema.org/contentUrl": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/OKAN-01.jpg" } ], "http://schema.org/width": [ { "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": "750" + "@value": "1553" } ], "http://schema.org/height": [ { "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": "500" + "@value": "1200" } ] }, { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#breadcrumb", + "@id": "https://yardbirdsuite.com/shows/okan/#breadcrumb", "@type": [ "http://schema.org/BreadcrumbList" ], "http://schema.org/itemListElement": [ { - "@id": "_:g487540" + "@id": "_:g500200" }, { - "@id": "_:g487560" + "@id": "_:g500220" }, { - "@id": "_:g487580" + "@id": "_:g500240" } ] }, { - "@id": "_:g487520", + "@id": "_:g500180", "@type": [ "http://schema.org/ReadAction" ], "http://schema.org/target": [ { - "@value": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@value": "https://yardbirdsuite.com/shows/okan/" } ] }, { - "@id": "_:g487540", + "@id": "_:g500200", "@type": [ "http://schema.org/ListItem" ], @@ -9087,7 +9157,7 @@ ] }, { - "@id": "_:g487560", + "@id": "_:g500220", "@type": [ "http://schema.org/ListItem" ], @@ -9109,7 +9179,7 @@ ] }, { - "@id": "_:g487580", + "@id": "_:g500240", "@type": [ "http://schema.org/ListItem" ], @@ -9121,12 +9191,12 @@ ], "http://schema.org/name": [ { - "@value": "Jacob Do Octet" + "@value": "OKAN" } ] }, { - "@id": "_:g487620", + "@id": "_:g500280", "@type": [ "http://schema.org/EntryPoint" ], @@ -9137,30 +9207,30 @@ ] }, { - "@id": "_:g488180", + "@id": "_:g500840", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@id": "https://yardbirdsuite.com/shows/okan/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T12:31:00-07:00 " + "@value": "2024-01-17T16:41:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-28T23:55:00-06:00 " + "@value": "2024-03-01T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "20.00" + "@value": "34.00" } ], "http://schema.org/priceCurrency": [ @@ -9175,30 +9245,30 @@ ] }, { - "@id": "_:g488200", + "@id": "_:g500860", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@id": "https://yardbirdsuite.com/shows/okan/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T12:31:00-07:00 " + "@value": "2024-01-17T16:41:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-28T23:55:00-06:00 " + "@value": "2024-03-01T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "24.00" + "@value": "30.00" } ], "http://schema.org/priceCurrency": [ @@ -9213,25 +9283,25 @@ ] }, { - "@id": "_:g488220", + "@id": "_:g500880", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@id": "https://yardbirdsuite.com/shows/okan/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T12:31:00-07:00 " + "@value": "2024-01-17T16:41:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-28T23:55:00-06:00 " + "@value": "2024-03-01T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -9251,25 +9321,25 @@ ] }, { - "@id": "_:g488240", + "@id": "_:g500900", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@id": "https://yardbirdsuite.com/shows/okan/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T10:30:00-07:00 " + "@value": "2024-01-17T16:41:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-28T23:55:00-06:00 " + "@value": "2024-03-01T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -9289,7 +9359,7 @@ ] }, { - "@id": "_:g488260", + "@id": "_:g500920", "@type": [ "http://schema.org/Place" ], @@ -9305,12 +9375,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g488280" + "@id": "_:g500940" } ] }, { - "@id": "_:g488280", + "@id": "_:g500940", "@type": [ "http://schema.org/PostalAddress" ], @@ -9331,7 +9401,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/", + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/", "http://ogp.me/ns#locale": [ { "@language": "en-us", @@ -9347,19 +9417,19 @@ "http://ogp.me/ns#title": [ { "@language": "en-us", - "@value": "Lorna MacLachlan - The Yardbird Suite" + "@value": "RJ LeBlanc - The Yardbird Suite" } ], "http://ogp.me/ns#description": [ { "@language": "en-us", - "@value": "Singer, pianist, and composer Lorna MacLachlan began her career as a composer providing award winning original music for theatre, dance and national media companies such as CBC and Access as well as a variety of commercial and artistic enterprises across the spectrum of music genres." + "@value": "Montreal-based bassist RJ LeBlanc's newest project, Heyday, is an eclectic, highly-energetic band mixing finesse and feel-good in beautiful ways." } ], "http://ogp.me/ns#url": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@value": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://ogp.me/ns#site_name": [ @@ -9377,19 +9447,19 @@ "article:modified_time": [ { "@language": "en-us", - "@value": "2024-01-11T17:34:05+00:00" + "@value": "2024-01-11T17:30:15+00:00" } ], "http://ogp.me/ns#image": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" } ], "http://ogp.me/ns#image:width": [ { "@language": "en-us", - "@value": "800" + "@value": "1800" } ], "http://ogp.me/ns#image:height": [ @@ -9409,12 +9479,12 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://schema.org/name": [ { - "@value": "Lorna MacLachlan - The Yardbird Suite" + "@value": "RJ LeBlanc - The Yardbird Suite" } ], "http://schema.org/isPartOf": [ @@ -9424,34 +9494,34 @@ ], "http://schema.org/primaryImageOfPage": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#primaryimage" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#primaryimage" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#primaryimage" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#primaryimage" } ], "http://schema.org/thumbnailUrl": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" } ], "http://schema.org/datePublished": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T15:15:19+00:00" + "@value": "2024-01-11T01:35:45+00:00" } ], "http://schema.org/dateModified": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T17:34:05+00:00" + "@value": "2024-01-11T17:30:15+00:00" } ], "http://schema.org/breadcrumb": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#breadcrumb" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#breadcrumb" } ], "http://schema.org/inLanguage": [ @@ -9461,7 +9531,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g489980" + "@id": "_:g503140" } ], "https://api.w.org/": [ @@ -9471,7 +9541,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#primaryimage", + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#primaryimage", "@type": [ "http://schema.org/ImageObject" ], @@ -9482,18 +9552,18 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" } ], "http://schema.org/contentUrl": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6.jpg" } ], "http://schema.org/width": [ { "@type": "http://www.w3.org/2001/XMLSchema#integer", - "@value": "800" + "@value": "1800" } ], "http://schema.org/height": [ @@ -9504,35 +9574,35 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#breadcrumb", + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#breadcrumb", "@type": [ "http://schema.org/BreadcrumbList" ], "http://schema.org/itemListElement": [ { - "@id": "_:g490000" + "@id": "_:g503160" }, { - "@id": "_:g490020" + "@id": "_:g503180" }, { - "@id": "_:g490040" + "@id": "_:g503200" } ] }, { - "@id": "_:g489980", + "@id": "_:g503140", "@type": [ "http://schema.org/ReadAction" ], "http://schema.org/target": [ { - "@value": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@value": "https://yardbirdsuite.com/shows/rj-leblanc/" } ] }, { - "@id": "_:g490000", + "@id": "_:g503160", "@type": [ "http://schema.org/ListItem" ], @@ -9554,7 +9624,7 @@ ] }, { - "@id": "_:g490020", + "@id": "_:g503180", "@type": [ "http://schema.org/ListItem" ], @@ -9576,7 +9646,7 @@ ] }, { - "@id": "_:g490040", + "@id": "_:g503200", "@type": [ "http://schema.org/ListItem" ], @@ -9588,12 +9658,12 @@ ], "http://schema.org/name": [ { - "@value": "Lorna MacLachlan" + "@value": "RJ LeBlanc" } ] }, { - "@id": "_:g490080", + "@id": "_:g503240", "@type": [ "http://schema.org/EntryPoint" ], @@ -9604,30 +9674,30 @@ ] }, { - "@id": "_:g490640", + "@id": "_:g503800", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T07:59:00-07:00 " + "@value": "2024-01-10T18:29:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-05-02T23:55:00-06:00 " + "@value": "2024-03-02T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "31.00" + "@value": "34.00" } ], "http://schema.org/priceCurrency": [ @@ -9642,30 +9712,30 @@ ] }, { - "@id": "_:g490660", + "@id": "_:g503820", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T07:59:00-07:00 " + "@value": "2024-01-10T18:29:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-05-02T23:55:00-06:00 " + "@value": "2024-03-02T23:55:00-07:00 " } ], "http://schema.org/price": [ { - "@value": "26.00" + "@value": "30.00" } ], "http://schema.org/priceCurrency": [ @@ -9680,25 +9750,25 @@ ] }, { - "@id": "_:g490680", + "@id": "_:g503840", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-10T07:59:00-07:00 " + "@value": "2024-01-10T18:30:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-05-02T23:55:00-06:00 " + "@value": "2024-03-02T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -9718,25 +9788,25 @@ ] }, { - "@id": "_:g490700", + "@id": "_:g503860", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-11T10:32:00-07:00 " + "@value": "2024-01-11T10:00:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-05-02T23:55:00-06:00 " + "@value": "2024-03-02T23:55:00-07:00 " } ], "http://schema.org/price": [ @@ -9756,7 +9826,7 @@ ] }, { - "@id": "_:g490720", + "@id": "_:g503880", "@type": [ "http://schema.org/Place" ], @@ -9772,12 +9842,12 @@ ], "http://schema.org/address": [ { - "@id": "_:g490740" + "@id": "_:g503900" } ] }, { - "@id": "_:g490740", + "@id": "_:g503900", "@type": [ "http://schema.org/PostalAddress" ], @@ -9798,7 +9868,7 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/test-event-3/", + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/", "http://ogp.me/ns#locale": [ { "@language": "en-us", @@ -9814,19 +9884,19 @@ "http://ogp.me/ns#title": [ { "@language": "en-us", - "@value": "Test event - The Yardbird Suite" + "@value": "Benny Sharoni - The Yardbird Suite" } ], "http://ogp.me/ns#description": [ { "@language": "en-us", - "@value": "Just a test" + "@value": "Tenor saxophonist Benny Sharoni is a U.S. bandleader, composer and arranger who is a mainstay on the international jazz scene." } ], "http://ogp.me/ns#url": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/shows/test-event-3/" + "@value": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://ogp.me/ns#site_name": [ @@ -9841,16 +9911,10 @@ "@value": "https://facebook.com/YardbirdSuite" } ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2024-01-06T00:33:02+00:00" - } - ], "http://ogp.me/ns#image": [ { "@language": "en-us", - "@value": "https://yardbirdsuite.com/wp-content/uploads/2021/09/YS-Hilario-Duran-Dec-7-2019-01.jpg.jpg" + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" } ], "http://ogp.me/ns#image:width": [ @@ -9862,7 +9926,7 @@ "http://ogp.me/ns#image:height": [ { "@language": "en-us", - "@value": "1036" + "@value": "1198" } ], "http://ogp.me/ns#image:type": [ @@ -9876,12 +9940,12 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/test-event-3/" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://schema.org/name": [ { - "@value": "Test event - The Yardbird Suite" + "@value": "Benny Sharoni - The Yardbird Suite" } ], "http://schema.org/isPartOf": [ @@ -9889,21 +9953,36 @@ "@id": "https://yardbirdsuite.com/#website" } ], - "http://schema.org/datePublished": [ + "http://schema.org/primaryImageOfPage": [ { - "@type": "http://schema.org/Date", - "@value": "2024-01-05T23:12:56+00:00" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#primaryimage" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#primaryimage" + } + ], + "http://schema.org/thumbnailUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" + } + ], + "http://schema.org/datePublished": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-13T17:20:35+00:00" } ], "http://schema.org/dateModified": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-06T00:33:02+00:00" + "@value": "2024-01-13T17:20:35+00:00" } ], "http://schema.org/breadcrumb": [ { - "@id": "https://yardbirdsuite.com/shows/test-event-3/#breadcrumb" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#breadcrumb" } ], "http://schema.org/inLanguage": [ @@ -9913,7 +9992,7 @@ ], "http://schema.org/potentialAction": [ { - "@id": "_:g492040" + "@id": "_:g505760" } ], "https://api.w.org/": [ @@ -9923,35 +10002,68 @@ ] }, { - "@id": "https://yardbirdsuite.com/shows/test-event-3/#breadcrumb", + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#primaryimage", + "@type": [ + "http://schema.org/ImageObject" + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" + } + ], + "http://schema.org/contentUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02.jpg" + } + ], + "http://schema.org/width": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1800" + } + ], + "http://schema.org/height": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1198" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#breadcrumb", "@type": [ "http://schema.org/BreadcrumbList" ], "http://schema.org/itemListElement": [ { - "@id": "_:g492060" + "@id": "_:g505780" }, { - "@id": "_:g492080" + "@id": "_:g505800" }, { - "@id": "_:g492100" + "@id": "_:g505820" } ] }, { - "@id": "_:g492040", + "@id": "_:g505760", "@type": [ "http://schema.org/ReadAction" ], "http://schema.org/target": [ { - "@value": "https://yardbirdsuite.com/shows/test-event-3/" + "@value": "https://yardbirdsuite.com/shows/benny-sharoni/" } ] }, { - "@id": "_:g492060", + "@id": "_:g505780", "@type": [ "http://schema.org/ListItem" ], @@ -9973,7 +10085,7 @@ ] }, { - "@id": "_:g492080", + "@id": "_:g505800", "@type": [ "http://schema.org/ListItem" ], @@ -9995,7 +10107,7 @@ ] }, { - "@id": "_:g492100", + "@id": "_:g505820", "@type": [ "http://schema.org/ListItem" ], @@ -10007,12 +10119,12 @@ ], "http://schema.org/name": [ { - "@value": "Test event" + "@value": "Benny Sharoni" } ] }, { - "@id": "_:g492140", + "@id": "_:g505860", "@type": [ "http://schema.org/EntryPoint" ], @@ -10023,30 +10135,30 @@ ] }, { - "@id": "_:g492700", + "@id": "_:g506420", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/test-event-3/" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-05T16:11:00-07:00 " + "@value": "2024-01-13T10:15:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-04T23:59:00-07:00 " + "@value": "2024-03-14T23:55:00-06:00 " } ], "http://schema.org/price": [ { - "@value": "0.00" + "@value": "34.00" } ], "http://schema.org/priceCurrency": [ @@ -10061,30 +10173,30 @@ ] }, { - "@id": "_:g492720", + "@id": "_:g506440", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/test-event-3/" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-05T16:11:00-07:00 " + "@value": "2024-01-13T10:15:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-04T23:59:00-07:00 " + "@value": "2024-03-14T23:55:00-06:00 " } ], "http://schema.org/price": [ { - "@value": "0.00" + "@value": "30.00" } ], "http://schema.org/priceCurrency": [ @@ -10099,30 +10211,30 @@ ] }, { - "@id": "_:g492740", + "@id": "_:g506460", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/test-event-3/" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-05T16:11:00-07:00 " + "@value": "2024-01-13T10:15:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-04T23:59:00-07:00 " + "@value": "2024-03-14T23:55:00-06:00 " } ], "http://schema.org/price": [ { - "@value": "26.00" + "@value": "0.00" } ], "http://schema.org/priceCurrency": [ @@ -10137,25 +10249,25 @@ ] }, { - "@id": "_:g492760", + "@id": "_:g506480", "@type": [ "http://schema.org/Offer" ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/test-event-3/" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://schema.org/validFrom": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-04T16:10:00-07:00 " + "@value": "2024-01-13T10:15:00-07:00 " } ], "http://schema.org/validThrough": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-03T00:00:00-07:00 " + "@value": "2024-03-14T23:55:00-06:00 " } ], "http://schema.org/price": [ @@ -10175,74 +10287,2767 @@ ] }, { - "@id": "urn:uuid:6bbe99eb-1b62-4759-a3da-c9794dce53fd", + "@id": "_:g506500", "@type": [ - "http://schema.org/Event" + "http://schema.org/Place" ], "http://schema.org/name": [ { - "@value": "Kate Wyatt" + "@value": "The Yardbird Suite" } ], - "http://schema.org/startDate": [ + "http://schema.org/url": [ { - "@type": "http://schema.org/Date", - "@value": "2024-01-19T20:00:00-07:00" + "@id": "https://yardbirdsuite.com/venues/the-yardbird-suites/" } ], - "http://schema.org/endDate": [ + "http://schema.org/address": [ { - "@type": "http://schema.org/Date", - "@value": "2024-01-19T22:30:00-07:00" + "@id": "_:g506520" + } + ] + }, + { + "@id": "_:g506520", + "@type": [ + "http://schema.org/PostalAddress" + ], + "http://schema.org/addressLocality": [ + { + "@value": "Edmonton" } ], - "http://schema.org/description": [ + "http://schema.org/addressRegion": [ { - "@value": "Following on the heels of an impressive 12-concert Canadian Jazz Festival tour, Montreal pianist and composer Kate Wyatt brings her all-star quartet to Yardbird Suite in a performance of music from her critically-acclaimed album Artifact, as well as choice standards from the Great American Songbook." + "@value": "Alberta" + } + ], + "http://schema.org/streetAddress": [ + { + "@value": "11 Tommy Banks Way" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/", + "http://ogp.me/ns#locale": [ + { + "@language": "en-us", + "@value": "en_US" + } + ], + "http://ogp.me/ns#type": [ + { + "@language": "en-us", + "@value": "article" + } + ], + "http://ogp.me/ns#title": [ + { + "@language": "en-us", + "@value": "Jacob Do Octet - The Yardbird Suite" + } + ], + "http://ogp.me/ns#description": [ + { + "@language": "en-us", + "@value": "Jacob Do is a saxophonist, composer, and educator whose resonant and nuanced sound lendsitself to emotional storytelling through improvisation." + } + ], + "http://ogp.me/ns#url": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/shows/jacob-do-octet/" + } + ], + "http://ogp.me/ns#site_name": [ + { + "@language": "en-us", + "@value": "The Yardbird Suite" + } + ], + "article:publisher": [ + { + "@language": "en-us", + "@value": "https://facebook.com/YardbirdSuite" + } + ], + "article:modified_time": [ + { + "@language": "en-us", + "@value": "2024-01-11T17:31:56+00:00" + } + ], + "http://ogp.me/ns#image": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + } + ], + "http://ogp.me/ns#image:width": [ + { + "@language": "en-us", + "@value": "750" + } + ], + "http://ogp.me/ns#image:height": [ + { + "@language": "en-us", + "@value": "500" + } + ], + "http://ogp.me/ns#image:type": [ + { + "@language": "en-us", + "@value": "image/jpeg" } ], + "@type": [ + "http://schema.org/WebPage" + ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/kate-wyatt/" + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" } ], - "http://schema.org/eventAttendanceMode": [ + "http://schema.org/name": [ { - "@value": "https://schema.org/OfflineEventAttendanceMode" + "@value": "Jacob Do Octet - The Yardbird Suite" } ], - "http://schema.org/eventStatus": [ + "http://schema.org/isPartOf": [ { - "@value": "https://schema.org/EventScheduled" + "@id": "https://yardbirdsuite.com/#website" } ], - "http://schema.org/offers": [ + "http://schema.org/primaryImageOfPage": [ { - "@id": "_:g456200" + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#primaryimage" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#primaryimage" + } + ], + "http://schema.org/thumbnailUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + } + ], + "http://schema.org/datePublished": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T19:37:54+00:00" + } + ], + "http://schema.org/dateModified": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-11T17:31:56+00:00" + } + ], + "http://schema.org/breadcrumb": [ + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#breadcrumb" + } + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/potentialAction": [ + { + "@id": "_:g509200" + } + ], + "https://api.w.org/": [ + { + "@id": "https://yardbirdsuite.com/wp-json/" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#primaryimage", + "@type": [ + "http://schema.org/ImageObject" + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + } + ], + "http://schema.org/contentUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02.jpg" + } + ], + "http://schema.org/width": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "750" + } + ], + "http://schema.org/height": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "500" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#breadcrumb", + "@type": [ + "http://schema.org/BreadcrumbList" + ], + "http://schema.org/itemListElement": [ + { + "@id": "_:g509220" + }, + { + "@id": "_:g509240" + }, + { + "@id": "_:g509260" + } + ] + }, + { + "@id": "_:g509200", + "@type": [ + "http://schema.org/ReadAction" + ], + "http://schema.org/target": [ + { + "@value": "https://yardbirdsuite.com/shows/jacob-do-octet/" + } + ] + }, + { + "@id": "_:g509220", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1" + } + ], + "http://schema.org/name": [ + { + "@value": "Home" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/" + } + ] + }, + { + "@id": "_:g509240", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "2" + } + ], + "http://schema.org/name": [ + { + "@value": "Events" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/shows/" + } + ] + }, + { + "@id": "_:g509260", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "3" + } + ], + "http://schema.org/name": [ + { + "@value": "Jacob Do Octet" + } + ] + }, + { + "@id": "_:g509300", + "@type": [ + "http://schema.org/EntryPoint" + ], + "http://schema.org/urlTemplate": [ + { + "@value": "https://yardbirdsuite.com/?s={search_term_string}" + } + ] + }, + { + "@id": "_:g509860", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T12:31:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-03-28T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "20.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g509880", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T12:31:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-03-28T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "24.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g509900", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T12:31:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-03-28T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g509920", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-11T10:30:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-03-28T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g509940", + "@type": [ + "http://schema.org/Place" + ], + "http://schema.org/name": [ + { + "@value": "The Yardbird Suite" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/venues/the-yardbird-suites/" + } + ], + "http://schema.org/address": [ + { + "@id": "_:g509960" + } + ] + }, + { + "@id": "_:g509960", + "@type": [ + "http://schema.org/PostalAddress" + ], + "http://schema.org/addressLocality": [ + { + "@value": "Edmonton" + } + ], + "http://schema.org/addressRegion": [ + { + "@value": "Alberta" + } + ], + "http://schema.org/streetAddress": [ + { + "@value": "11 Tommy Banks Way" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/", + "http://ogp.me/ns#locale": [ + { + "@language": "en-us", + "@value": "en_US" + } + ], + "http://ogp.me/ns#type": [ + { + "@language": "en-us", + "@value": "article" + } + ], + "http://ogp.me/ns#title": [ + { + "@language": "en-us", + "@value": "John Hewitt - The Yardbird Suite" + } + ], + "http://ogp.me/ns#description": [ + { + "@language": "en-us", + "@value": "John Hewitt is often called the hardest working musician in Alberta." + } + ], + "http://ogp.me/ns#url": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ], + "http://ogp.me/ns#site_name": [ + { + "@language": "en-us", + "@value": "The Yardbird Suite" + } + ], + "article:publisher": [ + { + "@language": "en-us", + "@value": "https://facebook.com/YardbirdSuite" + } + ], + "http://ogp.me/ns#image": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/John-Hewitt-03.jpg" + } + ], + "http://ogp.me/ns#image:width": [ + { + "@language": "en-us", + "@value": "1800" + } + ], + "http://ogp.me/ns#image:height": [ + { + "@language": "en-us", + "@value": "1200" + } + ], + "http://ogp.me/ns#image:type": [ + { + "@language": "en-us", + "@value": "image/jpeg" + } + ], + "@type": [ + "http://schema.org/WebPage" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ], + "http://schema.org/name": [ + { + "@value": "John Hewitt - The Yardbird Suite" + } + ], + "http://schema.org/isPartOf": [ + { + "@id": "https://yardbirdsuite.com/#website" + } + ], + "http://schema.org/primaryImageOfPage": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/#primaryimage" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/#primaryimage" + } + ], + "http://schema.org/thumbnailUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/John-Hewitt-03.jpg" + } + ], + "http://schema.org/datePublished": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-17T23:51:41+00:00" + } + ], + "http://schema.org/dateModified": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-17T23:51:41+00:00" + } + ], + "http://schema.org/breadcrumb": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/#breadcrumb" + } + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/potentialAction": [ + { + "@id": "_:g511920" + } + ], + "https://api.w.org/": [ + { + "@id": "https://yardbirdsuite.com/wp-json/" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/#primaryimage", + "@type": [ + "http://schema.org/ImageObject" + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/John-Hewitt-03.jpg" + } + ], + "http://schema.org/contentUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/John-Hewitt-03.jpg" + } + ], + "http://schema.org/width": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1800" + } + ], + "http://schema.org/height": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1200" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/#breadcrumb", + "@type": [ + "http://schema.org/BreadcrumbList" + ], + "http://schema.org/itemListElement": [ + { + "@id": "_:g511940" + }, + { + "@id": "_:g511960" + }, + { + "@id": "_:g511980" + } + ] + }, + { + "@id": "_:g511920", + "@type": [ + "http://schema.org/ReadAction" + ], + "http://schema.org/target": [ + { + "@value": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ] + }, + { + "@id": "_:g511940", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1" + } + ], + "http://schema.org/name": [ + { + "@value": "Home" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/" + } + ] + }, + { + "@id": "_:g511960", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "2" + } + ], + "http://schema.org/name": [ + { + "@value": "Events" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/shows/" + } + ] + }, + { + "@id": "_:g511980", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "3" + } + ], + "http://schema.org/name": [ + { + "@value": "John Hewitt" + } + ] + }, + { + "@id": "_:g512020", + "@type": [ + "http://schema.org/EntryPoint" + ], + "http://schema.org/urlTemplate": [ + { + "@value": "https://yardbirdsuite.com/?s={search_term_string}" + } + ] + }, + { + "@id": "_:g512580", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-17T16:47:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-04-01T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "34.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g512600", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-17T16:47:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-04-01T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "30.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g512620", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-17T16:47:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-04-01T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g512640", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/john-hewitt/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-17T16:47:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-04-01T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g512660", + "@type": [ + "http://schema.org/Place" + ], + "http://schema.org/name": [ + { + "@value": "The Yardbird Suite" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/venues/the-yardbird-suites/" + } + ], + "http://schema.org/address": [ + { + "@id": "_:g512680" + } + ] + }, + { + "@id": "_:g512680", + "@type": [ + "http://schema.org/PostalAddress" + ], + "http://schema.org/addressLocality": [ + { + "@value": "Edmonton" + } + ], + "http://schema.org/addressRegion": [ + { + "@value": "Alberta" + } + ], + "http://schema.org/streetAddress": [ + { + "@value": "11 Tommy Banks Way" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/", + "http://ogp.me/ns#locale": [ + { + "@language": "en-us", + "@value": "en_US" + } + ], + "http://ogp.me/ns#type": [ + { + "@language": "en-us", + "@value": "article" + } + ], + "http://ogp.me/ns#title": [ + { + "@language": "en-us", + "@value": "Lorna MacLachlan - The Yardbird Suite" + } + ], + "http://ogp.me/ns#description": [ + { + "@language": "en-us", + "@value": "Singer, pianist, and composer Lorna MacLachlan began her career as a composer providing award winning original music for theatre, dance and national media companies such as CBC and Access as well as a variety of commercial and artistic enterprises across the spectrum of music genres." + } + ], + "http://ogp.me/ns#url": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ], + "http://ogp.me/ns#site_name": [ + { + "@language": "en-us", + "@value": "The Yardbird Suite" + } + ], + "article:publisher": [ + { + "@language": "en-us", + "@value": "https://facebook.com/YardbirdSuite" + } + ], + "article:modified_time": [ + { + "@language": "en-us", + "@value": "2024-01-11T17:34:05+00:00" + } + ], + "http://ogp.me/ns#image": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + } + ], + "http://ogp.me/ns#image:width": [ + { + "@language": "en-us", + "@value": "800" + } + ], + "http://ogp.me/ns#image:height": [ + { + "@language": "en-us", + "@value": "1200" + } + ], + "http://ogp.me/ns#image:type": [ + { + "@language": "en-us", + "@value": "image/jpeg" + } + ], + "@type": [ + "http://schema.org/WebPage" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ], + "http://schema.org/name": [ + { + "@value": "Lorna MacLachlan - The Yardbird Suite" + } + ], + "http://schema.org/isPartOf": [ + { + "@id": "https://yardbirdsuite.com/#website" + } + ], + "http://schema.org/primaryImageOfPage": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#primaryimage" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#primaryimage" + } + ], + "http://schema.org/thumbnailUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + } + ], + "http://schema.org/datePublished": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T15:15:19+00:00" + } + ], + "http://schema.org/dateModified": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-11T17:34:05+00:00" + } + ], + "http://schema.org/breadcrumb": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#breadcrumb" + } + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/potentialAction": [ + { + "@id": "_:g514980" + } + ], + "https://api.w.org/": [ + { + "@id": "https://yardbirdsuite.com/wp-json/" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#primaryimage", + "@type": [ + "http://schema.org/ImageObject" + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + } + ], + "http://schema.org/contentUrl": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Lorna-MacLachlan-01.jpg" + } + ], + "http://schema.org/width": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "800" + } + ], + "http://schema.org/height": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1200" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/#breadcrumb", + "@type": [ + "http://schema.org/BreadcrumbList" + ], + "http://schema.org/itemListElement": [ + { + "@id": "_:g515000" + }, + { + "@id": "_:g515020" + }, + { + "@id": "_:g515040" + } + ] + }, + { + "@id": "_:g514980", + "@type": [ + "http://schema.org/ReadAction" + ], + "http://schema.org/target": [ + { + "@value": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ] + }, + { + "@id": "_:g515000", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1" + } + ], + "http://schema.org/name": [ + { + "@value": "Home" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/" + } + ] + }, + { + "@id": "_:g515020", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "2" + } + ], + "http://schema.org/name": [ + { + "@value": "Events" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/shows/" + } + ] + }, + { + "@id": "_:g515040", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "3" + } + ], + "http://schema.org/name": [ + { + "@value": "Lorna MacLachlan" + } + ] + }, + { + "@id": "_:g515080", + "@type": [ + "http://schema.org/EntryPoint" + ], + "http://schema.org/urlTemplate": [ + { + "@value": "https://yardbirdsuite.com/?s={search_term_string}" + } + ] + }, + { + "@id": "_:g515660", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T07:59:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-05-02T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "31.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g515680", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T07:59:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-05-02T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "26.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g515700", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-10T07:59:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-05-02T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g515720", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/lorna-maclachlan/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-11T10:32:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-05-02T23:55:00-06:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g515740", + "@type": [ + "http://schema.org/Place" + ], + "http://schema.org/name": [ + { + "@value": "The Yardbird Suite" + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/venues/the-yardbird-suites/" + } + ], + "http://schema.org/address": [ + { + "@id": "_:g515760" + } + ] + }, + { + "@id": "_:g515760", + "@type": [ + "http://schema.org/PostalAddress" + ], + "http://schema.org/addressLocality": [ + { + "@value": "Edmonton" + } + ], + "http://schema.org/addressRegion": [ + { + "@value": "Alberta" + } + ], + "http://schema.org/streetAddress": [ + { + "@value": "11 Tommy Banks Way" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/", + "http://ogp.me/ns#locale": [ + { + "@language": "en-us", + "@value": "en_US" + } + ], + "http://ogp.me/ns#type": [ + { + "@language": "en-us", + "@value": "article" + } + ], + "http://ogp.me/ns#title": [ + { + "@language": "en-us", + "@value": "Test event - The Yardbird Suite" + } + ], + "http://ogp.me/ns#description": [ + { + "@language": "en-us", + "@value": "Just a test" + } + ], + "http://ogp.me/ns#url": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/shows/test-event-3/" + } + ], + "http://ogp.me/ns#site_name": [ + { + "@language": "en-us", + "@value": "The Yardbird Suite" + } + ], + "article:publisher": [ + { + "@language": "en-us", + "@value": "https://facebook.com/YardbirdSuite" + } + ], + "article:modified_time": [ + { + "@language": "en-us", + "@value": "2024-01-06T00:33:02+00:00" + } + ], + "http://ogp.me/ns#image": [ + { + "@language": "en-us", + "@value": "https://yardbirdsuite.com/wp-content/uploads/2021/09/YS-Hilario-Duran-Dec-7-2019-01.jpg.jpg" + } + ], + "http://ogp.me/ns#image:width": [ + { + "@language": "en-us", + "@value": "1800" + } + ], + "http://ogp.me/ns#image:height": [ + { + "@language": "en-us", + "@value": "1036" + } + ], + "http://ogp.me/ns#image:type": [ + { + "@language": "en-us", + "@value": "image/jpeg" + } + ], + "@type": [ + "http://schema.org/WebPage" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/" + } + ], + "http://schema.org/name": [ + { + "@value": "Test event - The Yardbird Suite" + } + ], + "http://schema.org/isPartOf": [ + { + "@id": "https://yardbirdsuite.com/#website" + } + ], + "http://schema.org/datePublished": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-05T23:12:56+00:00" + } + ], + "http://schema.org/dateModified": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-06T00:33:02+00:00" + } + ], + "http://schema.org/breadcrumb": [ + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/#breadcrumb" + } + ], + "http://schema.org/inLanguage": [ + { + "@value": "en-US" + } + ], + "http://schema.org/potentialAction": [ + { + "@id": "_:g518440" + } + ], + "https://api.w.org/": [ + { + "@id": "https://yardbirdsuite.com/wp-json/" + } + ] + }, + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/#breadcrumb", + "@type": [ + "http://schema.org/BreadcrumbList" + ], + "http://schema.org/itemListElement": [ + { + "@id": "_:g518460" + }, + { + "@id": "_:g518480" + }, + { + "@id": "_:g518500" + } + ] + }, + { + "@id": "_:g518440", + "@type": [ + "http://schema.org/ReadAction" + ], + "http://schema.org/target": [ + { + "@value": "https://yardbirdsuite.com/shows/test-event-3/" + } + ] + }, + { + "@id": "_:g518460", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "1" + } + ], + "http://schema.org/name": [ + { + "@value": "Home" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/" + } + ] + }, + { + "@id": "_:g518480", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "2" + } + ], + "http://schema.org/name": [ + { + "@value": "Events" + } + ], + "http://schema.org/item": [ + { + "@value": "https://yardbirdsuite.com/shows/" + } + ] + }, + { + "@id": "_:g518500", + "@type": [ + "http://schema.org/ListItem" + ], + "http://schema.org/position": [ + { + "@type": "http://www.w3.org/2001/XMLSchema#integer", + "@value": "3" + } + ], + "http://schema.org/name": [ + { + "@value": "Test event" + } + ] + }, + { + "@id": "_:g518540", + "@type": [ + "http://schema.org/EntryPoint" + ], + "http://schema.org/urlTemplate": [ + { + "@value": "https://yardbirdsuite.com/?s={search_term_string}" + } + ] + }, + { + "@id": "_:g519100", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-05T16:11:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-02-04T23:59:00-07:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g519120", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-05T16:11:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-02-04T23:59:00-07:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g519140", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-05T16:11:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-02-04T23:59:00-07:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "26.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "_:g519160", + "@type": [ + "http://schema.org/Offer" + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/test-event-3/" + } + ], + "http://schema.org/validFrom": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-04T16:10:00-07:00 " + } + ], + "http://schema.org/validThrough": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-02-03T00:00:00-07:00 " + } + ], + "http://schema.org/price": [ + { + "@value": "0.00" + } + ], + "http://schema.org/priceCurrency": [ + { + "@value": "CAD" + } + ], + "http://schema.org/availability": [ + { + "@value": "https://schema.org/InStock" + } + ] + }, + { + "@id": "urn:uuid:c8504e92-e0e0-44f5-9535-4d0d83af0129", + "@type": [ + "http://schema.org/Event" + ], + "http://schema.org/name": [ + { + "@value": "Kate Wyatt" + } + ], + "http://schema.org/startDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-19T20:00:00-07:00" + } + ], + "http://schema.org/endDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-19T22:30:00-07:00" + } + ], + "http://schema.org/description": [ + { + "@value": "Following on the heels of an impressive 12-concert Canadian Jazz Festival tour, Montreal pianist and composer Kate Wyatt brings her all-star quartet to Yardbird Suite in a performance of music from her critically-acclaimed album Artifact, as well as choice standards from the Great American Songbook." + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/kate-wyatt/" + } + ], + "http://schema.org/eventAttendanceMode": [ + { + "@value": "https://schema.org/OfflineEventAttendanceMode" + } + ], + "http://schema.org/eventStatus": [ + { + "@value": "https://schema.org/EventScheduled" + } + ], + "http://schema.org/offers": [ + { + "@id": "_:g456200" + }, + { + "@id": "_:g456220" + }, + { + "@id": "_:g456240" + }, + { + "@id": "_:g456260" + } + ], + "http://schema.org/location": [ + { + "@id": "_:g456280" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/Kate-Wyatt-02-150x150.jpeg" + } + ] + }, + { + "@id": "urn:uuid:f29b1d6e-d5e1-4a58-9605-0cb801a2bd41", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" + } + ] + }, + { + "@id": "urn:uuid:bdc47a79-3b47-4766-9414-4e9a9a93050e", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#document" + } + ] + }, + { + "@id": "urn:uuid:70e918be-7ea5-4582-ad45-a3c4fb62eab1", + "@type": [ + "http://www.schema.org/SiteNavigationElement" + ], + "http://www.schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/membership/" + }, + { + "@id": "https://yardbirdsuite.com/who-we-are/" + }, + { + "@id": "https://yardbirdsuite.com/donate/" + }, + { + "@id": "https://yardbirdsuite.com/contact-us/" + }, + { + "@id": "https://yardbirdsuite.com/shows/kate-wyatt/#" + }, + { + "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" + }, + { + "@id": "https://yardbirdsuite.com/events/" + }, + { + "@id": "https://yardbirdsuite.com/events/in-person-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/virtual-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/event-calendar/" + }, + { + "@id": "https://yardbirdsuite.com/events/archived-shows/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-auditions/" + }, + { + "@id": "https://yardbirdsuite.com/education/about-littlebirds/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-mentors/" + }, + { + "@id": "https://yardbirdsuite.com/education/jazz-for-kids/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/apply/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-faqs/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-positions/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-schedule/" + } + ], + "http://www.schema.org/name": [ + { + "@value": "Shows" + }, + { + "@value": "Membership" + }, + { + "@value": "Who we are" + }, + { + "@value": "Littlebirds" + }, + { + "@value": "Volunteers" + }, + { + "@value": "Donate" + }, + { + "@value": "Contact" + }, + { + "@value": "Register" + }, + { + "@value": "Cart" + }, + { + "@value": "Login" + }, + { + "@value": "All shows" + }, + { + "@value": "In person shows" + }, + { + "@value": "Virtual shows" + }, + { + "@value": "Event Calendar" + }, + { + "@value": "Archived shows" + }, + { + "@value": "Littlebird Auditions" + }, + { + "@value": "About Littlebirds" + }, + { + "@value": "Littlebird Mentors" + }, + { + "@value": "Jazz for kids" + }, + { + "@value": "Apply" + }, + { + "@value": "Volunteer FAQs" + }, + { + "@value": "Volunteer positions" + }, + { + "@value": "Volunteer schedule" + } + ] + }, + { + "@id": "urn:uuid:375e4af0-abb0-495b-9c99-7307223538b6", + "@type": [ + "http://schema.org/Event" + ], + "http://schema.org/name": [ + { + "@value": "Tim Tamashiro" + } + ], + "http://schema.org/startDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-20T20:00:00-07:00" + } + ], + "http://schema.org/endDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-20T22:30:00-07:00" + } + ], + "http://schema.org/description": [ + { + "@value": "Tim Tamashiro is a jazz singer, speaker, entertainer and former national radio host." + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/tim-tamashiro/" + } + ], + "http://schema.org/eventAttendanceMode": [ + { + "@value": "https://schema.org/OfflineEventAttendanceMode" + } + ], + "http://schema.org/eventStatus": [ + { + "@value": "https://schema.org/EventScheduled" + } + ], + "http://schema.org/offers": [ + { + "@id": "_:g458840" + }, + { + "@id": "_:g458860" + }, + { + "@id": "_:g458880" + }, + { + "@id": "_:g458900" + } + ], + "http://schema.org/location": [ + { + "@id": "_:g458920" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/Tim-Tamashiro-8x10-small-150x150.jpg" + } + ] + }, + { + "@id": "urn:uuid:e59dadc6-6b9b-4922-b075-4047db3333a6", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" + } + ] + }, + { + "@id": "urn:uuid:565eb0c0-673c-4ef6-91a5-56162e40f648", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#document" + } + ] + }, + { + "@id": "urn:uuid:99611f2e-100e-431e-a10c-25cdbbb015fe", + "@type": [ + "http://www.schema.org/SiteNavigationElement" + ], + "http://www.schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/membership/" + }, + { + "@id": "https://yardbirdsuite.com/who-we-are/" + }, + { + "@id": "https://yardbirdsuite.com/donate/" + }, + { + "@id": "https://yardbirdsuite.com/contact-us/" + }, + { + "@id": "https://yardbirdsuite.com/shows/tim-tamashiro/#" + }, + { + "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" + }, + { + "@id": "https://yardbirdsuite.com/events/" + }, + { + "@id": "https://yardbirdsuite.com/events/in-person-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/virtual-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/event-calendar/" + }, + { + "@id": "https://yardbirdsuite.com/events/archived-shows/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-auditions/" + }, + { + "@id": "https://yardbirdsuite.com/education/about-littlebirds/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-mentors/" + }, + { + "@id": "https://yardbirdsuite.com/education/jazz-for-kids/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/apply/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-faqs/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-positions/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-schedule/" + } + ], + "http://www.schema.org/name": [ + { + "@value": "Shows" + }, + { + "@value": "Membership" + }, + { + "@value": "Who we are" + }, + { + "@value": "Littlebirds" + }, + { + "@value": "Volunteers" + }, + { + "@value": "Donate" + }, + { + "@value": "Contact" + }, + { + "@value": "Register" + }, + { + "@value": "Cart" + }, + { + "@value": "Login" + }, + { + "@value": "All shows" + }, + { + "@value": "In person shows" + }, + { + "@value": "Virtual shows" + }, + { + "@value": "Event Calendar" + }, + { + "@value": "Archived shows" + }, + { + "@value": "Littlebird Auditions" + }, + { + "@value": "About Littlebirds" + }, + { + "@value": "Littlebird Mentors" + }, + { + "@value": "Jazz for kids" + }, + { + "@value": "Apply" + }, + { + "@value": "Volunteer FAQs" + }, + { + "@value": "Volunteer positions" + }, + { + "@value": "Volunteer schedule" + } + ] + }, + { + "@id": "urn:uuid:d4f41c5e-c6a2-4521-963e-5a0ef0ec1628", + "@type": [ + "http://schema.org/Event" + ], + "http://schema.org/name": [ + { + "@value": "Emerging Artists Presents Nathan Cedeño" + } + ], + "http://schema.org/startDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-21T20:00:00-07:00" + } + ], + "http://schema.org/endDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-21T22:30:00-07:00" + } + ], + "http://schema.org/description": [ + { + "@value": " " + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-nathan-cedeno/" + } + ], + "http://schema.org/eventAttendanceMode": [ + { + "@value": "https://schema.org/OfflineEventAttendanceMode" + } + ], + "http://schema.org/eventStatus": [ + { + "@value": "https://schema.org/EventScheduled" + } + ], + "http://schema.org/offers": [ + { + "@id": "_:g459400" + }, + { + "@id": "_:g459420" + }, + { + "@id": "_:g459440" + }, + { + "@id": "_:g459460" + } + ], + "http://schema.org/location": [ + { + "@id": "_:g459480" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/Nathan-Cedeno-150x150.jpg" + } + ] + }, + { + "@id": "urn:uuid:b92c2230-c092-40fc-906a-0cdf62d165c1", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" + } + ] + }, + { + "@id": "urn:uuid:0a963e0e-ba8f-43a5-b48a-1ff40e47e239", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#document" + } + ] + }, + { + "@id": "urn:uuid:613fa123-98d5-4123-8552-e3c2ac78cb1b", + "@type": [ + "http://www.schema.org/SiteNavigationElement" + ], + "http://www.schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/membership/" + }, + { + "@id": "https://yardbirdsuite.com/who-we-are/" + }, + { + "@id": "https://yardbirdsuite.com/donate/" + }, + { + "@id": "https://yardbirdsuite.com/contact-us/" + }, + { + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-nathan-cedeno/#" + }, + { + "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" + }, + { + "@id": "https://yardbirdsuite.com/events/" + }, + { + "@id": "https://yardbirdsuite.com/events/in-person-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/virtual-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/event-calendar/" + }, + { + "@id": "https://yardbirdsuite.com/events/archived-shows/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-auditions/" + }, + { + "@id": "https://yardbirdsuite.com/education/about-littlebirds/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-mentors/" + }, + { + "@id": "https://yardbirdsuite.com/education/jazz-for-kids/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/apply/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-faqs/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-positions/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-schedule/" + } + ], + "http://www.schema.org/name": [ + { + "@value": "Shows" + }, + { + "@value": "Membership" + }, + { + "@value": "Who we are" + }, + { + "@value": "Littlebirds" + }, + { + "@value": "Volunteers" + }, + { + "@value": "Donate" + }, + { + "@value": "Contact" + }, + { + "@value": "Register" + }, + { + "@value": "Cart" + }, + { + "@value": "Login" + }, + { + "@value": "All shows" + }, + { + "@value": "In person shows" + }, + { + "@value": "Virtual shows" + }, + { + "@value": "Event Calendar" + }, + { + "@value": "Archived shows" + }, + { + "@value": "Littlebird Auditions" + }, + { + "@value": "About Littlebirds" + }, + { + "@value": "Littlebird Mentors" + }, + { + "@value": "Jazz for kids" + }, + { + "@value": "Apply" + }, + { + "@value": "Volunteer FAQs" + }, + { + "@value": "Volunteer positions" + }, + { + "@value": "Volunteer schedule" + } + ] + }, + { + "@id": "urn:uuid:7aed4583-97c6-4f77-9443-b595a980a273", + "@type": [ + "http://schema.org/Event" + ], + "http://schema.org/name": [ + { + "@value": "Tuesday Jam Hosted by Tom Van Seters" + } + ], + "http://schema.org/startDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-23T20:00:00-07:00" + } + ], + "http://schema.org/endDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-23T22:30:00-07:00" + } + ], + "http://schema.org/description": [ + { + "@value": "Jazz pianist and composer Tom Van Seters has been an active member of the Canadian music scene for more than twenty-five years." + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/tuesday-jam-hosted-by-tom-van-seters-3/" + } + ], + "http://schema.org/eventAttendanceMode": [ + { + "@value": "https://schema.org/OfflineEventAttendanceMode" + } + ], + "http://schema.org/eventStatus": [ + { + "@value": "https://schema.org/EventScheduled" + } + ], + "http://schema.org/offers": [ + { + "@id": "_:g461700" + }, + { + "@id": "_:g461720" + }, + { + "@id": "_:g461740" + }, + { + "@id": "_:g461760" + }, + { + "@id": "_:g461780" + } + ], + "http://schema.org/location": [ + { + "@id": "_:g461800" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/TVS-head-shot-150x150.jpeg" + } + ] + }, + { + "@id": "urn:uuid:b19e1607-5767-48be-9f1e-d8469343206d", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" + } + ] + }, + { + "@id": "urn:uuid:d1d221d8-5a40-4a60-91b1-acdf72aeda8b", + "http://www.w3.org/1999/xhtml/vocab#role": [ + { + "@id": "http://www.w3.org/1999/xhtml/vocab#document" + } + ] + }, + { + "@id": "urn:uuid:78d0d0fb-93a6-4a6a-992f-88e976492d5e", + "@type": [ + "http://www.schema.org/SiteNavigationElement" + ], + "http://www.schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/membership/" + }, + { + "@id": "https://yardbirdsuite.com/who-we-are/" + }, + { + "@id": "https://yardbirdsuite.com/donate/" + }, + { + "@id": "https://yardbirdsuite.com/contact-us/" + }, + { + "@id": "https://yardbirdsuite.com/shows/tuesday-jam-hosted-by-tom-van-seters-3/#" + }, + { + "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" + }, + { + "@id": "https://yardbirdsuite.com/events/" + }, + { + "@id": "https://yardbirdsuite.com/events/in-person-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/virtual-shows/" + }, + { + "@id": "https://yardbirdsuite.com/events/event-calendar/" + }, + { + "@id": "https://yardbirdsuite.com/events/archived-shows/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-auditions/" + }, + { + "@id": "https://yardbirdsuite.com/education/about-littlebirds/" + }, + { + "@id": "https://yardbirdsuite.com/education/littlebird-mentors/" + }, + { + "@id": "https://yardbirdsuite.com/education/jazz-for-kids/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/apply/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-faqs/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-positions/" + }, + { + "@id": "https://yardbirdsuite.com/volunteers/volunteer-schedule/" + } + ], + "http://www.schema.org/name": [ + { + "@value": "Shows" + }, + { + "@value": "Membership" + }, + { + "@value": "Who we are" + }, + { + "@value": "Littlebirds" + }, + { + "@value": "Volunteers" + }, + { + "@value": "Donate" + }, + { + "@value": "Contact" + }, + { + "@value": "Register" + }, + { + "@value": "Cart" + }, + { + "@value": "Login" + }, + { + "@value": "All shows" + }, + { + "@value": "In person shows" + }, + { + "@value": "Virtual shows" + }, + { + "@value": "Event Calendar" + }, + { + "@value": "Archived shows" + }, + { + "@value": "Littlebird Auditions" + }, + { + "@value": "About Littlebirds" + }, + { + "@value": "Littlebird Mentors" + }, + { + "@value": "Jazz for kids" + }, + { + "@value": "Apply" + }, + { + "@value": "Volunteer FAQs" + }, + { + "@value": "Volunteer positions" + }, + { + "@value": "Volunteer schedule" + } + ] + }, + { + "@id": "urn:uuid:333908c8-b88e-4143-a9bc-e0cc96cafab3", + "@type": [ + "http://schema.org/Event" + ], + "http://schema.org/name": [ + { + "@value": "Freddie Hubbard Tribute" + } + ], + "http://schema.org/startDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-26T20:00:00-07:00" + } + ], + "http://schema.org/endDate": [ + { + "@type": "http://schema.org/Date", + "@value": "2024-01-26T22:30:00-07:00" + } + ], + "http://schema.org/description": [ + { + "@value": "Renowned as a significant figure in jazz history, Freddie Hubbard reimagined the sound of the trumpet in jazz." + } + ], + "http://schema.org/url": [ + { + "@id": "https://yardbirdsuite.com/shows/freddie-hubbard-tribute/" + } + ], + "http://schema.org/eventAttendanceMode": [ + { + "@value": "https://schema.org/OfflineEventAttendanceMode" + } + ], + "http://schema.org/eventStatus": [ + { + "@value": "https://schema.org/EventScheduled" + } + ], + "http://schema.org/offers": [ + { + "@id": "_:g463920" }, { - "@id": "_:g456220" + "@id": "_:g463940" }, { - "@id": "_:g456240" + "@id": "_:g463960" }, { - "@id": "_:g456260" + "@id": "_:g463980" } ], "http://schema.org/location": [ { - "@id": "_:g456280" + "@id": "_:g464000" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/Kate-Wyatt-02-150x150.jpeg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/PXL_20231230_222829895-150x150.jpg" } ] }, { - "@id": "urn:uuid:bb90fce2-b9c6-46bf-a2b8-14591bbd9fb2", + "@id": "urn:uuid:201fb9dc-a004-4f75-8334-6e7126ad96ef", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -10250,7 +13055,7 @@ ] }, { - "@id": "urn:uuid:cd998b82-2d43-4a91-a204-ec11d33054fe", + "@id": "urn:uuid:ea29924a-f0a4-461e-8ef2-1caedc3abf3b", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -10258,7 +13063,7 @@ ] }, { - "@id": "urn:uuid:923aeb1b-62b3-4189-a888-2d3b1f6d42b2", + "@id": "urn:uuid:dcdd3191-50b9-47bf-b00b-50c896215b1b", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -10276,7 +13081,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/kate-wyatt/#" + "@id": "https://yardbirdsuite.com/shows/freddie-hubbard-tribute/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -10394,35 +13199,35 @@ ] }, { - "@id": "urn:uuid:5a2a4521-86b9-46c2-9ebc-7c44668ec09d", + "@id": "urn:uuid:e8fe337d-013d-4947-9851-48a0c6d5936d", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Tim Tamashiro" + "@value": "Pure Octane" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-20T20:00:00-07:00" + "@value": "2024-01-27T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-20T22:30:00-07:00" + "@value": "2024-01-27T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Tim Tamashiro is a jazz singer, speaker, entertainer and former national radio host." + "@value": "Pure Octane is a band that brings the musical worlds of video games, anime, Japanese Culture, and cartoons to life in their own contemporary style." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/tim-tamashiro/" + "@id": "https://yardbirdsuite.com/shows/pure-octane/" } ], "http://schema.org/eventAttendanceMode": [ @@ -10437,31 +13242,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g458200" + "@id": "_:g466220" }, { - "@id": "_:g458220" + "@id": "_:g466240" }, { - "@id": "_:g458240" + "@id": "_:g466260" }, { - "@id": "_:g458260" + "@id": "_:g466280" } ], "http://schema.org/location": [ { - "@id": "_:g458280" + "@id": "_:g466300" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/Tim-Tamashiro-8x10-small-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/ure-Octane-150x150.jpg" } ] }, { - "@id": "urn:uuid:f053ee3f-ae58-4106-b25c-7dae79ac7a9a", + "@id": "urn:uuid:67c8894f-a8bd-4d26-bd8a-6acd7bd9974f", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -10469,7 +13274,7 @@ ] }, { - "@id": "urn:uuid:c1f05bd2-22f3-4b4c-83e6-1005b309d065", + "@id": "urn:uuid:ba649008-2ab8-48f8-8806-8b7468520060", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -10477,7 +13282,7 @@ ] }, { - "@id": "urn:uuid:5264dec8-a73d-406a-93cd-954501855ca6", + "@id": "urn:uuid:5f577ff4-676a-4064-b19d-4659abfe0c41", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -10495,7 +13300,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/tim-tamashiro/#" + "@id": "https://yardbirdsuite.com/shows/pure-octane/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -10613,25 +13418,25 @@ ] }, { - "@id": "urn:uuid:6af6cb53-b5c1-486a-8691-60b1cae4c6d9", + "@id": "urn:uuid:7941e228-6998-4d0b-97d4-fc6ab3b74569", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Emerging Artists Presents Nathan Cedeño" + "@value": "Jim Head" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-21T20:00:00-07:00" + "@value": "2024-02-02T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-21T22:30:00-07:00" + "@value": "2024-02-02T22:30:00-07:00" } ], "http://schema.org/description": [ @@ -10641,7 +13446,7 @@ ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-nathan-cedeno/" + "@id": "https://yardbirdsuite.com/shows/jim-head/" } ], "http://schema.org/eventAttendanceMode": [ @@ -10656,31 +13461,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g458760" + "@id": "_:g468920" }, { - "@id": "_:g458780" + "@id": "_:g468940" }, { - "@id": "_:g458800" + "@id": "_:g468960" }, { - "@id": "_:g458820" + "@id": "_:g468980" } ], "http://schema.org/location": [ { - "@id": "_:g458840" + "@id": "_:g469000" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/Nathan-Cedeno-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jim-Head-guitar-1-150x150.jpg" } ] }, { - "@id": "urn:uuid:120bcdd4-b197-4b51-a3e7-540d139993d9", + "@id": "urn:uuid:a3785018-c221-4401-922a-1b249a888569", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -10688,7 +13493,7 @@ ] }, { - "@id": "urn:uuid:4d3b6ead-a279-4480-9281-44d611569ac2", + "@id": "urn:uuid:ea7f8930-17a9-4835-b7f8-167ef2fe2541", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -10696,7 +13501,7 @@ ] }, { - "@id": "urn:uuid:6f556731-34cc-42c5-bf8b-20f826116091", + "@id": "urn:uuid:27963472-acd7-47b3-b1d0-db6b62761323", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -10714,7 +13519,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-nathan-cedeno/#" + "@id": "https://yardbirdsuite.com/shows/jim-head/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -10832,35 +13637,35 @@ ] }, { - "@id": "urn:uuid:198ce701-8929-4132-8f44-ae7015604f74", + "@id": "urn:uuid:77fca358-1adf-4e1f-9123-120a7a044f89", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Tuesday Jam Hosted by Tom Van Seters" + "@value": "François Houle and Daniel Janke" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-23T20:00:00-07:00" + "@value": "2024-02-03T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-23T22:30:00-07:00" + "@value": "2024-02-03T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Jazz pianist and composer Tom Van Seters has been an active member of the Canadian music scene for more than twenty-five years." + "@value": "François Houle (clarinet) and Daniel Janke (piano) have released their first duo CD recording\r\nCrystalline." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/tuesday-jam-hosted-by-tom-van-seters-3/" + "@id": "https://yardbirdsuite.com/shows/francois-houle-and-daniel-janke/" } ], "http://schema.org/eventAttendanceMode": [ @@ -10875,34 +13680,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g460400" - }, - { - "@id": "_:g460420" + "@id": "_:g472000" }, { - "@id": "_:g460440" + "@id": "_:g472020" }, { - "@id": "_:g460460" + "@id": "_:g472040" }, { - "@id": "_:g460480" + "@id": "_:g472060" } ], "http://schema.org/location": [ { - "@id": "_:g460500" + "@id": "_:g472080" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/TVS-head-shot-150x150.jpeg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/thumbnail_Daniel_Francois_LiveStill_1-150x150.jpg" } ] }, { - "@id": "urn:uuid:a0beda1f-a0af-42b6-916a-6397e179b55a", + "@id": "urn:uuid:295e1e62-a55d-48c0-aa22-175a66294aed", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -10910,7 +13712,7 @@ ] }, { - "@id": "urn:uuid:bcb86cd7-49c9-4eb3-aadb-76682874890a", + "@id": "urn:uuid:b745df49-d04a-4767-b6c5-8eb55088b442", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -10918,7 +13720,7 @@ ] }, { - "@id": "urn:uuid:33797c14-b389-4918-90b7-2bbe54304b2b", + "@id": "urn:uuid:d1cf08cc-97f5-48ca-b2e3-c469cefd214f", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -10936,7 +13738,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/tuesday-jam-hosted-by-tom-van-seters-3/#" + "@id": "https://yardbirdsuite.com/shows/francois-houle-and-daniel-janke/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -11054,35 +13856,35 @@ ] }, { - "@id": "urn:uuid:082a5b4c-b429-4796-83a0-a49029a5b141", + "@id": "urn:uuid:6e911a46-6db4-4813-b283-56e597e80f91", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Freddie Hubbard Tribute" + "@value": "River City Big Band presents Jazzy Friends:" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-26T20:00:00-07:00" + "@value": "2024-02-04T19:30:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-26T22:30:00-07:00" + "@value": "2024-02-04T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Renowned as a significant figure in jazz history, Freddie Hubbard reimagined the sound of the trumpet in jazz." + "@value": "Join River City Big Band for our tribute to a great friend and musical leader, Larry Schrum." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/freddie-hubbard-tribute/" + "@id": "https://yardbirdsuite.com/shows/river-city-big-band-presents-jazzy-friends/" } ], "http://schema.org/eventAttendanceMode": [ @@ -11097,31 +13899,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g461980" + "@id": "_:g473740" }, { - "@id": "_:g462000" + "@id": "_:g473760" }, { - "@id": "_:g462020" + "@id": "_:g473780" }, { - "@id": "_:g462040" + "@id": "_:g473800" } ], "http://schema.org/location": [ { - "@id": "_:g462060" + "@id": "_:g473820" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/PXL_20231230_222829895-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/River-City-Big-Band-01-150x150.jpg" } ] }, { - "@id": "urn:uuid:306839c0-1ac0-4c95-b0cd-82ac5cf46530", + "@id": "urn:uuid:8df3006c-f125-45e1-8648-63331ff7e27c", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -11129,7 +13931,7 @@ ] }, { - "@id": "urn:uuid:f0cd2229-b39e-4172-9b74-f14ddd7803f4", + "@id": "urn:uuid:c8538135-0c86-4fbc-b52c-f35b013c3073", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -11137,7 +13939,7 @@ ] }, { - "@id": "urn:uuid:58935e7b-00a7-4bc0-a1d8-095652f692bc", + "@id": "urn:uuid:9f3f313a-88de-456b-8f72-dd33d2850628", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -11155,7 +13957,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/freddie-hubbard-tribute/#" + "@id": "https://yardbirdsuite.com/shows/river-city-big-band-presents-jazzy-friends/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -11273,35 +14075,35 @@ ] }, { - "@id": "urn:uuid:fbb47a4e-1c46-45d5-9a3c-33b0ecaa4797", + "@id": "urn:uuid:52bb671c-1ccf-4492-a474-90e7f07d7820", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Pure Octane" + "@value": "The Ladies of Jazz" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-27T20:00:00-07:00" + "@value": "2024-02-08T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-01-27T22:30:00-07:00" + "@value": "2024-02-08T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Pure Octane is a band that brings the musical worlds of video games, anime, Japanese Culture, and cartoons to life in their own contemporary style." + "@value": "This swinging band features an inventive mix of voice (the divine Jocelyn Anselmo), keys (virtuoso jazzman Simon Abbott), bass (the multi-talented Andreas Wegner), and an ingenious percussion section from tireless tap-dancing diva Paige Tirs." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/pure-octane/" + "@id": "https://yardbirdsuite.com/shows/the-ladies-of-jazz/" } ], "http://schema.org/eventAttendanceMode": [ @@ -11316,31 +14118,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g463180" + "@id": "_:g476220" }, { - "@id": "_:g463200" + "@id": "_:g476240" }, { - "@id": "_:g463220" + "@id": "_:g476260" }, { - "@id": "_:g463240" + "@id": "_:g476280" } ], "http://schema.org/location": [ { - "@id": "_:g463260" + "@id": "_:g476300" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2023/12/ure-Octane-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Ladies-of-Jazz-01-150x150.jpg" } ] }, { - "@id": "urn:uuid:92120c71-43ac-4918-a8d2-4c0fa9836d14", + "@id": "urn:uuid:235814f3-45b6-45af-89b7-82f92c08068b", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -11348,7 +14150,7 @@ ] }, { - "@id": "urn:uuid:c4eb71a3-7aa9-4ad2-9e52-8d353e06f084", + "@id": "urn:uuid:b6f2a44b-4708-4e17-ab3f-71d849e973ac", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -11356,7 +14158,7 @@ ] }, { - "@id": "urn:uuid:ebf80dbc-0aa1-439f-9cf4-9ca05a25173d", + "@id": "urn:uuid:686c7b9c-ddd5-4576-890f-d88df72f635e", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -11374,7 +14176,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/pure-octane/#" + "@id": "https://yardbirdsuite.com/shows/the-ladies-of-jazz/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -11492,35 +14294,35 @@ ] }, { - "@id": "urn:uuid:23cf5035-901d-4e65-859f-34b44648b003", + "@id": "urn:uuid:abb1db77-64e2-4b23-9139-f56eb368e924", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Jim Head" + "@value": "Sienna Dahlen and Bill Coon" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-02T20:00:00-07:00" + "@value": "2024-02-09T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-02T22:30:00-07:00" + "@value": "2024-02-09T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": " " + "@value": "Montreal-based, BC-raised vocalist and composer, Sienna Dahlen and Vancouver-based, QC-raised guitarist and composer, Bill Coon share more than their respective love for these two beautiful Canadian provinces." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jim-head/" + "@id": "https://yardbirdsuite.com/shows/sienna-dahlen-and-bill-coon/" } ], "http://schema.org/eventAttendanceMode": [ @@ -11535,31 +14337,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g465240" + "@id": "_:g478940" }, { - "@id": "_:g465260" + "@id": "_:g478960" }, { - "@id": "_:g465280" + "@id": "_:g478980" }, { - "@id": "_:g465300" + "@id": "_:g479000" } ], "http://schema.org/location": [ { - "@id": "_:g465320" + "@id": "_:g479020" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jim-Head-guitar-1-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Sienna-Dahlen-and-Bill-Coon-by-Ricardo-Hubbs-01-150x150.jpg" } ] }, { - "@id": "urn:uuid:e47326c0-0dd2-49f6-8b02-8fc8cfc8dcee", + "@id": "urn:uuid:27afb80b-3fca-4e9b-bb94-d4877e9e636a", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -11567,7 +14369,7 @@ ] }, { - "@id": "urn:uuid:4e60627d-0aeb-41c3-a659-61eda7b966aa", + "@id": "urn:uuid:1992882a-194b-400d-aa48-b0963b6a7af7", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -11575,7 +14377,7 @@ ] }, { - "@id": "urn:uuid:cce0bd78-a974-40f9-a11b-806d97365a43", + "@id": "urn:uuid:86d8d1b7-4f57-41e7-9221-a7c81186f348", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -11593,7 +14395,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/jim-head/#" + "@id": "https://yardbirdsuite.com/shows/sienna-dahlen-and-bill-coon/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -11711,35 +14513,35 @@ ] }, { - "@id": "urn:uuid:890f951f-fd8b-4133-ad90-40836fb923ff", + "@id": "urn:uuid:857ff0c1-06ef-4aca-9428-4de185346a3f", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "François Houle and Daniel Janke" + "@value": "The Get Downs" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-03T20:00:00-07:00" + "@value": "2024-02-10T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-03T22:30:00-07:00" + "@value": "2024-02-10T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "François Houle (clarinet) and Daniel Janke (piano) have released their first duo CD recording\r\nCrystalline." + "@value": "The Get Downs are one of Edmonton’s favourite retro party bands." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/francois-houle-and-daniel-janke/" + "@id": "https://yardbirdsuite.com/shows/the-get-downs/" } ], "http://schema.org/eventAttendanceMode": [ @@ -11754,31 +14556,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g466760" + "@id": "_:g482020" }, { - "@id": "_:g466780" + "@id": "_:g482040" }, { - "@id": "_:g466800" + "@id": "_:g482060" }, { - "@id": "_:g466820" + "@id": "_:g482080" } ], "http://schema.org/location": [ { - "@id": "_:g466840" + "@id": "_:g482100" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/thumbnail_Daniel_Francois_LiveStill_1-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/The-Get-Downs-01-150x150.jpg" } ] }, { - "@id": "urn:uuid:c1f60294-6dfc-41d7-a626-0478738c1810", + "@id": "urn:uuid:598ccb80-94e4-47b1-95dc-e0fefd3a5563", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -11786,7 +14588,7 @@ ] }, { - "@id": "urn:uuid:c706b874-96f7-453d-b253-907a258315e8", + "@id": "urn:uuid:a4d87b38-5fbb-430b-a4e5-71bc52728e8e", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -11794,7 +14596,7 @@ ] }, { - "@id": "urn:uuid:1b4e41b3-6242-4daf-9a7a-febe084efe1b", + "@id": "urn:uuid:590dccb8-01a8-40d9-b5c9-3c46d7cfce71", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -11812,7 +14614,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/francois-houle-and-daniel-janke/#" + "@id": "https://yardbirdsuite.com/shows/the-get-downs/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -11930,35 +14732,35 @@ ] }, { - "@id": "urn:uuid:0f930859-2902-4354-a192-4d6b92bd815a", + "@id": "urn:uuid:7af38adb-6807-452b-825d-7cf6a1fbfc4e", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "River City Big Band presents Jazzy Friends:" + "@value": "The Brenan Brothers Album Release" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-04T19:30:00-07:00" + "@value": "2024-02-15T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-04T22:30:00-07:00" + "@value": "2024-02-15T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Join River City Big Band for our tribute to a great friend and musical leader, Larry Schrum." + "@value": "The Brenan Brothers return with their second album featuring original music and arrangements of classic 1970's jazz." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/river-city-big-band-presents-jazzy-friends/" + "@id": "https://yardbirdsuite.com/shows/the-brenan-brothers-album-release/" } ], "http://schema.org/eventAttendanceMode": [ @@ -11973,31 +14775,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g468840" + "@id": "_:g484080" }, { - "@id": "_:g468860" + "@id": "_:g484100" }, { - "@id": "_:g468880" + "@id": "_:g484120" }, { - "@id": "_:g468900" + "@id": "_:g484140" } ], "http://schema.org/location": [ { - "@id": "_:g468920" + "@id": "_:g484160" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/River-City-Big-Band-01-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/The-Brenan-Brothers-150x150.jpg" } ] }, { - "@id": "urn:uuid:8ed4f9a1-8a93-4f11-bbf1-8a5f1d00930e", + "@id": "urn:uuid:030b398a-232a-419a-9f5b-9437b1dcf2f2", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -12005,7 +14807,7 @@ ] }, { - "@id": "urn:uuid:90eefa46-7b75-4fa6-8152-9e3f7e2e0c7c", + "@id": "urn:uuid:f93ec374-23df-4c42-a05f-ccf97e319385", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -12013,7 +14815,7 @@ ] }, { - "@id": "urn:uuid:3815c1d7-f793-4403-bfa0-7d179b57992f", + "@id": "urn:uuid:a8d4518f-ef16-44ed-8777-8fe08c271105", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -12031,7 +14833,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/river-city-big-band-presents-jazzy-friends/#" + "@id": "https://yardbirdsuite.com/shows/the-brenan-brothers-album-release/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -12149,35 +14951,35 @@ ] }, { - "@id": "urn:uuid:b64849ba-1240-4e90-9dba-2c0b65a1b0dc", + "@id": "urn:uuid:7d84dc15-d886-4fb5-9e24-fba430badb33", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "The Ladies of Jazz" + "@value": "Tony D with Dave Babcock and the Nightkeepers" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-08T20:00:00-07:00" + "@value": "2024-02-16T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-08T22:30:00-07:00" + "@value": "2024-02-16T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "This swinging band features an inventive mix of voice (the divine Jocelyn Anselmo), keys (virtuoso jazzman Simon Abbott), bass (the multi-talented Andreas Wegner), and an ingenious percussion section from tireless tap-dancing diva Paige Tirs." + "@value": "Tony D has been one of the premiere instrumentalists on the Canadian blues scene for a few decades now." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/the-ladies-of-jazz/" + "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers/" } ], "http://schema.org/eventAttendanceMode": [ @@ -12192,31 +14994,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g470720" + "@id": "_:g486200" }, { - "@id": "_:g470740" + "@id": "_:g486220" }, { - "@id": "_:g470760" + "@id": "_:g486240" }, { - "@id": "_:g470780" + "@id": "_:g486260" } ], "http://schema.org/location": [ { - "@id": "_:g470800" + "@id": "_:g486280" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Ladies-of-Jazz-01-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Tony-D-150x150.jpg" } ] }, { - "@id": "urn:uuid:a2d20cb1-05a1-4dfe-8879-904b9bcb2ca8", + "@id": "urn:uuid:2368ea13-1d21-4a08-b630-3070eecc1665", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -12224,7 +15026,7 @@ ] }, { - "@id": "urn:uuid:b8d266e9-5f3b-4180-a426-199610281873", + "@id": "urn:uuid:a8e4f791-3f0f-4378-8a7b-43e4b91c6995", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -12232,7 +15034,7 @@ ] }, { - "@id": "urn:uuid:18ced5cd-92af-4c14-ab4a-b4765fc3e6c0", + "@id": "urn:uuid:a394edf1-1f73-4671-b3f6-842fca49012b", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -12250,7 +15052,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/the-ladies-of-jazz/#" + "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -12368,35 +15170,35 @@ ] }, { - "@id": "urn:uuid:5c0d7a56-cfa2-499b-b130-c8243c42e996", + "@id": "urn:uuid:0ffc3903-ae4e-47a1-8e2c-d79120d7493b", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Sienna Dahlen and Bill Coon" + "@value": "Tony D with Dave Babcock and the Nightkeepers" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-09T20:00:00-07:00" + "@value": "2024-02-17T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-09T22:30:00-07:00" + "@value": "2024-02-17T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Montreal-based, BC-raised vocalist and composer, Sienna Dahlen and Vancouver-based, QC-raised guitarist and composer, Bill Coon share more than their respective love for these two beautiful Canadian provinces." + "@value": "Tony D has been one of the premiere instrumentalists on the Canadian blues scene for a few decades now." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/sienna-dahlen-and-bill-coon/" + "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers-2/" } ], "http://schema.org/eventAttendanceMode": [ @@ -12411,31 +15213,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g472800" + "@id": "_:g489320" }, { - "@id": "_:g472820" + "@id": "_:g489340" }, { - "@id": "_:g472840" + "@id": "_:g489360" }, { - "@id": "_:g472860" + "@id": "_:g489380" } ], "http://schema.org/location": [ { - "@id": "_:g472880" + "@id": "_:g489400" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Sienna-Dahlen-and-Bill-Coon-by-Ricardo-Hubbs-01-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Tony-D-02-150x150.jpg" } ] }, { - "@id": "urn:uuid:7a4cb571-f26f-47fa-9ee9-3be738ffa775", + "@id": "urn:uuid:0589b280-1fe8-4828-b5cd-b2e447fa8388", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -12443,7 +15245,7 @@ ] }, { - "@id": "urn:uuid:bacaeb63-0b4b-4572-8504-18e4a9db4920", + "@id": "urn:uuid:6164def0-4693-4a7c-b4cf-2b24de46cf0d", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -12451,7 +15253,7 @@ ] }, { - "@id": "urn:uuid:8ef1e2b2-25df-408d-bc7e-2cf39ae20445", + "@id": "urn:uuid:8e7f5c44-b2f7-4bd5-a628-ee6daa42baee", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -12469,7 +15271,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/sienna-dahlen-and-bill-coon/#" + "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers-2/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -12587,35 +15389,35 @@ ] }, { - "@id": "urn:uuid:4e541de1-0268-409b-a370-92a690a1208a", + "@id": "urn:uuid:e378fe87-8786-4726-9628-f06fc6ed30ab", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "The Get Downs" + "@value": "Mike Rud" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-10T20:00:00-07:00" + "@value": "2024-02-22T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-10T22:30:00-07:00" + "@value": "2024-02-22T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "The Get Downs are one of Edmonton’s favourite retro party bands." + "@value": " " } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/the-get-downs/" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/" } ], "http://schema.org/eventAttendanceMode": [ @@ -12630,31 +15432,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g474820" + "@id": "_:g492020" }, { - "@id": "_:g474840" + "@id": "_:g492040" }, { - "@id": "_:g474860" + "@id": "_:g492060" }, { - "@id": "_:g474880" + "@id": "_:g492080" } ], "http://schema.org/location": [ { - "@id": "_:g474900" + "@id": "_:g492100" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/The-Get-Downs-01-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Mike-Rud-150x150.jpg" } ] }, { - "@id": "urn:uuid:eea2a329-831c-41e7-842c-aedb69495ddd", + "@id": "urn:uuid:0d3666f9-7330-4e81-931b-0ac59a698967", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -12662,7 +15464,7 @@ ] }, { - "@id": "urn:uuid:47cb916d-3332-4e76-b747-bf2feffbd00b", + "@id": "urn:uuid:1ca04c9f-dc07-4364-ab08-001690331cfd", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -12670,7 +15472,7 @@ ] }, { - "@id": "urn:uuid:fb2bff03-e34c-463f-a702-8135b3a7d543", + "@id": "urn:uuid:fb186756-bea8-4280-b121-fccca025aa9c", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -12688,7 +15490,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/the-get-downs/#" + "@id": "https://yardbirdsuite.com/shows/mike-rud-2/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -12806,35 +15608,35 @@ ] }, { - "@id": "urn:uuid:4ff72cb1-4cd4-45af-a298-9490684b4132", + "@id": "urn:uuid:bd4b5a8a-6187-492a-ade3-ed2cf2e13582", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "The Brenan Brothers Album Release" + "@value": "Biboye Onanuga Quintet" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-15T20:00:00-07:00" + "@value": "2024-02-23T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-15T22:30:00-07:00" + "@value": "2024-02-23T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "The Brenan Brothers return with their second album featuring original music and arrangements of classic 1970's jazz." + "@value": " " } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/the-brenan-brothers-album-release/" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/" } ], "http://schema.org/eventAttendanceMode": [ @@ -12849,31 +15651,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g476880" + "@id": "_:g494880" }, { - "@id": "_:g476900" + "@id": "_:g494900" }, { - "@id": "_:g476920" + "@id": "_:g494920" }, { - "@id": "_:g476940" + "@id": "_:g494940" } ], "http://schema.org/location": [ { - "@id": "_:g476960" + "@id": "_:g494960" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/The-Brenan-Brothers-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Biboye-Onanuga-04-150x150.jpg" } ] }, { - "@id": "urn:uuid:5f1f2e9a-6727-4f83-98ca-e2ce85f057e9", + "@id": "urn:uuid:528c4b3e-258f-40d0-b2ff-b43b0f8d34dd", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -12881,7 +15683,7 @@ ] }, { - "@id": "urn:uuid:8faa5643-7227-4618-8bca-2a150952a35d", + "@id": "urn:uuid:254409ac-5962-4ca7-a73b-8e737e7bf79c", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -12889,7 +15691,7 @@ ] }, { - "@id": "urn:uuid:003ffca1-68fb-4f0f-b43c-a01ea5775893", + "@id": "urn:uuid:5e514392-1f70-47ac-bf98-589ef814eb5c", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -12907,7 +15709,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/the-brenan-brothers-album-release/#" + "@id": "https://yardbirdsuite.com/shows/biboye-onanuga-quintet/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -13025,35 +15827,35 @@ ] }, { - "@id": "urn:uuid:08bed99e-f621-4b94-b6a3-d05e79b4b076", + "@id": "urn:uuid:09e9a440-3e9f-4438-8e1f-9dc29cb3b186", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Tony D with Dave Babcock and the Nightkeepers" + "@value": "Emerging Artists Presents The Victors featuring Lise" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-16T20:00:00-07:00" + "@value": "2024-02-25T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-16T22:30:00-07:00" + "@value": "2024-02-25T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Tony D has been one of the premiere instrumentalists on the Canadian blues scene for a few decades now." + "@value": " " } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers/" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" } ], "http://schema.org/eventAttendanceMode": [ @@ -13068,31 +15870,26 @@ ], "http://schema.org/offers": [ { - "@id": "_:g478420" + "@id": "_:g497800" }, { - "@id": "_:g478440" + "@id": "_:g497820" }, { - "@id": "_:g478460" + "@id": "_:g497840" }, { - "@id": "_:g478480" + "@id": "_:g497860" } ], "http://schema.org/location": [ { - "@id": "_:g478500" - } - ], - "http://schema.org/image": [ - { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Tony-D-150x150.jpg" + "@id": "_:g497880" } ] }, { - "@id": "urn:uuid:e5efe007-515a-48da-938f-6040b605a324", + "@id": "urn:uuid:060348e4-4fc3-4bff-a15d-e77c202556e0", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -13100,7 +15897,7 @@ ] }, { - "@id": "urn:uuid:66594af4-56b9-4339-ae0b-11c0ff63eb87", + "@id": "urn:uuid:9c4d076e-8e96-40ce-ba83-1d4063dc5104", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -13108,7 +15905,7 @@ ] }, { - "@id": "urn:uuid:b3268273-e670-49a5-a4c8-04ba4cf09127", + "@id": "urn:uuid:ec21348d-af85-4e25-9866-312e6a883c29", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -13126,7 +15923,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers/#" + "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -13244,35 +16041,35 @@ ] }, { - "@id": "urn:uuid:d7769f8a-aecb-47d4-bc11-77f1e57880e8", + "@id": "urn:uuid:9372b990-83a9-4168-91f6-5ccc2251c991", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Tony D with Dave Babcock and the Nightkeepers" + "@value": "OKAN" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-17T20:00:00-07:00" + "@value": "2024-03-01T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-17T22:30:00-07:00" + "@value": "2024-03-01T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": "Tony D has been one of the premiere instrumentalists on the Canadian blues scene for a few decades now." + "@value": "Fusing Afro-Cuban roots with jazz, folk and global rhythms in songs about immigration, resistance and love, OKAN takes their name from the word for heart in their Afro-Cuban religion of Santeria." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers-2/" + "@id": "https://yardbirdsuite.com/shows/okan/" } ], "http://schema.org/eventAttendanceMode": [ @@ -13287,31 +16084,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g480500" + "@id": "_:g500840" }, { - "@id": "_:g480520" + "@id": "_:g500860" }, { - "@id": "_:g480540" + "@id": "_:g500880" }, { - "@id": "_:g480560" + "@id": "_:g500900" } ], "http://schema.org/location": [ { - "@id": "_:g480580" + "@id": "_:g500920" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Tony-D-02-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/OKAN-01-150x150.jpg" } ] }, { - "@id": "urn:uuid:fbb66b89-2b8c-4476-a666-039fe16d360e", + "@id": "urn:uuid:487dd48b-ba50-4d09-a66c-42b0863fd5fa", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -13319,7 +16116,7 @@ ] }, { - "@id": "urn:uuid:f3d099cb-65d8-471b-91a2-cb9ed81e65cb", + "@id": "urn:uuid:72760bee-7773-40e5-ba75-da31a1329e71", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -13327,7 +16124,7 @@ ] }, { - "@id": "urn:uuid:17baf1d7-76c6-4661-b95d-f5b5169ba37f", + "@id": "urn:uuid:4f30822b-8655-412d-bb41-ef42b9fb1479", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -13345,7 +16142,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/tony-d-with-dave-babcock-and-the-nightkeepers-2/#" + "@id": "https://yardbirdsuite.com/shows/okan/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -13463,35 +16260,35 @@ ] }, { - "@id": "urn:uuid:d8e1a17b-b5c0-47be-8896-24e2f059a96d", + "@id": "urn:uuid:0a6dbcf6-6a5b-42b0-b4e8-56216537b04d", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Emerging Artists Presents The Victors featuring Lise" + "@value": "RJ LeBlanc" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-25T20:00:00-07:00" + "@value": "2024-03-02T20:00:00-07:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-02-25T22:30:00-07:00" + "@value": "2024-03-02T22:30:00-07:00" } ], "http://schema.org/description": [ { - "@value": " " + "@value": "Montreal-based bassist RJ LeBlanc's newest project, Heyday, is an eclectic, highly-energetic band mixing finesse and feel-good in beautiful ways." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" } ], "http://schema.org/eventAttendanceMode": [ @@ -13506,26 +16303,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g482560" + "@id": "_:g503800" }, { - "@id": "_:g482580" + "@id": "_:g503820" }, { - "@id": "_:g482600" + "@id": "_:g503840" }, { - "@id": "_:g482620" + "@id": "_:g503860" } ], "http://schema.org/location": [ { - "@id": "_:g482640" + "@id": "_:g503880" + } + ], + "http://schema.org/image": [ + { + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6-150x150.jpg" } ] }, { - "@id": "urn:uuid:9a4ce4f4-2786-4ce6-810b-a088762ec016", + "@id": "urn:uuid:3be72607-1ef3-4052-97ce-c6466660a87b", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -13533,7 +16335,7 @@ ] }, { - "@id": "urn:uuid:52f637aa-8f6f-4c1d-b4d3-05610998cf3a", + "@id": "urn:uuid:40a217ee-c437-4600-bb3f-8535445c071b", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -13541,7 +16343,7 @@ ] }, { - "@id": "urn:uuid:bf8a2b48-b7fc-4c2d-b222-cb3c76604e64", + "@id": "urn:uuid:34cb79da-ac06-40bd-ba66-fdc75659f069", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -13559,7 +16361,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/emerging-artists-presents-the-victors-featuring-lise/#" + "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -13677,35 +16479,35 @@ ] }, { - "@id": "urn:uuid:22c3260b-2538-423b-8207-11e4124e7ad7", + "@id": "urn:uuid:360fc6b6-65bf-475f-8d66-4852103299a5", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "RJ LeBlanc" + "@value": "Benny Sharoni" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-02T20:00:00-07:00" + "@value": "2024-03-14T20:00:00-06:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-02T22:30:00-07:00" + "@value": "2024-03-14T22:30:00-06:00" } ], "http://schema.org/description": [ { - "@value": "Montreal-based bassist RJ LeBlanc's newest project, Heyday, is an eclectic, highly-energetic band mixing finesse and feel-good in beautiful ways." + "@value": "Tenor saxophonist Benny Sharoni is a U.S. bandleader, composer and arranger who is a mainstay on the international jazz scene." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" } ], "http://schema.org/eventAttendanceMode": [ @@ -13720,31 +16522,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g484580" + "@id": "_:g506420" }, { - "@id": "_:g484600" + "@id": "_:g506440" }, { - "@id": "_:g484620" + "@id": "_:g506460" }, { - "@id": "_:g484640" + "@id": "_:g506480" } ], "http://schema.org/location": [ { - "@id": "_:g484660" + "@id": "_:g506500" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Band-pic-6-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02-150x150.jpg" } ] }, { - "@id": "urn:uuid:2fd458f2-b393-46b0-846a-a1d13aadbe9f", + "@id": "urn:uuid:64d2f0b7-137a-4431-8dc2-781af68d44f5", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -13752,7 +16554,7 @@ ] }, { - "@id": "urn:uuid:35abe00e-1d73-4441-854b-20e49bca6fa5", + "@id": "urn:uuid:69e732d8-85a6-45fc-9f3d-ca7fb9b2ccca", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -13760,7 +16562,7 @@ ] }, { - "@id": "urn:uuid:a3a71717-7aa7-40bb-bfb6-e335c6ae3cb5", + "@id": "urn:uuid:4eadc69e-494e-43a6-9f8f-f04877be70f7", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -13778,7 +16580,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/rj-leblanc/#" + "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -13896,35 +16698,35 @@ ] }, { - "@id": "urn:uuid:baf255c4-419f-46c3-bac1-815a8daf86a6", + "@id": "urn:uuid:5bfabb30-ad48-4a9d-9bb2-b0d0751917a4", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Benny Sharoni" + "@value": "Jacob Do Octet" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-14T20:00:00-06:00" + "@value": "2024-03-28T20:00:00-06:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-14T22:30:00-06:00" + "@value": "2024-03-28T22:30:00-06:00" } ], "http://schema.org/description": [ { - "@value": "Tenor saxophonist Benny Sharoni is a U.S. bandleader, composer and arranger who is a mainstay on the international jazz scene." + "@value": "Jacob Do is a saxophonist, composer, and educator whose resonant and nuanced sound lendsitself to emotional storytelling through improvisation." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/" + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" } ], "http://schema.org/eventAttendanceMode": [ @@ -13939,31 +16741,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g486100" + "@id": "_:g509860" }, { - "@id": "_:g486120" + "@id": "_:g509880" }, { - "@id": "_:g486140" + "@id": "_:g509900" }, { - "@id": "_:g486160" + "@id": "_:g509920" } ], "http://schema.org/location": [ { - "@id": "_:g486180" + "@id": "_:g509940" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Benny-Sharoni-02-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02-150x150.jpg" } ] }, { - "@id": "urn:uuid:1c5241e7-d4b9-41ed-b1d4-073d905a2383", + "@id": "urn:uuid:f8b19a42-6bb1-4f20-9fae-f1620de1a102", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -13971,7 +16773,7 @@ ] }, { - "@id": "urn:uuid:4642fbca-cdba-4bee-a95f-5d2847d098c1", + "@id": "urn:uuid:c227bdd0-9c91-4ff2-811b-48057aa1daad", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -13979,7 +16781,7 @@ ] }, { - "@id": "urn:uuid:ff77e954-43e2-4306-95a1-d904f08c7189", + "@id": "urn:uuid:b8996712-48cb-48a6-ad56-2cc6eabd5679", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -13997,7 +16799,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/benny-sharoni/#" + "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -14115,35 +16917,35 @@ ] }, { - "@id": "urn:uuid:0457ea74-7b79-4392-abbe-baeb01e9dd52", + "@id": "urn:uuid:da0fd504-ca74-4141-88ad-6cde35fca359", "@type": [ "http://schema.org/Event" ], "http://schema.org/name": [ { - "@value": "Jacob Do Octet" + "@value": "John Hewitt" } ], "http://schema.org/startDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-28T20:00:00-06:00" + "@value": "2024-04-06T20:00:00-06:00" } ], "http://schema.org/endDate": [ { "@type": "http://schema.org/Date", - "@value": "2024-03-28T22:30:00-06:00" + "@value": "2024-04-06T22:30:00-06:00" } ], "http://schema.org/description": [ { - "@value": "Jacob Do is a saxophonist, composer, and educator whose resonant and nuanced sound lendsitself to emotional storytelling through improvisation." + "@value": "John Hewitt is often called the hardest working musician in Alberta." } ], "http://schema.org/url": [ { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/" + "@id": "https://yardbirdsuite.com/shows/john-hewitt/" } ], "http://schema.org/eventAttendanceMode": [ @@ -14158,31 +16960,31 @@ ], "http://schema.org/offers": [ { - "@id": "_:g488180" + "@id": "_:g512580" }, { - "@id": "_:g488200" + "@id": "_:g512600" }, { - "@id": "_:g488220" + "@id": "_:g512620" }, { - "@id": "_:g488240" + "@id": "_:g512640" } ], "http://schema.org/location": [ { - "@id": "_:g488260" + "@id": "_:g512660" } ], "http://schema.org/image": [ { - "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/Jacob-Do-2024-02-150x150.jpg" + "@id": "https://yardbirdsuite.com/wp-content/uploads/2024/01/John-Hewitt-03-150x150.jpg" } ] }, { - "@id": "urn:uuid:ad93b535-40df-4b98-a846-7104d4bbd687", + "@id": "urn:uuid:6a7f6863-7960-4202-9b9d-e10294236d64", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -14190,7 +16992,7 @@ ] }, { - "@id": "urn:uuid:433edece-8a79-418a-babf-15e98e49689f", + "@id": "urn:uuid:2630d89f-6a55-45fa-a66d-3018100e6017", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -14198,7 +17000,7 @@ ] }, { - "@id": "urn:uuid:fabb414b-60c1-481d-8c01-18247f76f806", + "@id": "urn:uuid:f23f5195-f69d-4e0d-82a8-4a0b0c6b98df", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -14216,7 +17018,7 @@ "@id": "https://yardbirdsuite.com/contact-us/" }, { - "@id": "https://yardbirdsuite.com/shows/jacob-do-octet/#" + "@id": "https://yardbirdsuite.com/shows/john-hewitt/#" }, { "@id": "https://yardbirdsuite.com/registration-checkout/?uts=1664126470&event_cart=view#checkout" @@ -14334,7 +17136,7 @@ ] }, { - "@id": "urn:uuid:1f109350-3c32-4249-8ccc-122df96626b2", + "@id": "urn:uuid:9f43dee9-3fc4-41ff-bf12-911161736616", "@type": [ "http://schema.org/Event" ], @@ -14377,21 +17179,21 @@ ], "http://schema.org/offers": [ { - "@id": "_:g490640" + "@id": "_:g515660" }, { - "@id": "_:g490660" + "@id": "_:g515680" }, { - "@id": "_:g490680" + "@id": "_:g515700" }, { - "@id": "_:g490700" + "@id": "_:g515720" } ], "http://schema.org/location": [ { - "@id": "_:g490720" + "@id": "_:g515740" } ], "http://schema.org/image": [ @@ -14401,7 +17203,7 @@ ] }, { - "@id": "urn:uuid:5784f4f7-cd01-4f1e-a880-5025218b4c70", + "@id": "urn:uuid:200bf6a9-6b66-4e19-ae3a-60d59c6705aa", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -14409,7 +17211,7 @@ ] }, { - "@id": "urn:uuid:55c84cc8-e9cb-4938-b3d4-57386b3a60b4", + "@id": "urn:uuid:956dd10e-dc39-4e8d-b9e9-fa0ea7a6a60f", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -14417,7 +17219,7 @@ ] }, { - "@id": "urn:uuid:f3a10ac2-aed1-4c08-9ab8-8ec3408d7019", + "@id": "urn:uuid:d1bcb4f9-3cdf-4424-8023-f86589500358", "@type": [ "http://www.schema.org/SiteNavigationElement" ], @@ -14553,7 +17355,7 @@ ] }, { - "@id": "urn:uuid:0003f521-a09c-48c2-b13e-30b0508554fd", + "@id": "urn:uuid:b629b3f4-3e06-4f1e-a307-f9a9f34aac20", "@type": [ "http://schema.org/Event" ], @@ -14596,21 +17398,21 @@ ], "http://schema.org/offers": [ { - "@id": "_:g492700" + "@id": "_:g519100" }, { - "@id": "_:g492720" + "@id": "_:g519120" }, { - "@id": "_:g492740" + "@id": "_:g519140" }, { - "@id": "_:g492760" + "@id": "_:g519160" } ] }, { - "@id": "urn:uuid:52f6e226-7ef4-4db4-85b9-a8cb45b15d2b", + "@id": "urn:uuid:fabefd3d-d3b2-4f66-b35d-e31f71120ef1", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" @@ -14618,7 +17420,7 @@ ] }, { - "@id": "urn:uuid:6a017c51-c9b6-4d2a-9598-f532a8bd34a2", + "@id": "urn:uuid:0295ba76-02cb-4deb-afc6-683aec96b924", "http://www.w3.org/1999/xhtml/vocab#role": [ { "@id": "http://www.w3.org/1999/xhtml/vocab#document" @@ -14626,7 +17428,7 @@ ] }, { - "@id": "urn:uuid:21198afd-e9d4-43cb-a27e-cfe7f6892605", + "@id": "urn:uuid:9a1a6d65-4f3b-43ed-8536-97a3a442b617", "@type": [ "http://www.schema.org/SiteNavigationElement" ], From 7d6043e7d8aff69dc4634e644b64a23908361101 Mon Sep 17 00:00:00 2001 From: dev Date: Thu, 18 Jan 2024 17:56:21 +0530 Subject: [PATCH 3/4] Added unit tests and SPARQL to fix blank nodes, fix type objects --- tests/fix_entity_type_test.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/fix_entity_type_test.rb b/tests/fix_entity_type_test.rb index 781134c..8242ca5 100644 --- a/tests/fix_entity_type_test.rb +++ b/tests/fix_entity_type_test.rb @@ -3,13 +3,12 @@ class SparqlTest < Minitest::Test - # Load and parse sparql def setup @fix_entity_type_sparql_file = "./sparql/fix_entity_type.sparql" @replace_blank_node_sparql_file = "./sparql/replace_blank_nodes.sparql" end - # check that the blank node is replaced + # check that the type object is fixed def test_capitalized_first_letter sparql = SPARQL.parse(File.read(@fix_entity_type_sparql_file), update: true) graph = RDF::Graph.load("./tests/fixtures/test_capital_types.jsonld") From dc57c02974d3682cbd6566543c86c99f161f3429 Mon Sep 17 00:00:00 2001 From: dev Date: Thu, 25 Jan 2024 18:21:30 +0530 Subject: [PATCH 4/4] Added sparqls and unit test to fix data --- .github/workflows/japanesecanadianartists.yml | 45 - output/japanesecanadianartists.jsonld | 88189 ---------------- sparql/add_derived_from.sparql | 16 + sparql/fix_date.sparql | 17 + sparql/fix_entity_type.sparql | 7 +- src/main.rb | 52 +- tests/fixtures/test_date.jsonld | 33 + tests/{fix_entity_type_test.rb => test.rb} | 15 + 8 files changed, 115 insertions(+), 88259 deletions(-) delete mode 100644 .github/workflows/japanesecanadianartists.yml delete mode 100644 output/japanesecanadianartists.jsonld create mode 100644 sparql/add_derived_from.sparql create mode 100644 sparql/fix_date.sparql create mode 100644 tests/fixtures/test_date.jsonld rename tests/{fix_entity_type_test.rb => test.rb} (66%) diff --git a/.github/workflows/japanesecanadianartists.yml b/.github/workflows/japanesecanadianartists.yml deleted file mode 100644 index dba91e8..0000000 --- a/.github/workflows/japanesecanadianartists.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Fetch JapaneseCanadianArtists - -on: - workflow_dispatch: - schedule: - - cron: '0 0 1 */6 *' - -jobs: - fetch-and-commit-data: - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - bundler-cache: true - - name: Run Main Script - run: | - bundle exec ruby src/main.rb \ - https://japanesecanadianartists.com/artist/ \ - "div.entry-thumbnail a" \ - output/japanesecanadianartists.jsonld \ - false - - - name: Commit and Push Changes - run: | - git config --local user.email "actions@github.com" - git config --local user.name "GitHub Actions" - git add "output/japanesecanadianartists.jsonld" - git commit -m "Add data generated by the script" - git push - - artsdata-push: - needs: fetch-and-commit-data - uses: culturecreates/artsdata-planet-ipaa/.github/workflows/push-entities-to-artsdata.yml@main - with: - artifact_name: japanesecanadianartists-com - entity_url: https://japanesecanadianartists.com/artist/ - download_url: https://raw.githubusercontent.com/culturecreates/artsdata-orion/main/output/japanesecanadianartists.jsonld - download_file: japanesecanadianartists.jsonld - secrets: - publisher_uri: ${{ secrets.PUBLISHER_URI_GREGORY }} diff --git a/output/japanesecanadianartists.jsonld b/output/japanesecanadianartists.jsonld deleted file mode 100644 index ca259f1..0000000 --- a/output/japanesecanadianartists.jsonld +++ /dev/null @@ -1,88189 +0,0 @@ -[ - { - "@id": "https://japanesecanadianartists.com/artist/mitch-miyagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mitch Miyagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mitch-miyagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mitch Miyagawa is a filmmaker and writer known for his 2012 documentary A Sorry State. A Sorry State won the Writers’ Guild of Canada Screenwriting Award for Documentary in 2013. It was commi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-19T05:16:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:35:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Miyagawa_Mitch_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g456200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g456540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitch-miyagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitch-miyagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitch-miyagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g457000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitch-miyagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linz-kenyon/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Linz Kenyon" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/linz-kenyon/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lindsay ‘Linz’ Kenyon is a writer, composer, actor, and musician. He has released four albums, published poems and stories, acted in film, theatre, and radio, and written many plays. Kenyon grew up…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:30:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:56:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Record_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g457940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g457980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linz-kenyon/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linz-kenyon/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linz-kenyon/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g458440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linz-kenyon/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-makabe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tomoko Makabe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tomoko-makabe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tomoko Makabe is the author of Picture Brides: Japanese Women in Canada and The Canadian Sansei, two non-fiction books on Japanese Canadians. Born in Japan, Makabe became a writer, researcher, and …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:58:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:38:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Makabe_Tomoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g458580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g458620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-makabe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-makabe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-makabe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g459040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-makabe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shin-sugino/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shin Sugino" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shin-sugino/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shin Sugino is a renowned photographer with an extensive body of work in both commercial and art photography. Born in Japan and raised by French nuns, Sugino originally studied to become a priest, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:40:43+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T23:03:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sugino_S_600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g460100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g460440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shin-sugino/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shin-sugino/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shin-sugino/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g461000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shin-sugino/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g461380", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g461480" - }, - { - "@id": "_:g461500" - }, - { - "@id": "_:g461520" - } - ] - }, - { - "@id": "_:g461480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/15-Snake-charmer-Jemaar-el-Fnaa-Marrakech_5276._1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/15-Snake-charmer-Jemaar-el-Fnaa-Marrakech_5276._1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g461500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sugino_S_600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sugino_S_600.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g461520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/pil.4533_1000.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/pil.4533_1000.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-wuest/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Donna Wuest" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/donna-wuest/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Donna Yoshitake Wuest has been a professional writer/author for more than 40 years. Born in Vernon, BC, she grew up on the Coldstream Ranch where her parents worked primarily in the orchards. Decad…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T20:17:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:58:19+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g462260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g462300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-wuest/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-wuest/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-wuest/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g462740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-wuest/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g463140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g463200" - } - ] - }, - { - "@id": "_:g463200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2016-02-23-16.54.41_resized.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2016-02-23-16.54.41_resized.png?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-fraser/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kimiko Fraser" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kimiko-fraser/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kimiko Fraser is an illustrator and historian-in-training based on the beautiful West Coast of British Columbia. She grew up constantly making—drawing, painting, knitting, sculpting, bookbinding et…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-08-13T21:15:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-25T23:30:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/08/IMG_1620.jpg?fit=1200%2C1142&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1142" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g464060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g464400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-fraser/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-fraser/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-fraser/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g465120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-fraser/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-ishii/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Margaret Ishii" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/margaret-ishii/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Margaret Ishii is a Toronto-based architect and university lecturer in interior design. She holds degrees in Environmental Studies and Architecture from the University of Waterloo, and has over thi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:54:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:32:47+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_06_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g465240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g465280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-ishii/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-ishii/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-ishii/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g465680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-ishii/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gerry-shikatani/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Gerry Shikatani" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/gerry-shikatani/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Gerry Shikatani is a poet, food critic, and interdisciplinary artist. Born and raised in Toronto, he has lived in Montreal and Paris, France, and travelled extensively in Europe and more recently J…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T22:42:04+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:34:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shikatani_Gerry_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g466040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g466080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gerry-shikatani/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gerry-shikatani/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gerry-shikatani/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g466420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gerry-shikatani/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-yamashita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takashi Yamashita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takashi-yamashita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takashi Yamashita is an architect who operates in the corporate world of commercial real estate, finance, and development. A partner and president at Takol Real Estate in Toronto, he is also a memb…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T19:12:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:53:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamashita_Takashi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g467220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g467560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-yamashita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-yamashita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-yamashita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g467780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-yamashita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-toyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mark Toyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mark-toyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mark Toyama was a Nisei writer who published several popular works in The New Canadian prior to his early death. He was perhaps best known for his poem “powell st,” first published in The New Canad…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-13T17:15:46+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-10T01:49:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Toyama_M_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g468640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g468680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-toyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-toyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-toyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g469140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-toyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-sawai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Noboru Sawai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/noboru-sawai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Noboru Sawai was an American- and Japanese-trained printmaker whose work was exhibited all over the world, including in Canada, Japan, Italy, and Israel. He was born in Takamatsu, Japan, and immigr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T23:45:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:33:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sawai_Noboru_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g470200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g470540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-sawai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-sawai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-sawai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g470940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-sawai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-oyama-peerless/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yukari Oyama Peerless" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yukari-oyama-peerless/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yukari is a multi-talented creative based in Victoria, BC, with a passion for bridging the gap between Japanese and Canadian cultures. She is a writer, interpreter, podcaster, watercolor artist, an…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-11T19:29:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-03-30T16:38:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/F8CEF5DE-42F2-4C90-8549-88847630FC7C.jpg?fit=1113%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1113" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Yukari Peerless" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g471960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g472300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-oyama-peerless/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-oyama-peerless/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-oyama-peerless/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g473040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-oyama-peerless/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-yamashiro/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takeo Yamashiro" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takeo-yamashiro/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takeo Yamashiro is a shakuhachi master who has lived and practiced his music in Canada since 1972. Prior to his arrival in Vancouver, Yamashiro trained under and played with two Kyoto Masters, Shuz…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T19:35:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T20:34:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamashiro_Takeo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g473400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g473440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-yamashiro/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-yamashiro/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-yamashiro/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g473860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-yamashiro/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kenji-fujino/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "David Kenji Fujino" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/david-kenji-fujino/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "David Fujino was a multidisciplinary Sansei artist who wrote poetry in the form of concrete visual poetry; he was also an actor and a writer of reviews, interviews, and opinion pieces.  Born in the…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:48:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-07-26T20:25:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Fujino_David_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g474660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g475000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kenji-fujino/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kenji-fujino/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kenji-fujino/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g475420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kenji-fujino/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-onami/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Onami" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-onami/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Onami is a retired graphic designer and painter. Born in Vancouver, Onami, his mother, and siblings were forcibly removed from the coast in 1942 and sent to live in Sandon internment camp. Thei…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:40:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:42:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Onami_Roy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g476280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g476460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-onami/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-onami/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-onami/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g477040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-onami/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g477420", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g477520" - }, - { - "@id": "_:g477540" - }, - { - "@id": "_:g477560" - } - ] - }, - { - "@id": "_:g477520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC5493-120.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC5493-120.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g477540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC5495-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC5495-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g477560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC5498-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC5498-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/a-katsuyoshi-morita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Katsuyoshi Morita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/a-katsuyoshi-morita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Katsuyoshi Morita was the author of Powell Street Monogatari, a chronicle of stories from the prewar Japanese Canadian neighbourhood of Powell Street and Morita’s experiences in the internment camp…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:35:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:57:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Morita_K_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g478400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g478740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/a-katsuyoshi-morita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/a-katsuyoshi-morita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/a-katsuyoshi-morita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g479180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/a-katsuyoshi-morita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerry-nagata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kerry Nagata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kerry-nagata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kerry Nagata is a Calgary-based architect. He holds a BA in Urban Geography from the University of Alberta and a Master of Environmental Design in Architecture from the University of Calgary. Early…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:47:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:33:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nagata_Kerri_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g480180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g480520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerry-nagata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerry-nagata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerry-nagata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g480900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerry-nagata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/saeko-usukawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Saeko Usukawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/saeko-usukawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Saeko Usukawa was an editor for everything from alternative-culture magazines to major publishing house Douglas & McIntyre. Born in Lemon Creek internment camp, Saeko grew up in Toronto. After …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:28:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:15:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Usukawa_S_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g481260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g481300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/saeko-usukawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/saeko-usukawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/saeko-usukawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g481600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/saeko-usukawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-izumi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kiyoshi Izumi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kiyoshi-izumi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kiyoshi Izumi was a Nisei architect who spent most of his career in Saskatchewan, where he designed many notable buildings in the province, particularly during the 1960s, as part of his firm Izumi,…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:27:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T18:58:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Izumi_Kiyoshi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g482400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g482720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-izumi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-izumi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-izumi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g483060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-izumi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g483280", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g483340" - } - ] - }, - { - "@id": "_:g483340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/KiyoshiIzumiUM-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/KiyoshiIzumiUM-W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nagata-shachu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nagata Shachu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nagata-shachu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nagata Shachu, based in Toronto, Canada, has enthralled audiences with its mesmerizing and heart-pounding performances of the Japanese drum (taiko) since its formation in 1998. The group has toured…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-30T18:54:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-10T23:50:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Nagata-Shachu-2021-scaled.jpg?fit=1200%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g484100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g484440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nagata-shachu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nagata-shachu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nagata-shachu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g485140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nagata-shachu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shun-sasabuchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shun Sasabuchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shun-sasabuchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shun Sasabuchi is a photographer. He was born in Tokyo, Japan in 1951 and moved to Toronto, Canada in 1969 at the age of 18. He graduated from the Graphic Design Department at the Ontario College o…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T21:02:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:19:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sasabuchi_Shun_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g486320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g486660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shun-sasabuchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shun-sasabuchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shun-sasabuchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g487160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shun-sasabuchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g487360", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g487460" - }, - { - "@id": "_:g487480" - }, - { - "@id": "_:g487500" - } - ] - }, - { - "@id": "_:g487460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2014_05_02_144423.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2014_05_02_144423.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g487480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2014_05_06_124742.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2014_05_06_124742.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g487500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2014_05_17_133225.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2014_05_17_133225.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kasha-konaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kasha Konaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kasha-konaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kasha is a circus artist from Vancouver, Canada. She specializes in contortion acrobatics and has performed extensively in the Greater Vancouver Area for various corporate events and productions." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-01-19T18:37:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-11-24T21:48:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g488360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g488700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kasha-konaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kasha-konaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kasha-konaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g489240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kasha-konaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g489460", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g489560" - }, - { - "@id": "_:g489580" - }, - { - "@id": "_:g489600" - } - ] - }, - { - "@id": "_:g489560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/kasha2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/kasha2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g489580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/kasha.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/kasha.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g489600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/BOB_2859.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/BOB_2859.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-mizukoshi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shinobu Mizukoshi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shinobu-mizukoshi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shinobu Mizukoshi specializes in Japanese-style handmade fabric objects such as coasters, pouches, placemats and accessories. Original designs are handmade by Shinobu with materials exclusively imp…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:27:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:27:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g489760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g489820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-mizukoshi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-mizukoshi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-mizukoshi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g490180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-mizukoshi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g490220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g490280" - } - ] - }, - { - "@id": "_:g490280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_1569.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_1569.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-ohama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Linda Ohama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/linda-ohama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Linda Ohama is a filmmaker (producer and director) with an extensive history of integrating community, historical, and social justice initiatives in and around her films. She is also well known for…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:45:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:27:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ohama_Linda_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g491080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g491400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-ohama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-ohama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-ohama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g492120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-ohama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g492520", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g492680" - }, - { - "@id": "_:g492700" - }, - { - "@id": "_:g492720" - }, - { - "@id": "_:g492740" - }, - { - "@id": "_:g492760" - }, - { - "@id": "_:g492780" - } - ] - }, - { - "@id": "_:g492680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSCF5024-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSCF5024-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g492700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/filming-on-location-Fukushima-mothers-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/filming-on-location-Fukushima-mothers-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g492720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Linda-with-Tohoku-fishermen-buy-lifejackets-with-Alaska-USA-fishermen-to-Tohoku-fishermen-direct-donation-2011-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Linda-with-Tohoku-fishermen-buy-lifejackets-with-Alaska-USA-fishermen-to-Tohoku-fishermen-direct-donation-2011-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g492740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/linda-works-with-tohoku-kids-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/linda-works-with-tohoku-kids-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g492760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/onomichi-screening-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/onomichi-screening-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g492780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/post-production-Vancouver-team-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/post-production-Vancouver-team-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sharon-sasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sharon Sasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sharon-sasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Family Physician, Visual collage artist, Science Fiction Author. Visual art focuses on creating abstract or impressionistic images depicting creatures both real and imaginary in collage using Japan…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-24T17:21:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:22:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Sasaki_IMG_1184_700.jpg?fit=768%2C1024&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "768" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1024" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g493620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g493960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sharon-sasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sharon-sasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sharon-sasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g494600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sharon-sasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g494960", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g495060" - }, - { - "@id": "_:g495080" - }, - { - "@id": "_:g495100" - } - ] - }, - { - "@id": "_:g495060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_1143_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_1143_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g495080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_1194_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_1194_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g495100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_3124_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_3124_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-tamagi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Daniel Tamagi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/daniel-tamagi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "With over a decade of experience under his belt, The FloWarrior has earned a reputation as one of Canada’s top fire and flow arts performers. Fusing his passion for dance, martial arts and mu…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-14T19:20:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-14T19:24:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/Daniel_Headshots_Downres-1_edited-scaled.jpg?fit=801%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "801" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Daniel Tamagi-FloWarrior" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g495960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g496300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-tamagi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-tamagi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-tamagi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g496920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-tamagi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pj-patten/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "PJ Patten" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/pj-patten/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "PJ Patten is a self-taught graphic illustrator, tattoo artist, and poet whose work is influenced by the intersection of his Japanese heritage with his American military upbringing. Patten’s parents…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-07-07T22:37:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-07-07T22:41:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/07/Headshot.jpeg?fit=960%2C960&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "PJ Patten" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g497800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g498140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pj-patten/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pj-patten/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pj-patten/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g498660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pj-patten/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/troy-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Troy Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/troy-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Troy Suzuki is a filmmaker whose work includes documentary, drama, and experimental video, with humour as a key component in his work. He studied fine art at Concordia and Emily Carr, and his work …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:05:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:22:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Suzuki_Troy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g499260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g499320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/troy-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/troy-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/troy-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g499740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/troy-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g500140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g500240" - }, - { - "@id": "_:g500300" - }, - { - "@id": "_:g500360" - } - ] - }, - { - "@id": "_:g500240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/hockey_9x7e_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/hockey_9x7e_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g500300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_5883_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_5883_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g500360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SDC10095-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SDC10095-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teresa-kobayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Teresa Kobayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/teresa-kobayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Teresa Kobayashi is a master koto player, the daughter of renowned koto sensei Miyoko Kobayashi. She also plays the shamisen and shakuhachi and danced odori for 27 years. As a child, she was primar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-10T23:51:22+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:51:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_05_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g501240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g501580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teresa-kobayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teresa-kobayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teresa-kobayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g502080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teresa-kobayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-yamashita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Robert Yamashita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/robert-yamashita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Robert Noboru Yamashita is a retired architect. He worked for the City of Toronto from 1968 to 2000, where he was the lead figure for homelessness, poverty, mental health, and housing issues. He is…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-05T05:58:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:52:44+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamashita_R_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g503120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g503460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-yamashita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-yamashita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-yamashita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g504080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-yamashita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g504460", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g504600" - }, - { - "@id": "_:g504620" - }, - { - "@id": "_:g504640" - }, - { - "@id": "_:g504660" - }, - { - "@id": "_:g504680" - } - ] - }, - { - "@id": "_:g504600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/20170514_091404_resized_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/20170514_091404_resized_1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g504620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141212_140852_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141212_140852_1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g504640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141212_140941_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141212_140941_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g504660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141214_081508_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141214_081508_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g504680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141214_081851_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_20141214_081851_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takao-tanabe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takao Tanabe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takao-tanabe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takao Tanabe is among the first wave of prominent Nisei Canadian artists, with a sixty-year painting career that still continues today. Born in Prince Rupert, BC to a fishing family, Tanabe was for…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T21:27:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:30:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tanabe_Takao_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g505520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g505860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takao-tanabe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takao-tanabe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takao-tanabe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g506220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takao-tanabe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/colleen-lanki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Colleen Lanki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/colleen-lanki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Colleen Lanki has been directing, choreographing and performing internationally for over two decades in shows of every variety. She has a BFA in Theatre Performance from Toronto’s York University a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-25T20:29:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:18:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/ColleenGreenStanding_800.jpg?fit=800%2C904&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "904" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g507080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g507420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/colleen-lanki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/colleen-lanki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/colleen-lanki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g507900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/colleen-lanki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/arthur-nishimura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Arthur Nishimura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/arthur-nishimura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Arthur Nishimura is a photographer. He was born in the small, rural town of Raymond in Southern Alberta. His parents were immigrants to the area in the late 1910s. Photography was adopted by his fa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T22:41:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:34:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Tintagel-Cornwall-Dec.-24-1982-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g508360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g508700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/arthur-nishimura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/arthur-nishimura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/arthur-nishimura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g509200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/arthur-nishimura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g509580", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g509680" - }, - { - "@id": "_:g509700" - }, - { - "@id": "_:g509720" - } - ] - }, - { - "@id": "_:g509680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Widow-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Widow-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g509700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Tintagel-Cornwall-Dec.-24-1982-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Tintagel-Cornwall-Dec.-24-1982-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g509720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Near-Jaiselmer-Rajasthan-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishimura-Near-Jaiselmer-Rajasthan-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamai-kobayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tamai Kobayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tamai-kobayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tamai Kobayashi is a Toronto-based writer of short stories, poetry, screenplays, and a novel, Prairie Ostrich. Prairie Ostrich, which follows eight-year-old Egg Murakami and her family on their ost…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:06:48+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-01T19:07:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/headshot-1-scaled.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g510560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g510900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamai-kobayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamai-kobayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamai-kobayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g511480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamai-kobayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g511700", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g511800" - }, - { - "@id": "_:g511820" - }, - { - "@id": "_:g511840" - } - ] - }, - { - "@id": "_:g511800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DS_3882_900-e1633115226765.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DS_3882_900-e1633115226765.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g511820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Later-In-the-Life-Still-4.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Later-In-the-Life-Still-4.png?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g511840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/headshot-1-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/headshot-1-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tashme-productions/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tashme Productions" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tashme-productions/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "“The Tashme Project” is a 75-minute verbatim theatre piece that traces the history and common experience of the Nisei through childhood, WWII internment and post-war resettlement east of the Rockie…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-07-27T19:28:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:10:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g512680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g513020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tashme-productions/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tashme-productions/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tashme-productions/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g513560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tashme-productions/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g513940", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g514020" - }, - { - "@id": "_:g514040" - } - ] - }, - { - "@id": "_:g514020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/07/Tashme-M_J-with-projections_MAIprod.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/07/Tashme-M_J-with-projections_MAIprod.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g514040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/07/2_MAIproduction_TheTashmeProject.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/07/2_MAIproduction_TheTashmeProject.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masaki-watanabe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Masaki Watanabe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/masaki-watanabe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Masaki Watanabe is a journalist/translator and a jazz musician with an international background. Born in Tokyo in 1945 to a Japanese Finnish father and a Japanese mother, he graduated from Internat…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:35:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:42:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Watanabe_M_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g514880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g515220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masaki-watanabe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masaki-watanabe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masaki-watanabe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g515740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masaki-watanabe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-washimoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lily Washimoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lily-washimoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lily Washimoto was a popular Nisei lyric soprano singer in Vancouver in the late 1930s and early 1940s. She performed at the 1939 Vancouver Folk Fest and was a featured soloist on the CBC’s broadca…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T23:17:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:40:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g516780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g517040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-washimoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-washimoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-washimoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g517440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-washimoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miya/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Miya" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-miya/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Miya is a musician who was born in 1925, Vancouver. At the age of 16, he first heard Vernon Hakkaku on piano playing Amapola, written by Joseph Lacalle, while on a boat on the Skeena River. Roy…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:49:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:25:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_07_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g518500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g518840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miya/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miya/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miya/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g519340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miya/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-jane-miki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kayo Jane Miki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kayo-jane-miki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kayo Jane Miki is a violinist. Born in Nanaimo, British Columbia, she began her violin studies at age nine. As a high school student she earned her diploma from the Interlochen Arts Academy and the…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:39:10+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T20:40:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Miki_Kayo_Jane_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g520380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g520720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-jane-miki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-jane-miki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-jane-miki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g521080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-jane-miki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ohama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ohama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ohama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tona Walt Ohama is a composer and performer of electronic synth music who records music in an isolated underground studio on his family’s potato farm in rural Alberta. He has played synthesizers si…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:45:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:28:30+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ohama_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g522120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g522460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ohama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ohama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ohama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g522800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ohama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fubuki-daiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Fubuki Daiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/fubuki-daiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Fubuki Daiko (Blizzard Drums) is a professional Japanese taiko group founded in Winnipeg in 1995. Three of the group’s members (Hiroshi Koshiyama, Naomi Guilbert, and Bruce Robertson) received thei…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:55:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:27:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Fubuki2_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g522960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g523120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fubuki-daiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fubuki-daiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fubuki-daiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g523660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fubuki-daiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g524040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g524140" - }, - { - "@id": "_:g524160" - }, - { - "@id": "_:g524180" - } - ] - }, - { - "@id": "_:g524140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/4-josuke-blur-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/4-josuke-blur-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g524160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Fubuki-Daiko-2013-9750-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Fubuki-Daiko-2013-9750-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g524180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Fubuki-Daiko-2013-9894-H-N-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Fubuki-Daiko-2013-9894-H-N-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randall-okita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Randall Okita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/randall-okita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Randall Okita is a Canadian visual artist and filmmaker whose work employs sculpture, technology, physically challenging performances or stunt-work, and rich cinematography. His work has been shown…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-02T02:30:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:43:30+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g525020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g525360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randall-okita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randall-okita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randall-okita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g526200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randall-okita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g526580", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g526740" - }, - { - "@id": "_:g526760" - }, - { - "@id": "_:g526780" - }, - { - "@id": "_:g526800" - }, - { - "@id": "_:g526820" - }, - { - "@id": "_:g526840" - } - ] - }, - { - "@id": "_:g526740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/024-randall-okita-things-i-cant-tell-you.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Randall Okita’s “Things I Can’t Tell You” Toronto – 2015 " - } - ], - "http://schema.org/description": [ - { - "@value": " Randall Okita’s “Things I Can’t Tell You” Toronto – 2015 " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/024-randall-okita-things-i-cant-tell-you.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g526760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/030-randall-okita-things-i-cant-tell-you.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Randall Okita’s “Things I Can’t Tell You” Toronto – 2015 " - } - ], - "http://schema.org/description": [ - { - "@value": " Randall Okita’s “Things I Can’t Tell You” Toronto – 2015 " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/030-randall-okita-things-i-cant-tell-you.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g526780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/No-Contract_Randall-Okita_4.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/No-Contract_Randall-Okita_4.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g526800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Portrait_Okita_Final_1920x1080-ProResHQ.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Portrait_Okita_Final_1920x1080-ProResHQ.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g526820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/WMSB_OKITA_00.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/WMSB_OKITA_00.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g526840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/WMSB_OKITA_11.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/WMSB_OKITA_11.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warabe-aska/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Warabe Aska" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/warabe-aska/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Warabe Aska is a painter and children’s book illustrator." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:05:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:23:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Warabe_Aska_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g527680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g528020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warabe-aska/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warabe-aska/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warabe-aska/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g528480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warabe-aska/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruo-adachi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Teruo Adachi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/teruo-adachi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Teruo (Terry) Adachi was born in Port Coquitlam, British Columbia. Life took him to Tottori-ken, Japan (ages 6 to 10), Vancouver, B.C. (his teen years), Jackfish and Valetta, Ontario work/farm camp…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T21:53:32+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:51:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Adachi_Terry_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g529500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g529840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruo-adachi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruo-adachi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruo-adachi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g530180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruo-adachi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-yoko-hartmann/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Suzanne Elki Yoko Hartmann" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/suzanne-yoko-hartmann/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Suzanne Elki Yoko Hartmann began her trek through the wilds of media in live television at Citytv and later at CBC, before journeying to print, web and digital. As a freelance writer, her articles …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-23T03:38:07+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T22:39:27+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g531220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g531560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-yoko-hartmann/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-yoko-hartmann/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-yoko-hartmann/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g531980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-yoko-hartmann/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g532020", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g532080" - } - ] - }, - { - "@id": "_:g532080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/BookCoverImage.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/BookCoverImage.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-matsuzaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kiyoshi Matsuzaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kiyoshi-matsuzaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kiyoshi Matsuzaki was an architect. He was born in Shanghai, China to parents from Steveston, BC, and grew up in Tokyo. At age 18, Matsuzaki began his architectural studies at the Rhode Island Scho…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:21:43+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:51:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Matsuzaki_Kiyoshi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g532220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g532380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-matsuzaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-matsuzaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-matsuzaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g532820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoshi-matsuzaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g533220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g533340" - }, - { - "@id": "_:g533400" - }, - { - "@id": "_:g533460" - }, - { - "@id": "_:g533520" - } - ] - }, - { - "@id": "_:g533340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Matsuzaki_Kiyoshi_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Matsuzaki_Kiyoshi_W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g533400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scan_20170626-2-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scan_20170626-2-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g533460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scan_20170626-3-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scan_20170626-3-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g533520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scan_20170626-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scan_20170626-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kan-azuma/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kan Azuma" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kan-azuma/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born in Japan in 1946, Kan Azuma studied photography in Tokyo in the mid-1960s before moving to Canada in 1970. The majority of his work was based in Toronto, but he also spent some time in Vancouv…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-01-17T20:05:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:17:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/01/ngc_.ex-76-295_web.jpg?fit=1000%2C693&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1000" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "693" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g534400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g534740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kan-azuma/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kan-azuma/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kan-azuma/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g535280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kan-azuma/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stafford-arima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Stafford Arima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/stafford-arima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "STAFFORD ARIMA is the Artistic Director at Theatre Calgary. Born and raised in Toronto, Arima thrived in the New York theatre scene for over 20 years. In 2015, he became the first Asian Canadian to…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-08-06T23:14:48+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:34:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/08/SA-TC-hi-res-copy-scaled.jpg?fit=1200%2C900&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g536340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g536680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stafford-arima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stafford-arima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stafford-arima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g537280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stafford-arima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nicole-yukiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nicole Yukiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nicole-yukiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nicole Yukiko (Sekiya) is a Vancouver-based performer and creator. She has earned a BFA in acting from UBC as well as a diploma in performance studies from Mount Royal University. Nicole’s fo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-21T07:45:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:32:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Nicole_Yukiko_1200.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g538320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g538660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nicole-yukiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nicole-yukiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nicole-yukiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g539000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nicole-yukiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/james-jun-jim-koyanagi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "James Jun (Jim) Koyanagi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/james-jun-jim-koyanagi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "James Koyanagi was a Burlington-based architect and a founding partner of the Svedas-Koyanagi Architects firm. He was responsible for the design of such notable buildings as the Burlington City Hal…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T21:16:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:24:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Koyanagi_James_Jun_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g540040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g540380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/james-jun-jim-koyanagi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/james-jun-jim-koyanagi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/james-jun-jim-koyanagi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g540840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/james-jun-jim-koyanagi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g541040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g541160" - }, - { - "@id": "_:g541180" - }, - { - "@id": "_:g541200" - }, - { - "@id": "_:g541220" - } - ] - }, - { - "@id": "_:g541160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1975-RBG-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1975-RBG-1200.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g541180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1975-RBG-ARCHITECT-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1975-RBG-ARCHITECT-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g541200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1992-CITY-HALL3-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1992-CITY-HALL3-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g541220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DAD_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DAD_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-shimizu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Henry Shimizu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/henry-shimizu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born Prince Rupert BC.. 1928 Removal March 1942 Internment New Denver, BC, 1942 to 1946 Moved to Edmonton. AB. University of Alberta. 1948; Graduate – Medicine 1954 Graduate – BSc.MD, 1954 Surgical…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-28T17:17:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:47:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Henry-Shimizu-600.jpg?fit=600%2C805&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "805" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g541860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g542200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-shimizu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-shimizu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-shimizu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g542740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-shimizu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/manami-hara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Manami Hara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/manami-hara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Manami Hara was born and raised in Tokyo Japan.  She became fascinated with Western theatre and the English language and at the age of 18, left Japan home to become a stage actor in North America. …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:36:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:16:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hara_Manami_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g543780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g544120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/manami-hara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/manami-hara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/manami-hara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g544560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/manami-hara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-hyodo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Aki Hyodo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/aki-hyodo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Aki Hyodo was a talented amateur Nisei actress well-known in the Powell Street community. She was a member of the Powell United Church Young People’s Society, which first entered a play into the ci…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-14T17:18:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:45:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Stage_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g545600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g545940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-hyodo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-hyodo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-hyodo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g546300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-hyodo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-teramura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Daniel Teramura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/daniel-teramura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Daniel Teramura is a Toronto-based architect and partner at Moriyama & Teshima. He has been with the firm since 1986, and worked on many of their high-profile projects such as the Saudi Arabia …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:29:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:41:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Teramura_Daniel_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g547340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g547680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-teramura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-teramura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-teramura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g548000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-teramura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamio-wakayama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tamio Wakayama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tamio-wakayama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tamio Wakayama is a photographer." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:51:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-04-27T18:28:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Wakayama_Tamio_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g549060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g549400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamio-wakayama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamio-wakayama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamio-wakayama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g549900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamio-wakayama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g550300", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g550440" - }, - { - "@id": "_:g550500" - }, - { - "@id": "_:g550560" - }, - { - "@id": "_:g550620" - }, - { - "@id": "_:g550680" - } - ] - }, - { - "@id": "_:g550440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/20-pepsi-edit_edited-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/20-pepsi-edit_edited-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g550500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/32burnt-cross.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/32burnt-cross.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g550560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/37-cock-rock-edit.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " EPSON scanner image " - } - ], - "http://schema.org/description": [ - { - "@value": " EPSON scanner image " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/37-cock-rock-edit.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g550620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/44-linda-drums-edit-2-1.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " EPSON scanner image " - } - ], - "http://schema.org/description": [ - { - "@value": " EPSON scanner image " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/44-linda-drums-edit-2-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g550680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/47a-aiko-suzuk-1-edit.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " EPSON scanner image " - } - ], - "http://schema.org/description": [ - { - "@value": " EPSON scanner image " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/47a-aiko-suzuk-1-edit.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lynne-kutsukake/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lynne Kutsukake" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lynne-kutsukake/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lynne Kutsukake is a novelist and short story writer. She studied Japanese literature in Canada and in Japan, and worked for many years as a librarian. She was a finalist for the Journey Prize in 2…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-17T04:44:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:56:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g551560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g551900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lynne-kutsukake/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lynne-kutsukake/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lynne-kutsukake/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g552420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lynne-kutsukake/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g552640", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g552720" - }, - { - "@id": "_:g552740" - } - ] - }, - { - "@id": "_:g552720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/PbkCoverHiResImage.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/PbkCoverHiResImage.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g552740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Headshot-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Headshot-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-matsubara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Naoko Matsubara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/naoko-matsubara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Naoko Matsubara is a printmaker. She received her BFA in 1960 from the Kyoto Academy of Fine Arts in Kyoto, and an MFA as Fulbright Scholar at the Carnegie Mellon University in Pittsburgh in 1962. …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:00:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-05T19:53:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Matsubara_Naoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g553580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g553920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-matsubara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-matsubara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-matsubara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g554440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-matsubara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g554660", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g554760" - }, - { - "@id": "_:g554780" - }, - { - "@id": "_:g554800" - } - ] - }, - { - "@id": "_:g554760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_0074_Michael-Cullen-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_0074_Michael-Cullen-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g554780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_0080_Matsubara_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_0080_Matsubara_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g554800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_3877_Arlene-Gehmacher-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_3877_Arlene-Gehmacher-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pat-adachi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Pat Adachi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/pat-adachi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Pat Adachi is the author of Asahi: A Legend in Baseball (1992), the book widely credited as sparking a popular revival of interest in the prewar Japanese Canadian Vancouver baseball team, the Asahi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:09:38+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-11-03T20:10:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Adachi_Pat_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g555640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g555980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pat-adachi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pat-adachi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pat-adachi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g556440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/pat-adachi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g556660", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g556760" - }, - { - "@id": "_:g556780" - }, - { - "@id": "_:g556800" - } - ] - }, - { - "@id": "_:g556760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pat-Adachi-april-2017-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pat-Adachi-april-2017-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g556780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pat-Adachi-book-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pat-Adachi-book-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g556800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pat-Adachi-family-april-2017_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pat-Adachi-family-april-2017_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mona-oikawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mona Oikawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mona-oikawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mona Oikawa is a writer. An active player in the 1980s and 1990s in Toronto in the lesbian and Asian Canadian literary scene with various publications of poems and short stories, she is now best kn…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:02:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:11:13+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Oikawa_M_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g557640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g557980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mona-oikawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mona-oikawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mona-oikawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g558320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mona-oikawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-sachiko-mercer/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Rachel Sachiko Mercer" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/rachel-sachiko-mercer/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Described as a “pure chamber musician” (Globe and Mail) creating “moments of pure magic” (Toronto Star), Canadian cellist Rachel Mercer has appeared as a soloist and chamber…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-31T19:26:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-08-29T18:57:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g559360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g559700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-sachiko-mercer/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-sachiko-mercer/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-sachiko-mercer/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g560500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-sachiko-mercer/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g560880", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g560940" - } - ] - }, - { - "@id": "_:g560940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/rachel_mercer_3b_by_bo_huang-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/rachel_mercer_3b_by_bo_huang-1.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g560980", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g561040" - }, - { - "@id": "_:g561060" - } - ] - }, - { - "@id": "_:g561040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/rachel_mercer_3b_by_bo_huang-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/rachel_mercer_3b_by_bo_huang-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g561060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/rachel_mercer_3b_by_bo_huang.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/rachel_mercer_3b_by_bo_huang.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joanne-soroka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joanne Soroka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joanne-soroka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joanne Soroka is a textile artist born in Quebec and based in Edinburgh, Scotland. She studied at McGill University, the Nova Scotia College of Art & Design, and the Edinburgh College of Art, a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:57:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T22:01:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Soroka_Joanne_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g561900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g562240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joanne-soroka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joanne-soroka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joanne-soroka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g562920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joanne-soroka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g563140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g563320" - }, - { - "@id": "_:g563340" - }, - { - "@id": "_:g563360" - }, - { - "@id": "_:g563380" - }, - { - "@id": "_:g563400" - }, - { - "@id": "_:g563420" - }, - { - "@id": "_:g563440" - } - ] - }, - { - "@id": "_:g563320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Chayas-Dream-Nightmare_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Chayas-Dream-Nightmare_W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g563340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kawa-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kawa-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g563360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/only_connect_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/only_connect_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g563380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sea-Change-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sea-Change-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g563400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Steps-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Steps-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g563420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/The-Moon-and-Sixpence-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/The-Moon-and-Sixpence-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g563440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Watershed-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Watershed-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yayoi-hirano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yayoi Hirano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yayoi-hirano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born and raised in Japan, Yayoi is a graduate of Toho Gakuen College of Drama. In 1989, she became the first mime artist to receive the Japanese Ministry of Education Fellowship and spent a year co…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-22T20:16:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-08T18:34:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Yayoi-Noriko-head-shot.jpg?fit=998%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "998" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g564280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g564620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yayoi-hirano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yayoi-hirano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yayoi-hirano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g565220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yayoi-hirano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g565440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g565540" - }, - { - "@id": "_:g565560" - }, - { - "@id": "_:g565580" - } - ] - }, - { - "@id": "_:g565540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC_2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC_2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g565560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Okuni-9-4.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Okuni-9-4.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g565580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC_9141-copy-m.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC_9141-copy-m.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-oike-wong/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoko Oike-Wong" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoko-oike-wong/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoko Oike-Wong is a violinist and teacher of violin. She came to Edmonton from Matsumoto, Japan in 1965 by invitation from the Society for Talent Education for the express purpose of introducing th…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:27:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T23:07:14+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Oike-Wong_Yoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g566420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g566780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-oike-wong/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-oike-wong/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-oike-wong/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g567120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-oike-wong/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiro-kanagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiro Kanagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiro-kanagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiro Kanagawa is a Vancouver-based writer and actor. His play Indian Arm received the 2017 Governor-General’s Literary Award for Drama. His other plays include The Tiger of Malaya and The Patron Sa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T17:11:07+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-06-10T18:09:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20211109_HiroKanagawa3036_TRMT_WEB.jpg?fit=799%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "799" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g568160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g568500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiro-kanagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiro-kanagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiro-kanagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g569340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiro-kanagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g569720", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g569880" - }, - { - "@id": "_:g569900" - }, - { - "@id": "_:g569920" - }, - { - "@id": "_:g569940" - }, - { - "@id": "_:g569960" - }, - { - "@id": "_:g569980" - } - ] - }, - { - "@id": "_:g569880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20211109_HiroKanagawa3036_TRMT_WEB.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20211109_HiroKanagawa3036_TRMT_WEB.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g569900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Hiro Kanagawa Photographed by Farah Nosh farah@farahnosh.com " - } - ], - "http://schema.org/description": [ - { - "@value": " Hiro Kanagawa Photographed by Farah Nosh farah@farahnosh.com " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g569920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20211109_HiroKanagawa3409_BW_WEB.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20211109_HiroKanagawa3409_BW_WEB.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g569940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hiro-Kanagawa-Banff.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hiro-Kanagawa-Banff.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g569960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2017-Headshot2-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2017-Headshot2-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g569980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20131214-_MG_4537-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20131214-_MG_4537-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-sunahara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ann Sunahara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ann-sunahara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ann Gomer Sunahara is a legal scholar and author of the The Politics of Racism: The Uprooting of Japanese Canadians During the Second World War. Published in 1981, The Politics of Racism examined f…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:50:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-11-25T18:15:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sunahara_A_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g570820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g571160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-sunahara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-sunahara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-sunahara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g571620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-sunahara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-shiozaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Robert Shiozaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/robert-shiozaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Robert Shiozaki is a ceramic artist with forty-plus years of experience working with clay. His formative studies were in Vancouver at the Vancouver School of Art, and Kyoto, Japan, at the Kyoto Sch…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T23:09:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:33:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g572660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g573000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-shiozaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-shiozaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-shiozaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g573580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-shiozaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g573800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g573920" - }, - { - "@id": "_:g573940" - }, - { - "@id": "_:g573960" - }, - { - "@id": "_:g573980" - } - ] - }, - { - "@id": "_:g573920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki-installation-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki-installation-1200.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g573940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki-installation-2-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki-installation-2-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g573960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki_May-2017_From-Japan-to-Canada-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Robert-Shiozaki_May-2017_From-Japan-to-Canada-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g573980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2605_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2605_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lorne-hawryluk/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lorne Hawryluk" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lorne-hawryluk/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lorne Hawryluk is a Toronto-based actor who was active in the 1980s and 1990s. His theatre credits include Song for a Nisei Fisherman (Sansei North, 1987); film credits include Breaking All the Rul…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:29:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:58:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Stage_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g574820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g575160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lorne-hawryluk/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lorne-hawryluk/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lorne-hawryluk/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g575480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lorne-hawryluk/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/judy-nakagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Judy Nakagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/judy-nakagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Judy Nakagawa began studying sculpture at the Corcoran School of Art+Design in Washington, DC in 1998 and in 2002, was awarded the Berthold Schmutzhart Award for sculpture.  She exhibited her work …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T18:18:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-21T01:46:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/JudyNakagawa.jpg?fit=480%2C640&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "480" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "640" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g576120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g576460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/judy-nakagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/judy-nakagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/judy-nakagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g577000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/judy-nakagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-kodama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tomoko Kodama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tomoko-kodama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tomoko Kodama was a sumi-e painter born in Tokyo. She first discovered her love of art in high school, and went on to study nihonga painting in university. She received a bachelor of fine arts degr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:27:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:09:47+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kodama_Tomoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g578040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g578380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-kodama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-kodama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-kodama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g578980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomoko-kodama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g579360", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g579460" - }, - { - "@id": "_:g579480" - }, - { - "@id": "_:g579500" - } - ] - }, - { - "@id": "_:g579460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dream-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dream-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g579480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/sumie-hana-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/sumie-hana-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g579500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tomoko-Kodama-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tomoko-Kodama-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eric-koyanagi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Eric Koyanagi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/eric-koyanagi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Eric Koyanagi is a filmmaker, writer and editor. He wrote and directed the seminal Asian American feature film hundred percent, which LA Weekly declared, ‘A bright sharp comedy-drama with funky ret…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:05:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:48:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Koyanagi_Eric_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g580340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g580680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eric-koyanagi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eric-koyanagi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eric-koyanagi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g581180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eric-koyanagi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mui-ling-teh/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mui-Ling Teh" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mui-ling-teh/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mui-Ling Teh is an artist, photographer, and poet of Japanese and Chinese descent. She produces art both traditionally and digitally; but at present she is best known for her miniature origami. Teh…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-03T18:12:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-25T01:07:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/272949224_1434811060268010_4173539069899758822_n-1.jpeg?fit=480%2C480&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "480" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "480" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g582220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g582560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mui-ling-teh/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mui-ling-teh/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mui-ling-teh/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g583260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mui-ling-teh/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g583480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g583560" - }, - { - "@id": "_:g583580" - } - ] - }, - { - "@id": "_:g583560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Mui-Ling-Teh-Profile-Picture.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Homeland " - } - ], - "http://schema.org/description": [ - { - "@value": " Homeland " - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Mui-Ling-Teh-Profile-Picture.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g583580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/272949224_1434811060268010_4173539069899758822_n-1.jpeg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Photo credit Minami Nakamura " - } - ], - "http://schema.org/description": [ - { - "@value": " Photo credit Minami Nakamura " - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/272949224_1434811060268010_4173539069899758822_n-1.jpeg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/louise-noguchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Louise Noguchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/louise-noguchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Louise Noguchi is a multidisciplinary visual artist who challenges her audience with themes that pose psychological questions. Using photography, sculpture, video and other media, Noguchi’s concept…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:35:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-29T22:32:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Noguchi_Louise_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g584420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g584760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/louise-noguchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/louise-noguchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/louise-noguchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g585200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/louise-noguchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "David Kai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/david-kai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "David Kai grew up in Toronto as a Sansei attending the Centennial-Japanese United Church where he was highly involved in its music ministry. He is a graduate of the University of Toronto, the Humbe…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2019-02-12T22:27:22+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:12:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/02/DK2.jpg?fit=1200%2C1009&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1009" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g586260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g586600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g587320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-kai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teiya-kasahara-%e7%ac%a0%e5%8e%9f-%e8%b2%9e%e9%87%8e/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Teiya Kasahara 笠原 貞野" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/teiya-kasahara-%e7%ac%a0%e5%8e%9f-%e8%b2%9e%e9%87%8e/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nikkei-Canadian settler Teiya Kasahara 笠原 貞野 (they/them) is a queer, trans non-binary, interdisciplinary creator-performer based in Tkarón:to (Toronto). Heralded as “a force of nature” (Toronto Sta…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2019-02-12T00:56:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:43:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/02/Teiya_Kasahara_photo_by_Janet-Kimber-scaled.jpg?fit=855%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "855" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g588340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g588680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teiya-kasahara-%e7%ac%a0%e5%8e%9f-%e8%b2%9e%e9%87%8e/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teiya-kasahara-%e7%ac%a0%e5%8e%9f-%e8%b2%9e%e9%87%8e/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teiya-kasahara-%e7%ac%a0%e5%8e%9f-%e8%b2%9e%e9%87%8e/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g589560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teiya-kasahara-%e7%ac%a0%e5%8e%9f-%e8%b2%9e%e9%87%8e/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g589940", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g590020" - }, - { - "@id": "_:g590040" - } - ] - }, - { - "@id": "_:g590020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/01/IMG_4391.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/01/IMG_4391.jpeg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g590040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/02/Teiya_Kasahara_photo_by_Janet-Kimber-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/02/Teiya_Kasahara_photo_by_Janet-Kimber-scaled.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ann Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ann-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ann Suzuki is an Ontario-based textile artist who uses the ancient Javanese technique of batik, a wax-resist dyeing method, to create her unique silk designs. Suzuki wishes to create garments which…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:19:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:19:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Suzuki_Ann_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g590880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g591220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g591700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g591920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g592020" - }, - { - "@id": "_:g592040" - }, - { - "@id": "_:g592060" - } - ] - }, - { - "@id": "_:g592020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2017-07-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2017-07-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g592040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/hats_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/hats_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g592060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/jacket-16-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/jacket-16-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachiko-murakami/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sachiko Murakami" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sachiko-murakami/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sachiko Murakami is the author of four collections of poetry, most recently Render (Arsenal Pulp Press 2020), a finalist for the Governor-General’s Literary Award. As a literary worker, she h…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-19T17:09:32+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-13T18:41:47+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_2020-scaled.jpg?fit=1200%2C960&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Sachiko Murakami" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g592900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g593240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachiko-murakami/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachiko-murakami/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachiko-murakami/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g593800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachiko-murakami/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g594200", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g594300" - }, - { - "@id": "_:g594360" - }, - { - "@id": "_:g594420" - } - ] - }, - { - "@id": "_:g594300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_Square.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_Square.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g594360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_Render.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_Render.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g594420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_GetMeOutofHere.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Murakami_GetMeOutofHere.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uzume-taiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Uzume Taiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/uzume-taiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Uzume Taiko is West Coast Canada’s premiere professional taiko drumming group. Performing both nationally and internationally since 1988, the group performs their unique West Coast Canadian t…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-18T23:12:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:33:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Uzume_Taiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g595300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g595660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uzume-taiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uzume-taiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uzume-taiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g596260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uzume-taiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g596480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g596580" - }, - { - "@id": "_:g596600" - }, - { - "@id": "_:g596620" - } - ] - }, - { - "@id": "_:g596580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/1395345973.109880.IMG_6784_800.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/1395345973.109880.IMG_6784_800.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g596600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Uzume_Taiko_600X600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Uzume_Taiko_600X600.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g596620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Thumbnails_Batch_1_Assorted_600X60016-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Thumbnails_Batch_1_Assorted_600X60016-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jay-hirabayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jay Hirabayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jay-hirabayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jay Hirabayashi was born in Seattle, Washington in 1947, but grew up in Beirut, Lebanon, Cairo, Egypt, and Edmonton, Alberta. He has a B.A. degree from the University of Alberta and a M.A. degree f…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:40:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-23T23:54:56+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hirabayashi_Jay_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g597460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g597800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jay-hirabayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jay-hirabayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jay-hirabayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g598320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jay-hirabayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g598700", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g598800" - }, - { - "@id": "_:g598820" - }, - { - "@id": "_:g598840" - } - ] - }, - { - "@id": "_:g598800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Jay-Ghosts-photo-by-Chris-Randle.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Jay-Ghosts-photo-by-Chris-Randle.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g598820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Jay-Hirabayashi-in-Ghosts-by-Chris-Randle.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Jay-Hirabayashi-in-Ghosts-by-Chris-Randle.png?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g598840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Jay-Hirabayashi-in-Falling-Down-by-Chris-Randle.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Jay-Hirabayashi-in-Falling-Down-by-Chris-Randle.png?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoshi-sugiyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hitoshi Sugiyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hitoshi-sugiyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born and raised in Japan, Hitoshi Sugiyama practiced and performed taiko and shinobue. During university, he started DJing and composing electronic music.  In 2009, he moved to Canada and continued…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-09-01T19:00:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-13T18:38:13+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/09/Hitoshi_Image.jpg?fit=336%2C448&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "336" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "448" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g599680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g600020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoshi-sugiyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoshi-sugiyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoshi-sugiyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g600580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoshi-sugiyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-furue/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Naoko Furue" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/naoko-furue/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Naoko Furue is a textiles artist who was born in Tokyo, Japan and immigrated to Canada in 1971. She graduated from Tama Fine Art University in Tokyo with a BFA in 1964 and from Cranbrook Academy of…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:43:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T20:43:41+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Furue_Naoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g601620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g601960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-furue/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-furue/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-furue/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g602420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naoko-furue/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g602820", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g602920" - }, - { - "@id": "_:g602980" - }, - { - "@id": "_:g603040" - } - ] - }, - { - "@id": "_:g602920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/crop0010-1000.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/crop0010-1000.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g602980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/crop0029-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/crop0029-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g603040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/crop0116-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/crop0116-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/renay-egami/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Renay Egami" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/renay-egami/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Renay Egami is a multimedia artist. Originally from Vancouver, she is currently based in Kelowna BC where she teaches at the University of British Columbia Okanagan in the Faculty of Creative &…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:23:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:08:19+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Egami_Renay_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g603920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g604260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/renay-egami/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/renay-egami/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/renay-egami/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g604740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/renay-egami/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barb-miiko-gravlin/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Barb Miiko Gravlin" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/barb-miiko-gravlin/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Barbara ‘Miiko’ Nishimura- Gravlin was born in Tashme, the largest of Japanese Canadian internment camps in B.C. At an early age, she became an abstract painter under mentors, Richard G…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:52:03+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T23:05:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/miiko_600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g605920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g606260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barb-miiko-gravlin/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barb-miiko-gravlin/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barb-miiko-gravlin/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g606780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barb-miiko-gravlin/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-fukawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Stanley Fukawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/stanley-fukawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Stanley Toshinori Fukawa is a Nisei sociologist, community organizer, historian and writer. He organized the Mid-Island Japanese Canadian Society, affectionately called the ‘Seven Potatoes’ (nana i…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-29T04:23:48+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T18:54:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Fukawa_Stan_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g607820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g608160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-fukawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-fukawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-fukawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g608520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-fukawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-asia-minors/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "The Asia Minors" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/the-asia-minors/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Asia Minors were an all-Asian Canadian band who played in Toronto in the 1960s. The band was formed by the Lumb family, a prominent Chinatown family: it was sponsored by restaurateur Jean Lumb …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:24:10+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:31:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_09_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g609700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g610040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-asia-minors/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-asia-minors/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-asia-minors/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g610420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-asia-minors/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-ochiai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yukari Ochiai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yukari-ochiai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yukari Ochiai is a Montreal-based painter and graphic artist who exhibits extensively around the world. Born in Yokohama, Japan, she attended a School of Fine Arts, ‘Joshi Bijutsu’, in Tokyo, recei…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:07:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:31:41+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ochiai_Yukari_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g611460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g611800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-ochiai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-ochiai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-ochiai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g612380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukari-ochiai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g612760", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g612860" - }, - { - "@id": "_:g612880" - }, - { - "@id": "_:g612900" - } - ] - }, - { - "@id": "_:g612860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/download.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/download.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g612880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Forside-II-ARB-hist-1-16.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Forside-II-ARB-hist-1-16.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g612900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/yukari-ochiai.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/yukari-ochiai.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-harada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiroshi Harada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiroshi-harada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiroshi Harada is a Toronto-based landscape architect of Harada Landscaping Limited. He was born and educated in Japan, graduating from the Faculty of Horticulture of Chiba University in 1970. He d…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:53:40+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:29:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Tools_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g613740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g614080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-harada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-harada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-harada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g614480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-harada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jesse-nishihata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jesse Nishihata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jesse-nishihata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "JESSE HIDEO NISHIHATA was a pioneer in Japanese Canadian documentary filmmaking. From 1966-1978 Jesse worked as a contract producer for the CBC-TV Public Affairs Department. During this time Jesse …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T20:41:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:39:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishihata_Jesse_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g615520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g615860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jesse-nishihata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jesse-nishihata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jesse-nishihata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g616300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jesse-nishihata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lara-okihiro/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lara Okihiro" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lara-okihiro/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Dr. Lara Okihiro is a yonsei writer, researcher, and educator of mixed Japanese Canadian heritage. Growing up in the diverse, working-class Dixon Road neighbourhood in Toronto, she was close to her…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:01:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:01:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2023/09/Headshot.jpeg?fit=581%2C480&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "581" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "480" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Dr. Lara Okihiro" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g617340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g617680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lara-okihiro/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lara-okihiro/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lara-okihiro/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g618040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lara-okihiro/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-kosaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Peter Kosaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/peter-kosaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Peter Kosaka is a Japanese-born actor who built a film and theatre career primarily in Toronto, all while working a day job in finance. He came to Canada to study acting at the University of Windso…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:53:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:57:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kosaka_Peter_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g619080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g619420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-kosaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-kosaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-kosaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g619800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-kosaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshie-bancroft/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoshie Bancroft" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoshie-bancroft/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoshie Bancroft is an award winning actor and theatre creator based on unceded Coast Salish Land (Vancouver, Canada). Recent theatre: Exit, Pursued by a Bear (Globe Theatre), The Orchard (Arts Club…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T16:14:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-07-21T22:19:19+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/YOSHIE-33-Edit-2-scaled.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g620840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g621180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshie-bancroft/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshie-bancroft/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshie-bancroft/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g621920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshie-bancroft/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g622300", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g622380" - }, - { - "@id": "_:g622400" - } - ] - }, - { - "@id": "_:g622380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Yoshie-Bancroft-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Yoshie-Bancroft-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g622400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/YOSHIE-33-Edit-2-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/YOSHIE-33-Edit-2-scaled.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-izumi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chiyoko Izumi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/chiyoko-izumi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Chiyoko Izumi is an odori dance instructor in Hamilton, Ontario, who has been teaching odori for over 70 years. She began to study odori at age 10 in Vancouver, two years before she was sent to Jap…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:29:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:52:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Izumi_Chiyoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g623240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g623580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-izumi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-izumi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-izumi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g624020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-izumi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruby-truly/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ruby Truly" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ruby-truly/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ruby Truly is a Hawaii-born Nikkei actor and filmmaker. Born in Maui, she grew up dancing the hula, which she credits as a lifelong artistic influence. She studied theatre at the University of Hawa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:43:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T22:00:07+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Truly_Ruby_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g625060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g625400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruby-truly/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruby-truly/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruby-truly/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g625880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruby-truly/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yon-shimizu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yon Shimizu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yon-shimizu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoshio ‘Yon’ Shimizu was the author of The Exiles: An Archival History of the World War II Japanese Road Camps in British Columbia and Ontario. Born in Victoria, Shimizu was a young man just about …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:12:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:51:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shimizu_Yon_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g626920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g627260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yon-shimizu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yon-shimizu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yon-shimizu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g627660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yon-shimizu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/e-kage/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "E. Kage" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/e-kage/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "E. Kage is a Taiko artist/performer and a digital audio artist.  Born in Japan growing up in Canada, they embraced the art of Taiko as a way to express their empowerment as a mixed race queer youth…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:08:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-06-07T22:25:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kage_Eileen_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g628700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g629040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/e-kage/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/e-kage/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/e-kage/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g629540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/e-kage/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/melisa-kamibayashi-staples/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Melisa Kamibayashi -Staples" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/melisa-kamibayashi-staples/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Melisa trained in and performed taiko with an all women’s taiko group in Japan in the 90’s. She went on to participate in International taiko conferences in Los Angeles and Sacramento, and workshop…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-18T18:03:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-06-10T18:06:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/PhotoTaiko.JCAD_-scaled.jpg?fit=873%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "873" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Melisha Kamibayashi-Staples" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g630580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g630920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/melisa-kamibayashi-staples/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/melisa-kamibayashi-staples/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/melisa-kamibayashi-staples/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g631320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/melisa-kamibayashi-staples/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mariko-sato/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mariko Sato" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mariko-sato/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mariko Sato is a Tokyo-born concert pianist, accompanist, and teacher based in Montreal. She immigrated to Canada at the age of 18 to study music at Laval University in Quebec City, eventually earn…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:56:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:55:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sato_Mariko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g632360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g632700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mariko-sato/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mariko-sato/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mariko-sato/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g632980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mariko-sato/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/muriel-kitagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Muriel Kitagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/muriel-kitagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tsukiye Muriel (nee Fujiwara) Kitagawa was born in Vancouver on April 3, 1912 and was raised primarily in New Westminster. She graduated from Duke of Connaught High School and briefly attended UBC.…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:46:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T19:04:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Kitagawa_Muriel_600X600-1.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g634020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g634360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/muriel-kitagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/muriel-kitagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/muriel-kitagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g634840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/muriel-kitagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vernon-hakkaku/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Vernon Hakkaku" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/vernon-hakkaku/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Vernon Hakkaku was a well-known piano accompanist for many Nisei singers during and after the Second World War. He was known for having a distinctively Japanese style which suited the Nisei singers…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:38:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:13:14+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g635660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g635720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vernon-hakkaku/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vernon-hakkaku/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vernon-hakkaku/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g636000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vernon-hakkaku/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-tora-speier/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Michael Tora Speier" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/michael-tora-speier/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Michael Tora Speier is a west coast North American visual artist, born in Berkeley CA, raised in Vancouver BC, of Jewish and Japanese ancestry. He received a visual art scholarship from the Helen P…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:20:40+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:11:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Speier_Michael_Tora_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g636620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g636960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-tora-speier/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-tora-speier/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-tora-speier/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g637500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-tora-speier/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g637880", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g637980" - }, - { - "@id": "_:g638000" - }, - { - "@id": "_:g638020" - } - ] - }, - { - "@id": "_:g637980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Michael-Tora-Speier-BOS-Nikkei-Centre-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Michael-Tora-Speier-BOS-Nikkei-Centre-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g638000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Michael-Tora-Speier-NRwave-title-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Michael-Tora-Speier-NRwave-title-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g638020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Michael-Tora-Speier-skebo-hi-web-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Michael-Tora-Speier-skebo-hi-web-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-hamasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kazuo Hamasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kazuo-hamasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kazuo Richard Hamasaki was a Nisei painter trained in the Nanga tradition of Japanese painting. His paintings have been exhibited in galleries across Canada and the United States, including Hawaii,…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:28:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:28:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K01.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g638860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g639200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-hamasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-hamasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-hamasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g639660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-hamasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g639880", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g639980" - }, - { - "@id": "_:g640000" - }, - { - "@id": "_:g640020" - } - ] - }, - { - "@id": "_:g639980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K03.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K03.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g640000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K02.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K02.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g640020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K01b.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hamasaki_K01b.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-kubota/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yuriko Kubota" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yuriko-kubota/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yuriko began her art studies as a painter, studying oil painting and received her B.F.A from at Joshibi University of Art and Design in Tokyo, Japan. She went on to study photography under Shin Sug…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-24T17:18:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:39:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g640860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g641200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-kubota/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-kubota/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-kubota/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g641920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-kubota/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g642140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g642300" - }, - { - "@id": "_:g642320" - }, - { - "@id": "_:g642340" - }, - { - "@id": "_:g642360" - }, - { - "@id": "_:g642380" - }, - { - "@id": "_:g642400" - } - ] - }, - { - "@id": "_:g642300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/on-earth-kai-for-web-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/on-earth-kai-for-web-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g642320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/on-earth-kuu-for-web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/on-earth-kuu-for-web.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g642340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/on-earth-moku-for-web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/on-earth-moku-for-web.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g642360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/walking-grey-001small.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " OLYMPUS DIGITAL CAMERA " - } - ], - "http://schema.org/description": [ - { - "@value": " OLYMPUS DIGITAL CAMERA " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/walking-grey-001small.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g642380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/walking-grey-002new.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " OLYMPUS DIGITAL CAMERA " - } - ], - "http://schema.org/description": [ - { - "@value": " OLYMPUS DIGITAL CAMERA " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/walking-grey-002new.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g642400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/walking-grey-003-small.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " OLYMPUS DIGITAL CAMERA " - } - ], - "http://schema.org/description": [ - { - "@value": " OLYMPUS DIGITAL CAMERA " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/walking-grey-003-small.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-moriyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joni Moriyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joni-moriyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joni Moriyama has worked for more than 25 years as a ceramic artist making vessel and sculptural forms. She received her undergraduate training at the Ontario College of Art (now OCADU) and her MFA…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:46:09+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:26:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moriyama_Joni_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g643240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g643580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-moriyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-moriyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-moriyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g643860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-moriyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoichi-shimizu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoichi Shimizu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoichi-shimizu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoichi Shimizu is a Japanese-born graphic designer who worked primarily in Toronto. After graduating from Naniwa Art College in Osaka, Shimizu worked for a Japanese design company, Nippon Create De…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:44:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:53:44+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Tools_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g644780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g645140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoichi-shimizu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoichi-shimizu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoichi-shimizu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g645540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoichi-shimizu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mio-sakamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mio Sakamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mio-sakamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mio Sakamoto is a Toronto based performer, choreographer, and certified Kaeja Elevation teacher originally from Japan. Sakamoto graduated from The School of Toronto Dance Theatre in 2017. In 2018, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-09-22T22:19:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-07-21T22:08:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/09/Mio-Sakamoto-Headshot-copy-scaled.jpg?fit=960%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g646560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g646900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mio-sakamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mio-sakamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mio-sakamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g647460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mio-sakamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayoko-tanaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kayoko Tanaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kayoko-tanaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "  1998-2005 Ontario College of Art and Design (Ceramics, Professional Development) 1993-1995 Ontario College of Art and Design (Painting) 1989-1991 Centre Saidue Bronfman (Montreal, Master Pai…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-23T03:37:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T22:41:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g648500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g648840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayoko-tanaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayoko-tanaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayoko-tanaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g649220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayoko-tanaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g649600", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g649660" - } - ] - }, - { - "@id": "_:g649660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/touhenboku-153.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/touhenboku-153.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akemi-nishidera/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Akemi Nishidera" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/akemi-nishidera/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Akemi Nishidera is a Toronto-based printmaker. After studying printmaking at the Ontario College of Art, and showing her work in a number of exhibits in Ontario, Nishidera continued learning her cr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:11:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T02:45:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishidera_Akemi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g650500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g650840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akemi-nishidera/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akemi-nishidera/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akemi-nishidera/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g651380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akemi-nishidera/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g651600", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g651700" - }, - { - "@id": "_:g651720" - }, - { - "@id": "_:g651740" - } - ] - }, - { - "@id": "_:g651700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2632.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2632.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g651720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2634.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2634.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g651740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_9218.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_9218.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/art-miki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Art Miki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/art-miki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Art Miki is a community activist and retired educator living in Winnipeg, Manitoba. Born in Vancouver in 1936, he was five years old when his parents and grandparents, wanting to keep the family to…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T07:04:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:24:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Miki_Art_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g652580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g652920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/art-miki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/art-miki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/art-miki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g653320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/art-miki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-muraoka-koyanagi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kimiko Muraoka Koyanagi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kimiko-muraoka-koyanagi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kimiko Koyanagi is a 3rd generation doll-maker from the renowned Muraoka doll-making family of Tokyo and has made Burlington, Ontario her home since 1966. Trained from childhood in the family tradi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:26:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T21:07:27+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Koyanagi_Kimiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g654360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g654700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-muraoka-koyanagi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-muraoka-koyanagi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-muraoka-koyanagi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g655320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kimiko-muraoka-koyanagi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g655700", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g655840" - }, - { - "@id": "_:g655860" - }, - { - "@id": "_:g655880" - }, - { - "@id": "_:g655900" - }, - { - "@id": "_:g655920" - } - ] - }, - { - "@id": "_:g655840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko15.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko15.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g655860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko19.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko19.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g655880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko22.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko22.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g655900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko32.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko32.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g655920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko33.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kimiko33.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-kondo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Alan Kondo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/alan-kondo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Alan Kondo was the first lead singer of the Asia Minors, an Asian Canadian top 40s rock band in the 1960s in Toronto. After leaving the band, he went on to study film at UCLA under Jerry Lewis, and…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T00:19:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:11:41+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g656760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g657100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-kondo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-kondo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-kondo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g657520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-kondo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/catalina-yue/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Catalina Yue" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/catalina-yue/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Catalina Yue (born May 19 in Toronto, Ontario) is a Canadian and American singer, songwriter, actress, model and businesswoman. She is a former delegate in the Miss Universe Canada competition. Yue…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-02T02:27:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:50:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g657860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g658140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/catalina-yue/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/catalina-yue/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/catalina-yue/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g659120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/catalina-yue/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g659500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g659560" - } - ] - }, - { - "@id": "_:g659560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Catalina-Yue-Headshot.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Catalina-Yue-Headshot.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natsuko-ohama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Natsuko Ohama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/natsuko-ohama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Natsuko Ohama is an actor who trained under legendary voice teacher Kristin Linklater.  She is a founding member and permanent faculty of Shakespeare and Company Lenox, Mass., a senior artist at Pa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:22:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T22:03:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ohama_Natsuko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g660400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g660740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natsuko-ohama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natsuko-ohama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natsuko-ohama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g661260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natsuko-ohama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bryce-kanbara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Bryce Kanbara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/bryce-kanbara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Bryce Kanbara is a visual artist, and the curator and proprietor of you me gallery (youmegallery.com) in Hamilton, Ontario. He was a founding member and first administrator of Hamilton Artists Inc.…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:55:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:49:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Kanbara_Bryce_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g662460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g662800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bryce-kanbara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bryce-kanbara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bryce-kanbara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g663360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bryce-kanbara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/victor-sawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Victor Sawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/victor-sawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Victor Sawa is a music conductor, frequently dubbed as ‘the modern renaissance man’ for his wide variety of interests and experiences. Born in Montreal, Victor studied Classical Music at McGill Uni…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:30:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T23:10:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sawa_Victor_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g664400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g664740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/victor-sawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/victor-sawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/victor-sawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g665160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/victor-sawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-townson/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Machiko Townson" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/machiko-townson/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born and raised in the birthplace of Japanese porcelain, Arita, Saga, Machiko grew up where not only her grandmother was a dish painter, but most of her neighbours were dish painters themselves. Ma…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:07:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:07:57+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Headshot-Machiko-Oya-Townson.jpg?fit=853%2C853&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "853" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "853" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Headshot (Machiko Oya Townson)" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g666220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g666560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-townson/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-townson/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-townson/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g667000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-townson/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-shinkoda/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Peter Shinkoda" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/peter-shinkoda/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Peter Shinkoda is a Canadian born actor most well known for his portrayals of Dai in Steven Spielberg’s Falling Skies and Nobu in Marvel’s Daredevil on Netflix. In addition to enjoying …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:22:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:48:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/12/Peter-shinkoda.jpeg?fit=509%2C640&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "509" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "640" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g667360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g667700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-shinkoda/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-shinkoda/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-shinkoda/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g668100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-shinkoda/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-murao/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Grace Murao" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/grace-murao/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Grace Murao is a printmaker who was actively exhibiting work in the 1980s and early 1990s. Born in British Columbia, she received her BFA from the University of British Columbia in 1984, and her MF…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:05:50+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:19:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Print_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g669140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g669480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-murao/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-murao/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-murao/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g669880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-murao/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-fukushima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Michael Fukushima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/michael-fukushima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Over 36 years, Michael Fukushima has been an animator, filmmaker, producer, and head of the NFB’s Animation Studio. He’s a member of the AMPAS® Academy, with over 200 films (and some nice awards) u…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:43:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-03-08T00:33:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/michaelfukushima.jpeg?fit=1200%2C1065&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1065" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g670920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g671260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-fukushima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-fukushima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-fukushima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g671720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-fukushima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-nishinoiri/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Junko Nishinoiri" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/junko-nishinoiri/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Junko Nishinoiri is a Japanese- and Canadian-trained printmaker who was active in Toronto in the late 1980s and early 1990s. Born in Japan, she studied printmaking at Tama Art College in Tokyo, and…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:07:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:20:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Print_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g672880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g673220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-nishinoiri/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-nishinoiri/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-nishinoiri/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g673560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-nishinoiri/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-ito/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Robert Ito" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/robert-ito/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Robert Ito is a well-known film actor. Born in Vancouver in 1931, he began his performance career early, winning local singing, dance, and elocution competitions from the tender age of eight as …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-14T17:45:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:52:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Iro_R_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g674600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g674940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-ito/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-ito/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-ito/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g675380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-ito/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-nakatsui/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Alan Nakatsui" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/alan-nakatsui/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Alan Nakatsui is an architect based in Lake Country, BC. Born in Alberta, he began his career there with the Calgary-based firm Bathory Associates after receiving a BSC in Civil Engineering (1975) …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T19:08:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:49:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g675740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g676080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-nakatsui/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-nakatsui/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-nakatsui/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g676420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-nakatsui/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-morimoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tom Morimoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tom-morimoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tom Morimoto is the author of the memoir, Breaking Trail: From Canada’s Northern Frontier to the Oil Fields of Dubai. He was born in Edmonton and grew up in Fort McMurray, one of seven brothers. As…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:33:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:57:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Morimoto_Tom_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g677480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g677820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-morimoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-morimoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-morimoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g678360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-morimoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g678740", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g678840" - }, - { - "@id": "_:g678860" - }, - { - "@id": "_:g678880" - } - ] - }, - { - "@id": "_:g678840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/1297784592660_ORIGINAL_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/1297784592660_ORIGINAL_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g678860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/9781897252178-us-300.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/9781897252178-us-300.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g678880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/TomMorimotoBook_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/TomMorimotoBook_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suezan-aikins/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Suezan Aikins" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/suezan-aikins/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Suezan Aikins is a Nova Scotia-based artist who grew up in Montreal and studied fine art at universities and art schools in New Brunswick, Toronto, Montreal and Halifax. In 1984-1985, her lifelong …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-13T00:05:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:13:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Aikins_Suezan_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g679720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g680060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suezan-aikins/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suezan-aikins/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suezan-aikins/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g680620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suezan-aikins/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/taiga-chiba/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Taiga Chiba" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/taiga-chiba/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Taiga Chiba is an artist whose work takes on a variety of forms, including printmaking, fabric arts, sculpture, and dance. He was born in Shizuoka, Japan and studied Studio Arts at Musashino Art Un…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T22:05:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:59:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Chiba_Taiga_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g681660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g682000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/taiga-chiba/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/taiga-chiba/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/taiga-chiba/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g682400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/taiga-chiba/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-shikatani/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Stan Shikatani" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/stan-shikatani/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born 1928. Prince Rupert BC. Relocated to Toronto in 1946. Studied design, typography and painting. Honors Graduate. Ontario College of  Art. Worked professionally for 10 years before accepting a t…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-14T02:55:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:43:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Design_05_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g683440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g683780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-shikatani/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-shikatani/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-shikatani/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g684160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-shikatani/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g684520", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g684580" - } - ] - }, - { - "@id": "_:g684580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Design_05_600X600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Design_05_600X600.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/norman-takeuchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Norman Takeuchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/norman-takeuchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Norman Takeuchi is a painter. Shortly after graduating from the Vancouver School of Art, he moved to London, England, for one year to concentrate on painting. While there, a chance encounter with a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T16:12:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T21:30:03+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g684860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g685200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/norman-takeuchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/norman-takeuchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/norman-takeuchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g685920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/norman-takeuchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g686300", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g686460" - }, - { - "@id": "_:g686480" - }, - { - "@id": "_:g686500" - }, - { - "@id": "_:g686520" - }, - { - "@id": "_:g686540" - }, - { - "@id": "_:g686560" - } - ] - }, - { - "@id": "_:g686460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Eastern-Rock.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Eastern Rock " - } - ], - "http://schema.org/description": [ - { - "@value": " Eastern Rock " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Eastern-Rock.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g686480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Nikkei-Western.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Nikkei Western " - } - ], - "http://schema.org/description": [ - { - "@value": " Nikkei Western " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Nikkei-Western.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g686500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Red-Dirt-Road.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Red Dirt Road " - } - ], - "http://schema.org/description": [ - { - "@value": " Red Dirt Road " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Red-Dirt-Road.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g686520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Stable-Morning.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Stable Morning " - } - ], - "http://schema.org/description": [ - { - "@value": " Stable Morning " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Stable-Morning.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g686540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Teahouse.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " TEA HOUSE 2012 Acrylic on canvas 48 x 72 in. 121.9 x 182.9 cm. Purchased by City of Ottawa 2013 " - } - ], - "http://schema.org/description": [ - { - "@value": " TEA HOUSE 2012 Acrylic on canvas 48 x 72 in. 121.9 x 182.9 cm. Purchased by City of Ottawa 2013 " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Teahouse.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g686560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Toshiro.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Toshiro " - } - ], - "http://schema.org/description": [ - { - "@value": " Toshiro " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Toshiro.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/number-one-son/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Number One Son" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/number-one-son/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Number One Son was a Vancouver Asian Canadian folk-rock band. Its members included Martin Kobayakawa, Kuan Foo, Sean Gunn, and later Terry Watada. They released two albums: Number One Son and Hocke…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:41:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:32:07+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Number-One-Son_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g687400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g687740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/number-one-son/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/number-one-son/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/number-one-son/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g688220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/number-one-son/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-sasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Leslie Sasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/leslie-sasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Leslie Sasaki is a sansei art educator and artist living in Hamilton, Ontario. He was born in Winnipeg in 1953 to George Sasaki (b. Annacis Island, BC) and Rosa Adeline Sasaki (nee Takatsu, b. Hain…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:43:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-08T19:30:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sasaki_Leslie_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g689400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g689740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-sasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-sasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-sasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g690260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-sasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g690500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g690600" - }, - { - "@id": "_:g690620" - }, - { - "@id": "_:g690640" - } - ] - }, - { - "@id": "_:g690600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC07734_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC07734_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g690620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC07745_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC07745_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g690640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0891_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0891_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dona-nabata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Dona Nabata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/dona-nabata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "I graduated with a major in Japanese language from the University of British Columbia, and then studied pottery at The Shimpi Togei Center, and later at Kyoritsu Primitive Art in Japan. I continued…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:17:48+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:38:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g691480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g691820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dona-nabata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dona-nabata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dona-nabata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g692820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dona-nabata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g693180", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g693460" - }, - { - "@id": "_:g693520" - }, - { - "@id": "_:g693580" - }, - { - "@id": "_:g693640" - }, - { - "@id": "_:g693700" - }, - { - "@id": "_:g693760" - }, - { - "@id": "_:g693820" - }, - { - "@id": "_:g693880" - }, - { - "@id": "_:g693940" - }, - { - "@id": "_:g694000" - }, - { - "@id": "_:g694060" - }, - { - "@id": "_:g694120" - } - ] - }, - { - "@id": "_:g693460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-1.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-1.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-2.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-2.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-3.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-3.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-4.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-4.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-5.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-5.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-6.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-6.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-7.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-7.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g693940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-8.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-8.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g694000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-9.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-9.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g694060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-10.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-10.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g694120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-11.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/image-11.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jack-kobayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jack Kobayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jack-kobayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "John “Jack” Kobayashi was born in Montreal, Quebec in 1963. During the Second World War, Jack’s mother’s family was interned at Tashme and his dad’s family ended up in Blind Bay a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:14:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-07-23T19:49:30+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Jack-Kobayashi-Head-shot-scaled.jpg?fit=900%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g695000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g695340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jack-kobayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jack-kobayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jack-kobayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g695820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jack-kobayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-korb/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ron Korb" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ron-korb/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Grammy® Award nominated flutist and composer Ron Korb has released 30 albums in 20 countries and plays a wide variety of indigenous woodwinds from around the world. Ron is on the list of ‘Ten Best …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:31:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-11-04T22:15:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Korb_Ron_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g696860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g697200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-korb/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-korb/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-korb/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g698020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-korb/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g698400", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g698520" - }, - { - "@id": "_:g698540" - }, - { - "@id": "_:g698560" - }, - { - "@id": "_:g698580" - } - ] - }, - { - "@id": "_:g698520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC9730g-1-s.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC9730g-1-s.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g698540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC00044-2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC00044-2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g698560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ron-Korb-Pic-dizi2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ron-Korb-Pic-dizi2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g698580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ron-Korb-Red-Carpet.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ron-Korb-Red-Carpet.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-fukushima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ken Fukushima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ken-fukushima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ken Fukushima is a Toronto-based architect who has designed such projects as the Art Gallery of Windsor, the Jane-Sheppard branch of the Toronto Public Library, Seneca College Markham Campus buildi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:24:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:53:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Fukushima_Ken_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g699420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g699760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-fukushima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-fukushima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-fukushima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g700180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-fukushima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g700420", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g700480" - } - ] - }, - { - "@id": "_:g700480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/kfukushima-profile-photo-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/kfukushima-profile-photo-W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-eiko-thomson/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Grace Eiko Thomson" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/grace-eiko-thomson/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Grace Eiko Thomson, curator, historian and a social activist, was the founding director-curator of the Japanese Canadian National Museum, (now Nikkei National Museum) in Burnaby, BC. Born in Steves…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-13T00:02:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:14:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Thomson_Grace_Eiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g701320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g701660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-eiko-thomson/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-eiko-thomson/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-eiko-thomson/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g702060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-eiko-thomson/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-yamagishi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kunio Yamagishi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kunio-yamagishi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born in Fukushima, Japan, and after the university education, I moved to Canada and worked at the Consulate General of Japan in Toronto as a researcher. I then worked in Toronto, Tokyo, and New Yor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:40:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:40:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Kunios-profile-photo-IMG_0083-1-Copy-scaled.jpg?fit=1200%2C900&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Kunio Yamagishi" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g703220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g703560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-yamagishi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-yamagishi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-yamagishi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g704260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-yamagishi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukiko-onley/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yukiko Onley" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yukiko-onley/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yukiko was born and grew up in Osaka, Japan, but has lived in Vancouver, British Columbia, Canada since 1976. She has been surrounded by art for most of her life. Her grandmother was a master of th…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-03-31T17:08:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:56:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g705160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g705500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukiko-onley/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukiko-onley/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukiko-onley/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g706280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yukiko-onley/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g706660", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g706820" - }, - { - "@id": "_:g706840" - }, - { - "@id": "_:g706860" - }, - { - "@id": "_:g706880" - }, - { - "@id": "_:g706900" - }, - { - "@id": "_:g706920" - } - ] - }, - { - "@id": "_:g706820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/97500003-copy-copy-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/97500003-copy-copy-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g706840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Arthur-Erickson-copy-copy-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Arthur-Erickson-copy-copy-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g706860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/DSC_7709-copy-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/DSC_7709-copy-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g706880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Jim-Hart-copy-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Jim-Hart-copy-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g706900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Toni-Onley-with-Moose-Head-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Toni-Onley-with-Moose-Head-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g706920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/yukiko-copy-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/yukiko-copy-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kumano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kumano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kumano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kumano was an early synth music artist who released an album in 1980 called simply Kumano. His father was Roy Kumano. His song I’ll Cry for You made the US and UK dance charts. The song peaked at 2…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:52:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:41:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kumano_cover_600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g707760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g708100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kumano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kumano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kumano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g708520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kumano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emma-nishimura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Emma Nishimura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/emma-nishimura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Currently based in Toronto, Emma received her MFA from the University of Nebraska-Lincoln in 2013 and her BA from the University of Guelph in 2005. Her work ranges from traditional etchings, archiv…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-29T22:18:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:36:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g709560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g709900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emma-nishimura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emma-nishimura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emma-nishimura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g710480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emma-nishimura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g710880", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g710980" - }, - { - "@id": "_:g711040" - }, - { - "@id": "_:g711100" - } - ] - }, - { - "@id": "_:g710980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/1.Emma-Nishimura.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/1.Emma-Nishimura.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g711040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2.Collected-Stories-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2.Collected-Stories-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g711100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/3.Collected-Stories-Detail.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/3.Collected-Stories-Detail.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/heather-midori-yamada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Heather Midori Yamada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/heather-midori-yamada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Heather Midori Yamada is a Sansei visual artist and teacher who works with washi, Japanese handmade papers. She leads contemplative workshops which combine guided meditation, hatha yoga and creativ…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:13:43+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:04:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamada_Heather_Midori_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g711980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g712320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/heather-midori-yamada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/heather-midori-yamada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/heather-midori-yamada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g712980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/heather-midori-yamada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g713060", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g713160" - }, - { - "@id": "_:g713180" - }, - { - "@id": "_:g713200" - } - ] - }, - { - "@id": "_:g713160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5542_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5542_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g713180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5750_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5750_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g713200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/9672_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/9672_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/japanese-manga-school/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "JAPANESE MANGA SCHOOL" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/japanese-manga-school/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Montreal Japanese Manga School « Manga Montreal » is the first school of drawing manga in Canada, founded by a professional Japanese mangaka. Manga Montreal  is pleased and excited to offer man…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:53:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:53:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/logo.png?fit=200%2C200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g714040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g714380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/japanese-manga-school/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/japanese-manga-school/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/japanese-manga-school/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g714940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/japanese-manga-school/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-sasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jon Sasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jon-sasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jon Sasaki is a Toronto-based multidisciplinary artist who explores many concurrent streams of inquiry that regularly intertwine in surprising ways. In recent years his Nikkei ancestry has been an …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-21T18:43:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-03-26T16:36:56+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/collaborative-origami-1200.jpg?fit=1200%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g715980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g716320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-sasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-sasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-sasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g717060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-sasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g717440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g717580" - }, - { - "@id": "_:g717600" - }, - { - "@id": "_:g717620" - }, - { - "@id": "_:g717640" - }, - { - "@id": "_:g717660" - } - ] - }, - { - "@id": "_:g717580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/46_microbes-swabbed-from-cassons-palette.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/46_microbes-swabbed-from-cassons-palette.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g717600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/collaborative-origami-scaled.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " collaborative origami " - } - ], - "http://schema.org/description": [ - { - "@value": " collaborative origami " - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/collaborative-origami-scaled.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g717620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Please_Dont_Take.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Please Dont Take " - } - ], - "http://schema.org/description": [ - { - "@value": " Please Dont Take " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Please_Dont_Take.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g717640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Under_The_Kamejima_Bridge-scaled.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Under The Kamejima Bridge " - } - ], - "http://schema.org/description": [ - { - "@value": " Under The Kamejima Bridge " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Under_The_Kamejima_Bridge-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g717660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/we-first-need-a-boat-scaled.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " we first need a boat " - } - ], - "http://schema.org/description": [ - { - "@value": " we first need a boat " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/we-first-need-a-boat-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-hiroaki-osaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Stanley Hiroaki Osaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/stanley-hiroaki-osaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Stanley Hiroaki Osaka was born on July 23, 1931 in Richmond, British Columbia, to Otokichi and Midori Osaka. During the Second World War, he and his parents and sister, Kimiko, were interned at Tas…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:52:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:23:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g718500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g718840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-hiroaki-osaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-hiroaki-osaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-hiroaki-osaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g719280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stanley-hiroaki-osaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansho-daiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sansho Daiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sansho-daiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Formed in 2010, Sansho Daiko is a Vancouver-based taiko group that brings a fresh approach to an ancient art form. Drawing on both traditional and contemporary repertoire, the group creates a visua…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T06:43:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:42:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho2_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g720340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g720680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansho-daiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansho-daiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansho-daiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g721440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansho-daiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g721680", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g721840" - }, - { - "@id": "_:g721860" - }, - { - "@id": "_:g721880" - }, - { - "@id": "_:g721900" - }, - { - "@id": "_:g721920" - }, - { - "@id": "_:g721940" - } - ] - }, - { - "@id": "_:g721840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_0373_Linda_Tsang_600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_0373_Linda_Tsang_600.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g721860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year_Linda_Tsang_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year_Linda_Tsang_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g721880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year2_Linda_Tsang_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year2_Linda_Tsang_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g721900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year7_Linda_Tsang_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year7_Linda_Tsang_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g721920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year8_Linda_Tsang_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year8_Linda_Tsang_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g721940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year9_Linda_Tsang_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sansho_Daiko_Asian_New_Year9_Linda_Tsang_900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/satoshi-saito/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Satoshi Saito" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/satoshi-saito/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "A sculptor, graduate of Keio University and member of the Royal Canadian Academy of Arts, Satoshi Saito has been working with Louise Doucet Saito, herself a sculptor, since 1963. In 1965, Satoshi a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:49:22+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-08T17:50:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Saito_Satoshi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g722780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g723120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/satoshi-saito/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/satoshi-saito/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/satoshi-saito/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g723700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/satoshi-saito/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g723920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g724020" - }, - { - "@id": "_:g724040" - }, - { - "@id": "_:g724060" - } - ] - }, - { - "@id": "_:g724020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1.Haru_2005_1200.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " 1. Haru Date: 2005 Material: Granite Dimension: 430 x 150 x 120 cm; 370 x 135 x 110 cm Collection: Mitsui Fudosan Co. Ltd., Tokyo Photo: Antoine Saito Copyright: DOUCET SAITO " - } - ], - "http://schema.org/description": [ - { - "@value": " 1. Haru Date: 2005 Material: Granite Dimension: 430 x 150 x 120 cm; 370 x 135 x 110 cm Collection: Mitsui Fudosan Co. Ltd., Tokyo Photo: Antoine Saito Copyright: DOUCET SAITO " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1.Haru_2005_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g724040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2.Bridge_Ascending_2003_1200.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " 2. Bridge Ascending Date: 2003 Material: Steel Dimension: 5 x 20 x 20 m Collection: Pat and Norman Webster, North Hatley, Quebec, Canada Photo: Antoine Saito Copyright: DOUCET SAITO " - } - ], - "http://schema.org/description": [ - { - "@value": " 2. Bridge Ascending Date: 2003 Material: Steel Dimension: 5 x 20 x 20 m Collection: Pat and Norman Webster, North Hatley, Quebec, Canada Photo: Antoine Saito Copyright: DOUCET SAITO " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2.Bridge_Ascending_2003_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g724060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/3.Untitled_1991_1200.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " 3. Untitled Date: 1991 Material: Stoneware Dimension: 66 x 30 x 25 cm Collection: Artists Photo: Antoine Saito Copyright: DOUCET SAITO " - } - ], - "http://schema.org/description": [ - { - "@value": " 3. Untitled Date: 1991 Material: Stoneware Dimension: 66 x 30 x 25 cm Collection: Artists Photo: Antoine Saito Copyright: DOUCET SAITO " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/3.Untitled_1991_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/m-a-tateishi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "M.A. Tateishi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/m-a-tateishi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "M.A.Tateishi is a Vancouver painter inspired by bright colour and geometric form. Her unique creative process involves up to twenty layers of painting and drawing on tissue applied to wood panel. T…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-14T18:10:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:29:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g724900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g725240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/m-a-tateishi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/m-a-tateishi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/m-a-tateishi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g725760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/m-a-tateishi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-taiko-society/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Vancouver Taiko Society" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/vancouver-taiko-society/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Taiko in Vancouver Inspired by a performance by the San Jose Taiko Group at the 1979 Powell Street Festival, members of Vancouver’s Asian community came together to form their own taiko group as a …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-25T16:43:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:17:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-43.jpg?fit=1200%2C834&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "834" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g725900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g725940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-taiko-society/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-taiko-society/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-taiko-society/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g726820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-taiko-society/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g727220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g727420" - }, - { - "@id": "_:g727440" - }, - { - "@id": "_:g727460" - }, - { - "@id": "_:g727480" - }, - { - "@id": "_:g727500" - }, - { - "@id": "_:g727520" - }, - { - "@id": "_:g727540" - }, - { - "@id": "_:g727560" - } - ] - }, - { - "@id": "_:g727420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5637998980_8db58bebf1_b.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5637998980_8db58bebf1_b.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-37.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-37.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-43.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-43.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-55.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-55.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-66.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-66.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-144.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/By-Joe-144.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2334_filtered.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2334_filtered.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g727560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2347.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2347.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-adachi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ken Adachi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ken-adachi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ken Adachi was the author of the seminal history of Japanese Canadians, The Enemy That Never Was (1976). A journalist by profession, Adachi was commissioned to write the book by the National Associ…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:25:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:05:19+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Adachi_Ken_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g728400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g728740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-adachi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-adachi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-adachi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g729220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-adachi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-sunao-shigematsu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Steve Sunao Shigematsu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/steve-sunao-shigematsu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Steve Sunao Shigematsu was born in Vancouver, British Columbia September 21, 1909. At the age of five, he and a younger brother were taken to Japan where he was raised by an uncle and aunt after th…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-06-04T19:15:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:06:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Steve-Shigematsu-Pic-600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g730280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g730620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-sunao-shigematsu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-sunao-shigematsu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-sunao-shigematsu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g731200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-sunao-shigematsu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g731440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g731580" - }, - { - "@id": "_:g731600" - }, - { - "@id": "_:g731620" - }, - { - "@id": "_:g731640" - }, - { - "@id": "_:g731660" - } - ] - }, - { - "@id": "_:g731580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Asters-1100.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "239" - } - ], - "http://schema.org/height": [ - { - "@value": "324" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Asters-1100.jpg?w=239&h=324&ssl=1" - } - ] - }, - { - "@id": "_:g731600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Butterflies-A-1100.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "237" - } - ], - "http://schema.org/height": [ - { - "@value": "324" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Butterflies-A-1100.jpg?w=237&h=324&ssl=1" - } - ] - }, - { - "@id": "_:g731620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/S-Shigematsu-Butterflies_1100.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "232" - } - ], - "http://schema.org/height": [ - { - "@value": "324" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/S-Shigematsu-Butterflies_1100.jpg?w=232&h=324&ssl=1" - } - ] - }, - { - "@id": "_:g731640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/S-Shigematsu-Fuki-1100.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "351" - } - ], - "http://schema.org/height": [ - { - "@value": "486" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/S-Shigematsu-Fuki-1100.jpg?w=351&h=486&ssl=1" - } - ] - }, - { - "@id": "_:g731660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Wildflowers-1100.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "361" - } - ], - "http://schema.org/height": [ - { - "@value": "486" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Wildflowers-1100.jpg?w=361&h=486&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vivien-nishi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Vivien Nishi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/vivien-nishi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Vivien Nishi has worked in the film industry in Vancouver for many years as a set designer, art director and production designer for TV series such as the X-Files and the comedy Psych. Currently lo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:04:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:25:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nishi_Vivien_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g732500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g732840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vivien-nishi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vivien-nishi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vivien-nishi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g733320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vivien-nishi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsugi-kikuchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mitsugi Kikuchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mitsugi-kikuchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mitsugi Shinran Kikuchi is a painter who works in traditional Japanese styles of sumi-e (ink brush painting) and tarashikomi (‘drop-in’ method of watercolour painting), and a retired ikebana sensei…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:25:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T20:49:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kikuchi_Mitsugi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g733480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g733820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsugi-kikuchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsugi-kikuchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsugi-kikuchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g734420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsugi-kikuchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g734800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g734900" - }, - { - "@id": "_:g734920" - }, - { - "@id": "_:g734940" - } - ] - }, - { - "@id": "_:g734900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_3116_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_3116_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g734920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_3798_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_3798_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g734940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ottawa-20130321-00097-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ottawa-20130321-00097-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachi-yamabe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sachi Yamabe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sachi-yamabe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sachi Yamabe is a visual artist. She was born in Burnaby, BC and grew up on Saltspring Island and Vancouver Island. She is Sansei. Yamabe received a BFA from the University of Victoria in 1987 and …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:54:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:03:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamabe_Sachi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g735780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g736120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachi-yamabe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachi-yamabe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachi-yamabe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g736680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sachi-yamabe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g736900", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g737000" - }, - { - "@id": "_:g737020" - }, - { - "@id": "_:g737040" - } - ] - }, - { - "@id": "_:g737000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hole-7in-x-9in-gouache-and-ink-on-paper-2010.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hole-7in-x-9in-gouache-and-ink-on-paper-2010.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g737020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Rowboat-22in-x-22in-acrylic-on-canvas-2010.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Rowboat-22in-x-22in-acrylic-on-canvas-2010.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g737040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Stick-Pile-4-40in-x-50in-charcoal-on-paper-1994.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Stick-Pile-4-40in-x-50in-charcoal-on-paper-1994.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brenda-kamino/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Brenda Kamino" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/brenda-kamino/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Brenda Kamino is an actress who has performed on many of Canada’s best known stages for 40 years creating many roles in new plays for Cahoots Theatre Projects, Theatre Passe Muraille, Factory…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:23:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T22:01:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kamino_Brenda_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g737880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g738220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brenda-kamino/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brenda-kamino/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brenda-kamino/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g738640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brenda-kamino/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meiko-ando/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Meiko Ando" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/meiko-ando/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "“Meiko Ando is a Butoh dancer/choreographer and printmaker who currently lives in Toronto. She completed her BA from the University of Waterloo in arts and dance. After graduating, Meiko went to Ja…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:53:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:53:38+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Ando_Mieko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g738940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g738980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meiko-ando/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meiko-ando/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meiko-ando/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g739220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meiko-ando/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-sunahara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoshiko Sunahara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoshiko-sunahara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoshiko Sunahara is a sculptor, ceramicist, and mixed media artist. With many international exhibitions, and public commissions utilizing large-scale cast bronze and ceramic sculpture in her earlie…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:03:17+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T19:56:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sunahara_Yoshiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g740080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g740420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-sunahara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-sunahara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-sunahara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g741080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-sunahara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g741460", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g741580" - }, - { - "@id": "_:g741600" - }, - { - "@id": "_:g741620" - }, - { - "@id": "_:g741640" - } - ] - }, - { - "@id": "_:g741580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/ArcticPassage_Y_Sunahara2016_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/ArcticPassage_Y_Sunahara2016_W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g741600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DeadlyCurrent_Y_Sunahara2016_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DeadlyCurrent_Y_Sunahara2016_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g741620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DrinkingBlackRain_Y_Sunahara2004_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DrinkingBlackRain_Y_Sunahara2004_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g741640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EscapefromJupiter_Y_Sunahara2001_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EscapefromJupiter_Y_Sunahara2001_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/will-shintani/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Will Shintani" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/will-shintani/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "A Yonsei, Will was born and raised in Toronto, ON, Canada. Mom is Japanese-Canadian, and Dad is Ecuadorian. Using both traditional and digital illustration, Will strives to create artworks that exa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2019-08-22T15:45:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-25T00:44:03+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/08/2022-01-31-WEBSITE-profile-pic.jpg?fit=800%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Will Shintani" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g742480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g742820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/will-shintani/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/will-shintani/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/will-shintani/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g743660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/will-shintani/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g744040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g744200" - }, - { - "@id": "_:g744220" - }, - { - "@id": "_:g744240" - }, - { - "@id": "_:g744260" - }, - { - "@id": "_:g744280" - }, - { - "@id": "_:g744300" - } - ] - }, - { - "@id": "_:g744200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2019-01-21-creatuanary-20-ONI-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "151" - } - ], - "http://schema.org/height": [ - { - "@value": "217" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2019-01-21-creatuanary-20-ONI-small.jpg?w=151&h=217&ssl=1" - } - ] - }, - { - "@id": "_:g744220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2018-02-12-cyber-hannya-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "217" - } - ], - "http://schema.org/height": [ - { - "@value": "217" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2018-02-12-cyber-hannya-small.jpg?w=217&h=217&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g744240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2019-06-27-space-pirates-print-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "168" - } - ], - "http://schema.org/height": [ - { - "@value": "217" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2019-06-27-space-pirates-print-small.jpg?w=168&h=217&ssl=1" - } - ] - }, - { - "@id": "_:g744260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2019-01-30-memories-of-japan-final-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "168" - } - ], - "http://schema.org/height": [ - { - "@value": "217" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2019-01-30-memories-of-japan-final-small.jpg?w=168&h=217&ssl=1" - } - ] - }, - { - "@id": "_:g744280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2018-06-26-dreaming-of-the-machines-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "424" - } - ], - "http://schema.org/height": [ - { - "@value": "339" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2018-06-26-dreaming-of-the-machines-small.jpg?w=424&h=339&ssl=1" - } - ] - }, - { - "@id": "_:g744300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2018-07-09-samurai-money-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "288" - } - ], - "http://schema.org/height": [ - { - "@value": "339" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2019/07/2018-07-09-samurai-money-small.jpg?w=288&h=339&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eugene-ouchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Eugene Ouchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/eugene-ouchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Eugene Ouchi was a printmaker and graphic designer. Born in Vernon, British Columbia, he studied at the Alberta College of Art – later, he became a teacher there. He had a career in the graphic des…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T22:27:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T23:06:51+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ouchi_600_03.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g745140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g745480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eugene-ouchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eugene-ouchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eugene-ouchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g746060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eugene-ouchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yokoyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takako Yokoyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takako-yokoyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takako Yokoyama is a tea ceremony and ikebana practitioner. She joined the Omote-Senke tea school and Kōfu-Mishō ikebana school when she was 15 years old in Japan. She received her master certifica…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T20:48:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:33:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yokoyama_Takako_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g746360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g746400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yokoyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yokoyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yokoyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g746860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yokoyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-szlavnics/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chiyoko Szlavnics" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/chiyoko-szlavnics/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Chiyoko Szlavnics has been composing music that combines acoustic instruments and sinewaves since around the year 2004. This combination of sound sources produces music that shimmers with aspects o…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:22:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-16T22:45:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Szlavnics_Chiyoko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g747720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g748060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-szlavnics/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-szlavnics/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-szlavnics/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g748660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chiyoko-szlavnics/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g749040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g749120" - }, - { - "@id": "_:g749140" - } - ] - }, - { - "@id": "_:g749120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Szlavnics_PhilippHennig-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Szlavnics_PhilippHennig-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g749140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SzlavnicsDrawing2012_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SzlavnicsDrawing2012_W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-issenman/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Margaret Issenman" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/margaret-issenman/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Margaret (Peggy) Issenman, graphic designer,  was born in 1956 in Montreal to Arnold and Betty (nee Kobayashi) Issenman. She lived in Montreal until the age of 16. One year was spent in Edinburgh, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:38:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:14:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Issenman_Margaret_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g749980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g750320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-issenman/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-issenman/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-issenman/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g750800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/margaret-issenman/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g750840", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g750940" - }, - { - "@id": "_:g750960" - }, - { - "@id": "_:g750980" - } - ] - }, - { - "@id": "_:g750940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EdinburghCover-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EdinburghCover-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g750960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/PaintingWithWatercolourCover_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/PaintingWithWatercolourCover_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g750980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Peggy-portrait-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Peggy-portrait-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsuru-cope/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mitsuru Cope" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mitsuru-cope/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mitsuru Cope is a Japanese-born ceramicist and painter who trained at Champlain College and Concordia University in Montreal. She has taken part in exhibitions in Quebec, Alberta, and the Czech Rep…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:16:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:41:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Cope_Mitsuru_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g751320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g751360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsuru-cope/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsuru-cope/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsuru-cope/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g751840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsuru-cope/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g752220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g752320" - }, - { - "@id": "_:g752340" - }, - { - "@id": "_:g752360" - } - ] - }, - { - "@id": "_:g752320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/auction_9ab55c98-0da8-4463-a9b0-c5b6ea18a62a-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/auction_9ab55c98-0da8-4463-a9b0-c5b6ea18a62a-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g752340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/auction_a5743585-d597-4d7c-9814-0542e7d752e1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/auction_a5743585-d597-4d7c-9814-0542e7d752e1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g752360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/auction_e7ef6862-f8c5-446f-b613-16ffad326658-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/auction_e7ef6862-f8c5-446f-b613-16ffad326658-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lauren-brevner/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lauren Brevner" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lauren-brevner/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lauren Brevner is a multidisciplinary artist based in Vancouver B.C on the unceded territories of the Coast Salish Peoples, including the territories of the xʷməθkwəy̓əm (Musqueam), Skwxwú7mesh (S…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-03-23T18:43:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-03-31T20:31:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/03/Untitleddesign.png?fit=500%2C500&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "500" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "500" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g753200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g753540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lauren-brevner/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lauren-brevner/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lauren-brevner/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g754060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lauren-brevner/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-yamamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Noriko Yamamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/noriko-yamamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Noriko Yamamoto is a mime, dancer, choreographer, Silent Storyteller, and visual artist. She studied ballet, modern and jazz dance in Japan and New York before studying mime under renowned mime art…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-24T17:17:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-07-29T19:02:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g754580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g754920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-yamamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-yamamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-yamamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g755560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-yamamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g755940", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g756020" - }, - { - "@id": "_:g756040" - } - ] - }, - { - "@id": "_:g756020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/NorikoYamamoto-S.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/NorikoYamamoto-S.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g756040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Breathe-8-copy2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Breathe-8-copy2.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brian-sano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Brian Sano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/brian-sano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Brian Sano is a Toronto-based commercial photographer who photographs merchandise, food, and cosmetics. His clients have included Holt Renfrew, Aritzia, Birks, Harry Rosen, Kraft, Procter & Gam…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:37:20+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:38:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sano_Brian_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g756880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g757220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brian-sano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brian-sano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brian-sano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g757780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brian-sano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g757820", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g757920" - }, - { - "@id": "_:g757940" - }, - { - "@id": "_:g757960" - } - ] - }, - { - "@id": "_:g757920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/91-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/91-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g757940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/107-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/107-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g757960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/147-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/147-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soyo-kagemori/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Soyo Kagemori" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/soyo-kagemori/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Soyo Kagemori is a teacher and practitioner of the Urasenke school of sado (tea ceremony) based in Montreal. He studied Urasenke methods in Kyoto, Japan, and began teaching sado in 1982, and gave p…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:33:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:34:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Tea_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g758300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g758340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soyo-kagemori/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soyo-kagemori/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soyo-kagemori/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g758740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soyo-kagemori/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eileen-koyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Eileen Koyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/eileen-koyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Eileen Koyama earned her B.Sc. in Research Psychology at the University of Toronto before moving to Tokyo to work as an editor of academic journal articles. After returning home, she worked as a fr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-22T04:30:46+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:52:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g758960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g759000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eileen-koyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eileen-koyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eileen-koyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g759480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eileen-koyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g759760", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g759860" - }, - { - "@id": "_:g759880" - }, - { - "@id": "_:g759900" - } - ] - }, - { - "@id": "_:g759860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Chaosresized-800.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Chaosresized-800.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g759880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Eileen-Koyama-Anger-Silenced-JCAD_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Eileen-Koyama-Anger-Silenced-JCAD_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g759900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/How-I-Wish-for-You-TodayJCAD-800.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/How-I-Wish-for-You-TodayJCAD-800.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-yamaguchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Masako Yamaguchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/masako-yamaguchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Masako Yamaguchi was a koto player from the Kansai region of Japan. She was trained in the Ikuta style of koto playing, her principal teachers being Miyako Kyakuden, Kinrei Shizuki, and Soyo Nakamu…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:04:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:12:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Koto_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g760740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g761080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-yamaguchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-yamaguchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-yamaguchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g761560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-yamaguchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuka-yamaguchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yuka Yamaguchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yuka-yamaguchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yuka is a self-taught visual artist born in Kobe, Japan. She studied English in Vancouver in 1995. She moved to Winnipeg in 2000 and immigrated in 2002. She’d lived in Kingston before settled in Sa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-06-10T18:29:17+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-06-10T18:30:56+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/06/Yuka_Yamaguchi-Headshot-2021.jpg?fit=1170%2C1156&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1170" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1156" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Yuka Yamaguchi" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g762480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g762540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuka-yamaguchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuka-yamaguchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuka-yamaguchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g763220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuka-yamaguchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g763500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g763580" - }, - { - "@id": "_:g763600" - } - ] - }, - { - "@id": "_:g763580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/06/Yuka_Yamaguchi-GEI-Windows_of_Hope-2021-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/06/Yuka_Yamaguchi-GEI-Windows_of_Hope-2021-scaled.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g763600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/06/Yuka_Yamaguchi-GEI-Aliens-2019-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/06/Yuka_Yamaguchi-GEI-Aliens-2019-scaled.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/walter-sunahara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Walter Sunahara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/walter-sunahara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Walter Sunahara was a painter. He was born in Vancouver and during WWII was interned as a child at Bay Farm, Slocan. Moving east after the war he earned a degree from the Ontario College of Art, To…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:15:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-08T19:39:13+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sunahara_Walter_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g764420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g764760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/walter-sunahara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/walter-sunahara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/walter-sunahara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g765280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/walter-sunahara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g765420", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g765540" - }, - { - "@id": "_:g765560" - }, - { - "@id": "_:g765580" - }, - { - "@id": "_:g765600" - } - ] - }, - { - "@id": "_:g765540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MagicGarden_W_Sunahara_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MagicGarden_W_Sunahara_W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g765560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MayaJungle_W_Sunahara_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MayaJungle_W_Sunahara_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g765580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MidnightQueen_W_Sunahara_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MidnightQueen_W_Sunahara_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g765600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SummerGenesis_W_Sunahara_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SummerGenesis_W_Sunahara_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-hope/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mia Hope" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mia-hope/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mia Hope (b. 2001) is an emerging interdisciplinary artist, photographer, writer and performer based on the unceded territories of the xʷməθkwəy̓əm (Musqueam), Skwxwú7mesh (Squamish) and Səl̓ílwəta…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T17:52:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:06:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2023/09/20.14-_-flkgj-oio176.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Mia Hope" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g765700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g765740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-hope/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-hope/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-hope/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g766260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-hope/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/butch-watanabe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Butch Watanabe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/butch-watanabe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jiro ‘Butch’ Watanabe was an accomplished jazz trombonist who played with numerous famous musicians and prominent large ensembles in Toronto and on various tours throughout the 1950s, 60s, and 70s.…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:52:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:57:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Watanabe_Butch_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g767200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g767540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/butch-watanabe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/butch-watanabe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/butch-watanabe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g768020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/butch-watanabe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/june-fukumura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "June Fukumura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/june-fukumura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "June Fukumura is a second generation Japanese-Canadian inter-disciplinary theatre artist with a BFA in Theatre Performance and a Certificate in Sustainable Community Development from Simon Fraser U…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T18:19:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-05-17T17:43:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g768800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g768840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/june-fukumura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/june-fukumura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/june-fukumura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g769480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/june-fukumura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-yamada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ruth Yamada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ruth-yamada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ruth Yamada was a sumi-e artist and watercolour painter, and founder of the Toronto-based group Sumi-e Artists of Canada. Professionally, Yamada worked as the lead fashion artist for Fairweather Cl…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:01:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:16:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamada_Ruth_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g770520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g770560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-yamada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-yamada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-yamada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g771080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-yamada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g771360", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g771460" - }, - { - "@id": "_:g771480" - }, - { - "@id": "_:g771500" - } - ] - }, - { - "@id": "_:g771460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ruth-Yamada001-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ruth-Yamada001-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g771480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ruth-Yamada004-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ruth-Yamada004-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g771500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ruth-Yamada006-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ruth-Yamada006-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/boko-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Boko Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/boko-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Boko Suzuki is a music director, composer, and arranger formerly based in Toronto and New York and now in Colorado.  He began his music career as a keyboard and piano player in the mid-1980s in Tor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:23:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:33:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Suzuki_Boko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g772320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g772660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/boko-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/boko-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/boko-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g773300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/boko-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g773520", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g773680" - }, - { - "@id": "_:g773700" - }, - { - "@id": "_:g773720" - }, - { - "@id": "_:g773740" - }, - { - "@id": "_:g773760" - }, - { - "@id": "_:g773780" - } - ] - }, - { - "@id": "_:g773680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/195840_10150427123760648_844375647_17697753_4114266_n_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/195840_10150427123760648_844375647_17697753_4114266_n_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g773700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/419338_10150623753719350_8498549349_8808815_58095487_n_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/419338_10150623753719350_8498549349_8808815_58095487_n_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g773720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/421207_10150623752419350_8498549349_8808806_1523252131_n_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/421207_10150623752419350_8498549349_8808806_1523252131_n_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g773740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/421219_10150623755624350_8498549349_8808846_736737741_n_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/421219_10150623755624350_8498549349_8808846_736737741_n_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g773760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/426779_10150623753564350_8498549349_8808814_847649683_n_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/426779_10150623753564350_8498549349_8808814_847649683_n_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g773780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/head-shot-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/head-shot-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-spence/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jennifer Spence" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jennifer-spence/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jennifer Spence is a multiple award-winning actor known for her regular roles on You Me Her, Travelers and Continuum. Born in Toronto to a Japanese Canadian mother and British Canadian father, she …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-07-13T22:48:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-07-13T22:48:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/07/Travelers-68-scaled.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Jennifer Spence" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g774640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g774980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-spence/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-spence/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-spence/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g775560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-spence/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takako Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takako-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takako Suzuki is a Japanese-born potter who practiced in Vancouver prior to her retirement. She studied at Meiji University in Tokyo, and after immigrating to Canada, at Emily Carr College of Art &…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:18:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:52:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Pottery_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g776340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g776380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g776760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-nakamura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kazuo Nakamura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kazuo-nakamura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kazuo Nakamura was an internationally recognized abstract painter, widely noted for his application of rigorous mathematical structure to his depictions of both landscapes and more abstract visuals…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:39:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-05T19:55:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nakamura_Kazuo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g777660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g777700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-nakamura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-nakamura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-nakamura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g778340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuo-nakamura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g778620", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g778740" - }, - { - "@id": "_:g778760" - }, - { - "@id": "_:g778780" - }, - { - "@id": "_:g778800" - } - ] - }, - { - "@id": "_:g778740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/dsc08991_nakamura_1020_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/dsc08991_nakamura_1020_1200.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g778760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/inner-structure-no-5-1955-1000.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/inner-structure-no-5-1955-1000.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g778780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kazuo-Nakamura-2-1000.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kazuo-Nakamura-2-1000.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g778800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kazuo-Nakamura-3-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kazuo-Nakamura-3-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randy-enomoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Randy Enomoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/randy-enomoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Randy Enomoto is the editor of Honouring Our People: Breaking the Silence, a collection of stories from the 2009 Honouring Our People conference held by the Greater Vancouver Japanese Canadian Citi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:52:10+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:21:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Enomoto_Randy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g779620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g779960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randy-enomoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randy-enomoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randy-enomoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g780260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/randy-enomoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/matt-miwa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Matt Miwa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/matt-miwa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Matt Miwa was born in North York, Ontario but grew up in Aurora, Ontario, 40 minutes north of Toronto.  With his mother’s family living in the United States, Matt grew up surrounded mostly by…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-05-17T17:41:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-01-24T23:50:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g780480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g780820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/matt-miwa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/matt-miwa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/matt-miwa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g781500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/matt-miwa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jo-anne-maikawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jo Anne Maikawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jo-anne-maikawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The last ten years of my many years of teaching with the Toronto District School Board focussed on creating and disseminating anti-racist educational materials and processes. After retiring from te…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-21T16:07:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T21:47:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/20141210_163656_1400-1.jpg?fit=1198%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1198" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g782680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g783020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jo-anne-maikawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jo-anne-maikawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jo-anne-maikawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g783540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jo-anne-maikawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g783780", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g783860" - }, - { - "@id": "_:g783880" - } - ] - }, - { - "@id": "_:g783860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/20141210_163656_1400.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/20141210_163656_1400.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g783880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/20141210_163656_1400-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/20141210_163656_1400-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobu-mccarthy/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nobu McCarthy" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nobu-mccarthy/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nobu McCarthy (nee Atsumi), born in Ottawa, Ontario, was an actress, stage director and fashion model. Her father, Masaji Atsumi, was a fashion designer in Japan and a diplomatic attaché stationed …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:39:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T23:00:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/McCarthy_Nobu_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g784600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g784640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobu-mccarthy/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobu-mccarthy/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobu-mccarthy/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g785220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobu-mccarthy/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g785500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g785620" - }, - { - "@id": "_:g785640" - }, - { - "@id": "_:g785660" - }, - { - "@id": "_:g785680" - } - ] - }, - { - "@id": "_:g785620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/345542_full.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " THE GEISHA BOY, from left: Nobu McCarthy, Robert Hirano, Jerry Lewis, 1958 " - } - ], - "http://schema.org/description": [ - { - "@value": " THE GEISHA BOY, from left: Nobu McCarthy, Robert Hirano, Jerry Lewis, 1958 " - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/345542_full.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g785640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/781424_ori_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/781424_ori_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g785660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/filmreview1_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/filmreview1_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g785680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/patnobu_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/patnobu_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/isao-sanami-morrill/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Isao Sanami Morrill" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/isao-sanami-morrill/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Isao Sanami Morrill is a Japanese-born and educated potter and painter based in Nova Scotia. In addition to studying pottery with several Japanese masters, she has also studied Western pottery meth…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:37:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T22:02:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Morrill_Isao_Sanami_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g786480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g786820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/isao-sanami-morrill/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/isao-sanami-morrill/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/isao-sanami-morrill/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g787340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/isao-sanami-morrill/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g787380", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g787480" - }, - { - "@id": "_:g787500" - }, - { - "@id": "_:g787520" - } - ] - }, - { - "@id": "_:g787480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/P1040435_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/P1040435_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g787500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/P1040442sm_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/P1040442sm_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g787520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/P1040452sm-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/P1040452sm-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordon-hashimoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Gordon Hashimoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/gordon-hashimoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Gordon Hashimoto is a Montreal-based editor and filmmaker. As a student at Concordia University, he variously produced, wrote, directed, and edited a number of experimental short films; as a profes…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:31:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:37:07+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hashimoto_Gordon_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g788400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g788740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordon-hashimoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordon-hashimoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordon-hashimoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g789300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordon-hashimoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaori-kasai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kaori Kasai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kaori-kasai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kaori Kasai (Kao), a.k.a. Sleepless Kao, is an artist-in-motion who graduated from art school (Setsu Mode Seminar) in Tokyo, specializing in fashion illustration. Since then, she travelled to live …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T21:01:03+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:41:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g790340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g790680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaori-kasai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaori-kasai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaori-kasai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g791600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaori-kasai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g791980", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g792140" - }, - { - "@id": "_:g792160" - }, - { - "@id": "_:g792180" - }, - { - "@id": "_:g792200" - }, - { - "@id": "_:g792220" - }, - { - "@id": "_:g792240" - } - ] - }, - { - "@id": "_:g792140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/big-poster-2-1024x768-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/big-poster-2-1024x768-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g792160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Book-2-1024x768-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Book-2-1024x768-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g792180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/greeting-card-2-1024x768-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/greeting-card-2-1024x768-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g792200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_1344-2-824x1024-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_1344-2-824x1024-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g792220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_5057-2-810x1024-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_5057-2-810x1024-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g792240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/monchansbag2-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/monchansbag2-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stephanie-eiko-nakagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Stephanie Eiko Nakagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/stephanie-eiko-nakagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Soprano, Dr. Stephanie Nakagawa, has a great passion for Canadian opera. Her outstanding contribution to the field and her publication, A Canadian Opera Aria Anthology for Soprano has been recogniz…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-08T04:28:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T22:35:29+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/S-Nakagawa-Headshot-1200.jpg?fit=1166%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1166" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g792960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g793000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stephanie-eiko-nakagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stephanie-eiko-nakagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stephanie-eiko-nakagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g793400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stephanie-eiko-nakagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g793680", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g793740" - } - ] - }, - { - "@id": "_:g793740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/S-Nakagawa-Headshot-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/S-Nakagawa-Headshot-1200.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-galvin/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoko Galvin" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoko-galvin/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoko Galvin was born in Tochigi, Japan. She travelled around the world in the 1970s, visiting Russia, Europe, and Canada, gaining experiences that she has beautifully incorporated into her art. Her…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-12T00:59:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:52:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/DSC_0413.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g793880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g793920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-galvin/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-galvin/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-galvin/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g794480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoko-galvin/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-sando/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tom Sando" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tom-sando/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tom Sando is the author of Wild Daisies in the Sand (2002), a book based on his diary entries from the 1940s when he was imprisoned in Petawawa and Angler. Born in British Columbia, he was raised a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:29:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:55:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sando_Tom_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g795540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g795880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-sando/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-sando/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-sando/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g796280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-sando/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-henmi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Eiko Henmi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/eiko-henmi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Eiko “Cindy” Henmi was a popular writer for The New Canadian in the 1940s. Originally from Victoria, Henmi graduated from the University of British Columbia in 1939. She usually wrote under the pen…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-13T17:01:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-16T01:11:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Henmi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g797320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g797660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-henmi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-henmi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-henmi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g798080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-henmi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-murao/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Natalie Murao" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/natalie-murao/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Natalie Murao is a yonsei (fourth generation Japanese Canadian) filmmaker and educator from “Vancouver”*. Her work explores themes of generational disconnect, personal memory, and communication. Sh…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-05T23:38:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-05T23:55:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/NatalieMurao_Headshot_2021-scaled.jpg?fit=1200%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g798360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g798400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-murao/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-murao/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-murao/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g798960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-murao/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emiko-morita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Emiko Morita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/emiko-morita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "“Emiko Morita became the Executive Director of Powell Street Festival in Vancouver 25 years after she first worked as an intern for the festival in 1990. In between, she was Marketing Director at D…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:51:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:45:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Morita_Emi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g800020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g800060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emiko-morita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emiko-morita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emiko-morita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g800460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/emiko-morita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamotsu-tongu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tamotsu Tongu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tamotsu-tongu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tamotsu Tongu is a landscape architect, the president of Toko Garden Design based in Burnaby, BC. Born in Japan, he received certification in civil engineering, in the Saga school of ikebana, garde…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T22:38:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:47:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tongu_Tamotsu_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g801240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g801580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamotsu-tongu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamotsu-tongu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamotsu-tongu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g802000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamotsu-tongu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junichi-hashimoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Junichi Hashimoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/junichi-hashimoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Junichi Hashimoto is a retired architect and active watercolor painter. He graduated from the school of architecture in Kyoto in 1962 and came to Winnipeg, Manitoba in 1966 through the Japan Archit…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:18:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:30:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hashimoto_Junichi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g803040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g803380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junichi-hashimoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junichi-hashimoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junichi-hashimoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g804000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junichi-hashimoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g804380", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g804540" - }, - { - "@id": "_:g804560" - }, - { - "@id": "_:g804580" - }, - { - "@id": "_:g804600" - }, - { - "@id": "_:g804620" - }, - { - "@id": "_:g804640" - } - ] - }, - { - "@id": "_:g804540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Amenity-Bldg-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Amenity-Bldg-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g804560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hashimoto_FalseCreek_19x27_sRGB_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hashimoto_FalseCreek_19x27_sRGB_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g804580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/JH-Architecture-JC-Directory-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/JH-Architecture-JC-Directory-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g804600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Maple-Court.Osaka-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Maple-Court.Osaka-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g804620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ozawa-Teahouse-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ozawa-Teahouse-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g804640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Warming-up-Buildg-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Warming-up-Buildg-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-yamamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiroshi Yamamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiroshi-yamamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiroshi Yamamoto is a nihonga and sumi-e painter. His artist name is ‘Hakuho.’ Yamamoto was born in Shiga prefecture in Japan. He graduated from the Kyoto Industrial Design Institute and the Kyoto …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:21:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:10:51+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamamoto_Hiroshi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g805480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g805820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-yamamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-yamamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-yamamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g806300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-yamamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g806660", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g806760" - }, - { - "@id": "_:g806780" - }, - { - "@id": "_:g806800" - } - ] - }, - { - "@id": "_:g806760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hiroshi-Yamamoto.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hiroshi-Yamamoto.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g806780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moonlight_in_the_forest_blkw_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moonlight_in_the_forest_blkw_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g806800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pinecone_Hiroshi-Yamamoto-600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Pinecone_Hiroshi-Yamamoto-600.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rui-umezawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Rui Umezawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/rui-umezawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Rui Umezawa is a Toronto-based writer of such books as Strange Light Afar and The Truth About Death and Dying. Born in Tokyo in 1959, he left Japan as a child with his father, a theoretical physici…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:53:38+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:05:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Umezawa_R_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g807520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g807560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rui-umezawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rui-umezawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rui-umezawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g807960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rui-umezawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/minako-takahashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Minako Takahashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/minako-takahashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Minako Takahashi is a visual and mixed media artist. She was born in Tokyo and moved to Takefu, Fukui-ken at the age of two. While a student at Takefu high school, her art work was chosen for inclu…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:11:04+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:42:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Minako-Takahashi-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g808900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g809240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/minako-takahashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/minako-takahashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/minako-takahashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g809780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/minako-takahashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-purschwitz/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Natalie Purschwitz" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/natalie-purschwitz/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Natalie Purschwitz is a visual artist based in Vancouver, BC. Her work seeks out spaces between art, design, performance and daily life. Purschwitz has shown her work nationally and internationally…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-17T17:13:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:08:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g810960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g811300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-purschwitz/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-purschwitz/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-purschwitz/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g811900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/natalie-purschwitz/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g812060", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g812160" - }, - { - "@id": "_:g812180" - }, - { - "@id": "_:g812200" - } - ] - }, - { - "@id": "_:g812160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/SINAV8_NPurschwitz.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/SINAV8_NPurschwitz.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g812180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/I-am-bigger-than-you.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/I-am-bigger-than-you.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g812200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/UFO2_NPurschwitz.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/UFO2_NPurschwitz.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takuro-kamata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takuro Kamata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takuro-kamata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takuro Kamata (1939-) is an artist who worked primarily in traditional Japanese methods of textile design and woodblock prints. Originally from Miyagi prefecture in Japan, Kamata studied economics …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:24:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:16:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kamata_Takuro_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g812300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g812340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takuro-kamata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takuro-kamata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takuro-kamata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g813000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takuro-kamata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g813280", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g813480" - }, - { - "@id": "_:g813500" - }, - { - "@id": "_:g813520" - }, - { - "@id": "_:g813540" - }, - { - "@id": "_:g813560" - }, - { - "@id": "_:g813580" - }, - { - "@id": "_:g813600" - }, - { - "@id": "_:g813620" - } - ] - }, - { - "@id": "_:g813480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-IMG_0257-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-IMG_0257-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-IMG003-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-IMG003-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-IMG005-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-IMG005-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3039-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3039-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG003-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG003-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG003-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG003-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG004-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG004-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g813620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/portfoliosnowgeeseKimono-bag_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/portfoliosnowgeeseKimono-bag_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toshiko-yoshikawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Toshiko Yoshikawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/toshiko-yoshikawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "“Toshiko Yoshikawa (maiden name Kodama) was born in 1920 on the family owned strawberry farm in Mission B.C. She departed for Hiroshima Japan with her father just prior to the start of the Pacific …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:54:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:51:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Yoshikawa_Toshiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g814460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g814800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toshiko-yoshikawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toshiko-yoshikawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toshiko-yoshikawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g815160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toshiko-yoshikawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-nagata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kim Nagata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kim-nagata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kim Nagata is a Calgary-based metalsmith who practiced in the 1990s. Her specialties were silver, gold, and niobium. She studied Jewellery Arts at George Brown College and the Alberta College of Ar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:19:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:34:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Tools_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g816220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g816560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-nagata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-nagata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-nagata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g816960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-nagata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yamada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "George Yamada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/george-yamada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "George Kiyoshi Yamada was the publisher and editor of the Rikka* newsletter, an important publication for the Japanese Canadian community in Toronto, for almost two decades. Yamada was born in Nebr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:31:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T23:02:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Typewriter_05_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g818000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g818340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yamada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yamada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yamada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g818680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yamada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sherri-kajiwara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sherri Kajiwara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sherri-kajiwara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sherri is Director|Curator of the Nikkei National Museum at the Nikkei National Museum & Cultural Centre in Burnaby. She has been a fine arts professional since 1992 as a gallerist, gallery dir…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-17T04:43:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:04:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g818880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g818920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sherri-kajiwara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sherri-kajiwara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sherri-kajiwara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g819720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sherri-kajiwara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g819920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g820000" - }, - { - "@id": "_:g820020" - } - ] - }, - { - "@id": "_:g820000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tanabe-installation-2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tanabe-installation-2.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g820020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tanabe-installation-pano-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tanabe-installation-pano-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/densaku-fred-kondo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Densaku (Fred) Kondo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/densaku-fred-kondo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Densaku (Fred) Kondo was a painter, known for his piece ‘Evacuation’ which is in the collection of the Japanese Canadian Cultural Centre in Toronto.  He was born in the Shiga prefecture of Japan in…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:29:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-18T19:17:56+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo_Fred_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g820120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g820160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/densaku-fred-kondo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/densaku-fred-kondo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/densaku-fred-kondo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g820840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/densaku-fred-kondo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g821240", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g821440" - }, - { - "@id": "_:g821500" - }, - { - "@id": "_:g821560" - }, - { - "@id": "_:g821620" - }, - { - "@id": "_:g821680" - }, - { - "@id": "_:g821740" - }, - { - "@id": "_:g821800" - }, - { - "@id": "_:g821860" - } - ] - }, - { - "@id": "_:g821440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo01.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo01.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo02.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo02.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo03.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo03.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo04.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo04.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo05.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo05.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo06.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo06.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo07.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo07.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g821860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo08.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kondo08.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-suyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kunio Suyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kunio-suyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kunio Suyama is an actor, singer, and emcee who has been highly active in the Toronto Buddhist Church. He is especially well-known for his role as emcee at the annual Obon Festival in Toronto. Suya…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T00:31:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:54:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kunio-Suyama-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g822740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g823080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-suyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-suyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-suyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g823600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunio-suyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-fukawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Masako Fukawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/masako-fukawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Masako Fukawa (nee Shinde) is a Sansei educator and writer. Born in Prince Rupert BC, she was removed from Steveston and relocated to the ghost town of Greenwood. Returned to Steveston in 1951, att…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-29T04:21:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T18:56:03+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Fukawa_Mas_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g824640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g824980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-fukawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-fukawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-fukawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g825400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masako-fukawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/martin-kobayakawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Martin Kobayakawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/martin-kobayakawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Martin Kobayakawa is a guitarist and songwriter who was a member of the Vancouver folk-rock band Number One Son. He performed at the first Powell Street Festival in 1977 alongside Terry Watada, and…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:12:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:30:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kobayakawa_Martin_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g825600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g825640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/martin-kobayakawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/martin-kobayakawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/martin-kobayakawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g826060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/martin-kobayakawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brent-hirose/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Brent Hirose" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/brent-hirose/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Brent Hirose is an actor, writer, director, improviser, playwright and voice over artist based in Vancouver, BC. Born in Edmonton, Alberta, he grew up all over the middle of Canada before settling …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-11T19:41:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-01-18T00:38:14+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/brent-hirose.jpeg?fit=426%2C640&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "426" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "640" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g826320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g826360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brent-hirose/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "_:g826620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#button" - } - ] - }, - { - "@id": "_:g826640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#listbox" - } - ] - }, - { - "@id": "_:g826660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#listbox" - } - ] - }, - { - "@id": "_:g826700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#button" - } - ] - }, - { - "@id": "_:g826720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#listbox" - } - ] - }, - { - "@id": "_:g826740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#listbox" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brent-hirose/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brent-hirose/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g827240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/brent-hirose/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Aiko Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/aiko-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Aiko Suzuki was a prolific and versatile artist whose work took the forms of textiles, acrylic and oil painting, or just painting, printmaking, installations, and even multimedia works and set desi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:02:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:28:13+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Suzuki_Aiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g828300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g828640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g829400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g829780", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g829920" - }, - { - "@id": "_:g829940" - }, - { - "@id": "_:g829960" - }, - { - "@id": "_:g829980" - }, - { - "@id": "_:g830000" - } - ] - }, - { - "@id": "_:g829920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/BlueBoy_LyrasChild-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/BlueBoy_LyrasChild-900.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g829940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/BlueBoy-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/BlueBoy-900.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g829960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Lacemakers-1972-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Lacemakers-1972-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g829980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MixedMedia2-96-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MixedMedia2-96-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g830000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Untitled-Charcoal-1990-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Untitled-Charcoal-1990-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyo-takata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Toyo Takata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/toyo-takata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Toyo Takata was the author of Nikkei Legacy: The Story of Japanese Canadians from Settlement to Today. Born in Victoria, Takata spent two years in internment camps before resettling in Toronto. He …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:22:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:47:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Takata_Toyo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g830840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g831180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyo-takata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyo-takata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyo-takata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g831580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyo-takata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuta-takenaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yuta Takenaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yuta-takenaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born in Japan and raised in Vancouver, Yuta Takenaka is a Japanese-Canadian actor, writer and audiobook narrator. Graduating with an English degree in the hopes of becoming a writer, his acting amb…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-02-09T23:43:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T20:16:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/02/Yuta-Takenaka-1.jpg?fit=846%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "846" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g831800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g831840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuta-takenaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuta-takenaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuta-takenaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g832380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuta-takenaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/wasteland-gardens-the-japanese-canadian-internment-in-canada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Wasteland Gardens" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/wasteland-gardens-the-japanese-canadian-internment-in-canada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Wasteland Gardens: the Japanese Canadian Internment in Canada is a two-part, one-hour radio documentary about the Japanese Canadian Internment presented on the CBC Radio show, Ideas. Japanese Canad…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T22:51:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:55:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Tape_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g832500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g832540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/wasteland-gardens-the-japanese-canadian-internment-in-canada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/wasteland-gardens-the-japanese-canadian-internment-in-canada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/wasteland-gardens-the-japanese-canadian-internment-in-canada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g833100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/wasteland-gardens-the-japanese-canadian-internment-in-canada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daphne-marlatt/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Daphne Marlatt" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/daphne-marlatt/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Daphne Marlatt is a writer who has published more than twenty books that are hybrid forms of poetry, autobiography, prose, travelogue, essay, theory, historical fiction, history, journal, theory, a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:49:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:55:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Marlatt_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g834160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g834520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daphne-marlatt/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daphne-marlatt/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daphne-marlatt/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g834820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daphne-marlatt/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-moritsugu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Frank Moritsugu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/frank-moritsugu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Frank Moritsugu is a Nisei journalist and author of Teaching in Canadian Exile: a History of the Schools for Japanese-Canadian Children in British Columbia Detention Camps During the Second World W…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:27:46+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:52:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moritsugu_F_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g835260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g835400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-moritsugu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-moritsugu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-moritsugu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g835840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-moritsugu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g836220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g836340" - }, - { - "@id": "_:g836360" - }, - { - "@id": "_:g836380" - }, - { - "@id": "_:g836400" - } - ] - }, - { - "@id": "_:g836340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/51-E6ONCzRL._SL500_SX258_BO1204203200_.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/51-E6ONCzRL._SL500_SX258_BO1204203200_.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g836360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Frank_Betty_Moritsugu_001.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Frank_Betty_Moritsugu_001.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g836380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Frank_Moritsugu_001.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Frank_Moritsugu_001.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g836400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Frank_Moritsugu_002.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Frank_Moritsugu_002.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/audrey-kobayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Audrey Kobayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/audrey-kobayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Audrey Kobayashi is a Professor of Geography at Queen’s University and a highly respected scholar in the Japanese Canadian community. Many know her for her book Memories of Our Past: A Brief Histor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:54:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:28:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kobayashi_Audrey_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g837240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g837580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/audrey-kobayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/audrey-kobayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/audrey-kobayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g837860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/audrey-kobayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mieko-ouchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mieko Ouchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mieko-ouchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mieko Ouchi is an actor, writer, and director working in theatre and film/TV. Mieko trained at U of A’s BFA Acting Program, the Women in the Director’s Chair Program and the National Screen Institu…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:23:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:52:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ouchi_Mieko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g838060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g838100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mieko-ouchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mieko-ouchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mieko-ouchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g838640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mieko-ouchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/erika-prevost/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Erika Prevost" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/erika-prevost/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Erika Prevost is a mixed race Japanese-Canadian actor born and raised in Montreal, Canada. From a young age Erika loved the spotlight. Finding her first form of expression through movement, she had…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:30:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-01-18T00:42:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/12/ErikaPrevost.jpg?fit=961%2C960&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "961" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g839700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g840060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/erika-prevost/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/erika-prevost/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/erika-prevost/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g840620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/erika-prevost/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bart-uchida/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Bart Uchida" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/bart-uchida/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Bart Shigeru Uchida is a Sansei sculptor and multimedia artist. Born in Vancouver, Canada, Uchida has studied and worked in Canada and Italy, and currently shares his time living between the United…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:38:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:00:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Uchida_Bart_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g841760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g841920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bart-uchida/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bart-uchida/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bart-uchida/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g842540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bart-uchida/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g842920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g843020" - }, - { - "@id": "_:g843040" - }, - { - "@id": "_:g843060" - } - ] - }, - { - "@id": "_:g843020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Installation-Hanoi-Raining-Rice-mixed-media-rice-plastic-pottery-reed-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Installation-Hanoi-Raining-Rice-mixed-media-rice-plastic-pottery-reed-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g843040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/NH-STONE-DANCE-USA-stone-wire-cable-17m-x-4m-x-4m-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/NH-STONE-DANCE-USA-stone-wire-cable-17m-x-4m-x-4m-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g843060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/TURF-Brookhaven-College-TX-USA-Installation-mixed-media-sound-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/TURF-Brookhaven-College-TX-USA-Installation-mixed-media-sound-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-hosaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kayo Hosaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kayo-hosaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kayo Hosaka is a craft person. She currently lives in Vancouver, where she sells her original jewelry, leather accessories, and Kimono recreations. Born in Yamanashi Japan, Hosaka moved to the USA …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-02-20T22:55:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:45:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g843900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g844240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-hosaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-hosaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-hosaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g844800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayo-hosaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g844920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g844980" - } - ] - }, - { - "@id": "_:g844980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/IMG_20171127_110233356.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/IMG_20171127_110233356.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yosh-inouye/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yosh Inouye" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yosh-inouye/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yosh Inouye is a photographer and graphic designer. He studied sociology, photography, and graphic design in Japan and came to Canada in 1968.  He worked as an advertising photographer, operating h…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:33:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:13:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Inouye_Yosh_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g845080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g845220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yosh-inouye/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yosh-inouye/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yosh-inouye/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g845780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yosh-inouye/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g846160", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g846260" - }, - { - "@id": "_:g846280" - }, - { - "@id": "_:g846300" - } - ] - }, - { - "@id": "_:g846260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yosh-093-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yosh-093-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g846280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yosh-114-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yosh-114-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g846300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yosh-Tattoo-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yosh-Tattoo-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/janet-horne-cozens/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Janet Horne Cozens" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/janet-horne-cozens/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Janet Horne Cozens began studying art at the age of two in Japan. Her love of art continued after her family immigrated to Northern Ontario thanks to her mother, a well known haiku poet, who encour…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:41:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:56:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Horne_Cozens_Janet_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g847140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g847480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/janet-horne-cozens/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/janet-horne-cozens/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/janet-horne-cozens/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g848040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/janet-horne-cozens/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g848400", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g848500" - }, - { - "@id": "_:g848520" - }, - { - "@id": "_:g848540" - } - ] - }, - { - "@id": "_:g848500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Getting-Old-low-res-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Getting-Old-low-res-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g848520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Janet-26-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Janet-26-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g848540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Janet-Horne-Cozens_Les-Petits-Fruits-de-la-Terre_16x16-427kb-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Janet-Horne-Cozens_Les-Petits-Fruits-de-la-Terre_16x16-427kb-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaneko-johkoh/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kaneko Johkoh" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kaneko-johkoh/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kaneko Johkoh is a painter. Born in Ehime prefecture, Japan, she started oil painting in 1961, and became active in artists’ associations in Japan. In 1983, she started doing bokusho abstract sumi-…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T19:49:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T23:05:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Johkoh_K_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g849340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g849500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaneko-johkoh/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaneko-johkoh/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaneko-johkoh/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g850060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaneko-johkoh/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g850440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g850580" - }, - { - "@id": "_:g850600" - }, - { - "@id": "_:g850620" - }, - { - "@id": "_:g850640" - }, - { - "@id": "_:g850660" - } - ] - }, - { - "@id": "_:g850580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1-e784a1e381a8e5bf83-1-e382b1-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1-e784a1e381a8e5bf83-1-e382b1-1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g850600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2-e784a1e381a8e5bf83-2-e382aa-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2-e784a1e381a8e5bf83-2-e382aa-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g850620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5-e381bfe381a4e38281e3828ce381b0-e382b1-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5-e381bfe381a4e38281e3828ce381b0-e382b1-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g850640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/9-e887aae794bbe5838f-e382b1b_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/9-e887aae794bbe5838f-e382b1b_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g850660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/13-e6b288e9bb99-e382b1_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/13-e6b288e9bb99-e382b1_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ernie-yamaoka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ernie Yamaoka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ernie-yamaoka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ernest (Ernie) Nobuichi Yamaoka was born in Shimane Prefecture, Japan. At fifteen, on December 25, 1920, he made the lonely and arduous sea voyage to Victoria, British Columbia.  He began his life …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:12:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T19:00:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamaoka_Ernie_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g851500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g851840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ernie-yamaoka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ernie-yamaoka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ernie-yamaoka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g852180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ernie-yamaoka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ronald-kato/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ronald Kato" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ronald-kato/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ronald Kato is a Bowen Island-based architect who specializes in sustainable design. Born in Quebec, he got his degree in architecture from McGill University, and worked on a variety of corporate a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:25:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:34:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kato_Ronald_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g852480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g852820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ronald-kato/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ronald-kato/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ronald-kato/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g853200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ronald-kato/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-oka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Steve Oka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/steve-oka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Oka is a Sansei, raised in southern Ontario from the 70s to mid 90s.  He is honoured to work on the unceded, ancestral and traditional lands of the shíshálh (Sechelt) Nation and the Skwxwu7mesh Uxw…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-12T19:25:09+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-12T19:25:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/Resized_20220307_140708.jpg?fit=900%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Steve Oka" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g854260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g854600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-oka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-oka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-oka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g854980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steve-oka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/san-murata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "San Murata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/san-murata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "ARTIST San Murata is an Ontario-based painter living in a historic small town near Toronto. Born in Japan, he graduated from the University of Musashi in Tokyo with a degree in Economics in 1964. I…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:41:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:48:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Murata_San_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g855260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g855300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/san-murata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/san-murata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/san-murata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g855880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/san-murata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-nakashima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Frank Nakashima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/frank-nakashima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Frank Tadashi Nakashima was born in Toronto on July 22, 1951. He is a graduate of York University (Toronto) Bachelor of Fine Arts 1975, specializing in the performance practice of Medieval and Rena…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:45:20+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:24:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nakashima_Frank_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g856860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g857020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-nakashima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-nakashima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-nakashima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g857740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/frank-nakashima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g858120", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g858240" - }, - { - "@id": "_:g858260" - }, - { - "@id": "_:g858280" - }, - { - "@id": "_:g858300" - } - ] - }, - { - "@id": "_:g858240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0590.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0590.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g858260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0623.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0623.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g858280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0625.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0625.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g858300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0627.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0627.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-dunstan/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Susan Dunstan" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/susan-dunstan/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Susan Dunstan is a singer, voice teacher and musical theatre performer.  She has spent the past 20 years on some of the most prestigious stages, playing lead roles in Tony Award winning musicals ac…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:42:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:58:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dunstan_Susan_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g859140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g859480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-dunstan/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-dunstan/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-dunstan/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g860020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-dunstan/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midge-ayukawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Midge Ayukawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/midge-ayukawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Michiko ‘Midge’ Ayukawa was a Nisei historian who specialized in Hiroshima immigrants and women’s experience in Japanese Canadian history. Born Michiko Ishii in Vancouver, Ayukawa was interned in L…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:56:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:13:41+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ayukawa_Midge_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g861060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g861400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midge-ayukawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midge-ayukawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midge-ayukawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g861780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midge-ayukawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sayaka-isojima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sayaka Isojima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sayaka-isojima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born in Osaka, Japan,  Sayaka Isojima is a Vancouver-based ikebana artist who has studied at Ikenobo Ikebana School since 2012. Also, Sayaka has enjoyed studying photography at Vancouver Photo work…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-03T21:11:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:40:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_4394-1-1200.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g862060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g862100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sayaka-isojima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sayaka-isojima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sayaka-isojima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g862540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sayaka-isojima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-inouye/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joni Inouye" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joni-inouye/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joni Inouye is a Toronto-based interior designer who worked with Moriyama & Teshima Architects. Born in Japan, she studied architectural technology at Ryerson Polytechnical Institute, and went …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:18:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:27:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Inouye_Joni_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g863520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g863680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-inouye/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-inouye/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-inouye/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g863980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joni-inouye/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gloria-kagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Gloria Kagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/gloria-kagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Gloria Kagawa is an established printmaker, painter, and mixed media artist whose works have earned her several awards and are included in a number of public, private, and corporate collections. Gl…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T21:42:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:21:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kagawa_Gloria_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g864820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g865180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gloria-kagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gloria-kagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gloria-kagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g865720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gloria-kagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joy-kogawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joy Kogawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joy-kogawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joy Kogawa was born in Vancouver in 1935. As a young child, she and her family were forced to leave their home in the Marpole neighbourhood and move to the Slocan internment camp in the interior of…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:20:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T19:06:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kogawa_Joy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g866760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g867100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joy-kogawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joy-kogawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joy-kogawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g867700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joy-kogawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g868080", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g868160" - }, - { - "@id": "_:g868180" - } - ] - }, - { - "@id": "_:g868160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5025135_orig.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5025135_orig.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g868180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/obasan-cover_web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/obasan-cover_web.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kate-kamo-mchugh/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kate Kamo McHugh" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kate-kamo-mchugh/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kate Kamo McHugh is a dance and theatre artist from Kitchener, Ontario. Recent highlights include an artist residency at the National Arts Centre, presenting a solo piece at IMPACT 21 Theatre Festi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-14T17:46:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-14T17:46:29+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/IMG_1185-scaled.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Kate Kamo McHugh" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g869040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g869380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kate-kamo-mchugh/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "_:g869500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#presentation" - } - ] - }, - { - "@id": "_:g869540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#presentation" - } - ] - }, - { - "@id": "_:g869560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#presentation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kate-kamo-mchugh/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kate-kamo-mchugh/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g869980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kate-kamo-mchugh/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rick-shiomi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Rick Shiomi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/rick-shiomi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Rick Shiomi is a Toronto-born theatre artist now based in Minneapolis, Minnesota, and a leader in early Asian Canadian theatre movement in the 1980s. He credits his time spent in Vancouver in the 1…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-19T04:54:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:16:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shiomi_Rick_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g870260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g870300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rick-shiomi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rick-shiomi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rick-shiomi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g870660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rick-shiomi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denise-fujiwara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Denise Fujiwara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/denise-fujiwara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Denise Fujiwara is a choreographer, dancer, teacher and presenter. EUNOIA, her multimedia adaptation of Christian Bök’s award-winning book was premiered by World Stage at Harbourfront Centre in Tor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:31:04+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:53:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Fujiwara_Denise_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g871500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g871860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denise-fujiwara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denise-fujiwara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denise-fujiwara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g872440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denise-fujiwara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g872820", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g872900" - }, - { - "@id": "_:g872920" - } - ] - }, - { - "@id": "_:g872900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/MG_9313x1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/MG_9313x1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g872920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Denise-by-Denise-Grant.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Denise-by-Denise-Grant.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/justine-wong/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Justine Wong" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/justine-wong/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "hello! I’m Justine Wong, a full-time freelance illustrator based in Toronto and Tokyo. I am also the creator of the project ’21 Days in Japan: An Illustrative Study on Japanese Cuisine&…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-06-04T21:21:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-06-17T19:28:27+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g873780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g874120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/justine-wong/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/justine-wong/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/justine-wong/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g874760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/justine-wong/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g875140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g875200" - } - ] - }, - { - "@id": "_:g875200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/download.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/download.jpeg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshimaru-abe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoshimaru Abe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoshimaru-abe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoshimaru Abe was an entertainer, artist, haiku poet, garden designer. Born in 1914 in Fukuoka, Japan, Abe immigrated to Canada in 1927 to join his parents in Port Hammond, BC. There he worked for …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:46:07+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:24:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Abe_Y_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g876040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g876380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshimaru-abe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshimaru-abe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshimaru-abe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g876960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshimaru-abe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-aoki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jennifer Aoki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jennifer-aoki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jennifer Aoki (she/her) is a Japanese Canadian performance and emerging choreographer based in Vancouver, British Columbia, the unceded territories of the Squamish, Musqueam and Tsleil-Waututh Nati…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-08T23:03:17+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-09T20:54:34+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/michelle-moore-scaled.jpg?fit=1200%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Jennifer Aoki photo by michelle moore" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g877260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g877300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-aoki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-aoki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-aoki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g877820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jennifer-aoki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ryan-takatsu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ryan Takatsu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ryan-takatsu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ryan Takatsu is a sansei, designer, video artist and cultural equity advocate. Born in Winnipeg and studied at the University of Manitoba – Faculty of Architecture: Interior Design graduate; Banff …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:22:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:22:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ryan-T-MOD.jpg?fit=637%2C479&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "637" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "479" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g878700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g879040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ryan-takatsu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ryan-takatsu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ryan-takatsu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g879560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ryan-takatsu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g879940", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g880000" - } - ] - }, - { - "@id": "_:g880000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20476098_1382738305174695_7342531013855539941_n.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/20476098_1382738305174695_7342531013855539941_n.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-bailey/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Junko Bailey" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/junko-bailey/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Junko Bailey is an artist/actor/writer/filmmaker, originally from Sasebo, Nagasaki, Japan, and based in Winnipeg, Manitoba, Canada.  She holds a B.A. in English Literature from Doshisha University …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-14T19:07:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-18T17:50:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/Junko-Bailey-scaled.jpg?fit=801%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "801" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g880860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g881200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-bailey/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-bailey/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-bailey/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g881840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/junko-bailey/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michiko-nakamura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Michiko Nakamura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/michiko-nakamura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Michiko Nakamura is a ceramic artist, born and raised in Japan. Her relationship to clay and art began in childhood; she grew up near a town famous for its history of over 1200 years of pottery pro…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:13:20+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:28:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nakamura_Michiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g883020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g883360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michiko-nakamura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michiko-nakamura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michiko-nakamura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g883860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michiko-nakamura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g884080", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g884180" - }, - { - "@id": "_:g884200" - }, - { - "@id": "_:g884220" - } - ] - }, - { - "@id": "_:g884180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_0991-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DSC_0991-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g884200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MichikoNakamura-2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/MichikoNakamura-2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g884220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Soar2017.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Soar2017.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-aylward/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "David Aylward" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/david-aylward/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "David Aylward is a literary translator of Japanese poetry who translated the haiku and tanka of Issei and Nisei poets who appeared in paper doors: an anthology of Japanese-Canadian poetry (Coach Ho…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T00:17:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:46:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Book_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g884320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g884360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-aylward/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-aylward/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-aylward/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g884680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-aylward/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chie-kamegaya/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chie Kamegaya" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/chie-kamegaya/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Chie Kamegaya was a poet and author of Seasons in New Denver: Haiku (1994). Born in Japan to a samurai family, Kamegaya became a teacher in Tokyo, where she met her husband. After marriage, she joi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:02:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:49:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kamegaya_C_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g885600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g885940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chie-kamegaya/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chie-kamegaya/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chie-kamegaya/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g886420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chie-kamegaya/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ellen-anderson/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ellen Anderson" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ellen-anderson/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ayako Ellen Yamasaki Anderson is an artist, writer, and social activist.  She was born in 1943, in Sandon, BC. Sandon was an internment camp for Japanese Canadians during the war. Ellen is consider…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T03:34:40+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:32:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/EllenAnderson.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g887600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g887940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ellen-anderson/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ellen-anderson/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ellen-anderson/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g888400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ellen-anderson/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g888780", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g888860" - }, - { - "@id": "_:g888880" - } - ] - }, - { - "@id": "_:g888860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EllenAnderson1_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EllenAnderson1_900.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g888880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EllenAnderson2_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/EllenAnderson2_900.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoko-boycott/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kiyoko Boycott" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kiyoko-boycott/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kiyoko Boycott is an ikebana teacher and practitioner. She is one of the founding members of the Vancouver Ikebana Association, and has been teaching and practicing ikebana for over 50 years. Befor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-13T00:13:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T23:00:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/group.Emperor-visit.2009_1200.jpg?fit=1200%2C900&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g889720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g890060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoko-boycott/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoko-boycott/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoko-boycott/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g890500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kiyoko-boycott/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g890720", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g890820" - }, - { - "@id": "_:g890840" - }, - { - "@id": "_:g890860" - } - ] - }, - { - "@id": "_:g890820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Boycott-Sensei.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Boycott-Sensei.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g890840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/floor-ikebana.2009.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/floor-ikebana.2009.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g890860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/group.Emperor-visit.2009_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/group.Emperor-visit.2009_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kusano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Kusano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-kusano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Kusano is a Sansei country-folk singer who was billed as the ‘Yodelling Cowboy.’ He was active in the 1960s era of the Yorkville Village in Toronto, and well-known for his rendition of Gordon L…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:56:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:42:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_04_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g890960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g891000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kusano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kusano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kusano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g891400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kusano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaylie-hatashitakaylie-kreatrix/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kaylie Hatashita(Kaylie Kreatrix)" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kaylie-hatashitakaylie-kreatrix/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Pronoun: She/Her Multi-disciplinary performer, Kaylie is a circus artist, musician, and all round creative soul born in Ottawa, Ontario. Growing up she studied violin and dance, and as an adult she…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2023-05-18T22:57:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-05-18T22:57:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2023/05/IMG_0045-7.jpeg?fit=1104%2C1104&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1104" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1104" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g892480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g892820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaylie-hatashitakaylie-kreatrix/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaylie-hatashitakaylie-kreatrix/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaylie-hatashitakaylie-kreatrix/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g893600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaylie-hatashitakaylie-kreatrix/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeannette-hirasawa-moore/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jeannette Hirasawa Moore" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jeannette-hirasawa-moore/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Flutist Jeannette Hirasawa Moore has appeared as soloist with the Toronto Symphony, Calgary Philharmonic, Ensemble Sir Ernest MacMillan and Hart House Orchestra. Originally from Hamilton ON, Hirasa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:51:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T22:55:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moore_Jeannette_Hirasawa_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g894640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g894980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeannette-hirasawa-moore/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeannette-hirasawa-moore/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeannette-hirasawa-moore/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g895380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeannette-hirasawa-moore/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-nakamura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Raymond Nakamura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/raymond-nakamura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Raymond was born and raised in Toronto but has lived most of his working life in Vancouver. Long, long ago, the University of Toronto gave Raymond a degree in Zoology and Japanese Language. Then Ky…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T16:21:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T21:27:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g895580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g895620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-nakamura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-nakamura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-nakamura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g896200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-nakamura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g896500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g896600" - }, - { - "@id": "_:g896620" - }, - { - "@id": "_:g896640" - } - ] - }, - { - "@id": "_:g896600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sayonara-Slocan-Bloom-2016.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sayonara-Slocan-Bloom-2016.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g896620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kokeshi-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kokeshi-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g896640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/daruby.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/daruby.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bradley-kurushima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Bradley Kurushima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/bradley-kurushima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Prince Shima is a multi-instrumentalist, producer and third generation Japanese-Canadian based in Victoria BC. By the age of 12 he was writing and performing original compositions live. He has fron…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-08-16T17:22:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-08-16T17:22:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/profile.jpg?fit=1200%2C1083&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1083" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g897480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g897820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bradley-kurushima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bradley-kurushima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bradley-kurushima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g898480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bradley-kurushima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g898880", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g898980" - }, - { - "@id": "_:g899000" - }, - { - "@id": "_:g899020" - } - ] - }, - { - "@id": "_:g898980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/Alistair-Henning-2FD265F8-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "386" - } - ], - "http://schema.org/height": [ - { - "@value": "515" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/Alistair-Henning-2FD265F8-scaled.jpg?w=386&h=515&ssl=1" - } - ] - }, - { - "@id": "_:g899000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/profile.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "326" - } - ], - "http://schema.org/height": [ - { - "@value": "294" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/profile.jpg?w=326&h=294&ssl=1" - } - ] - }, - { - "@id": "_:g899020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/Dayna-Szyndrowski-IMG_0669-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "326" - } - ], - "http://schema.org/height": [ - { - "@value": "217" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/08/Dayna-Szyndrowski-IMG_0669-scaled.jpg?w=326&h=217&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carol-oya/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Carol Oya" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/carol-oya/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Carol Oya hails from Vancouver. She’s been singing pretty much all her life. As a kid, she loved to watch “Solid Gold” and mimic her idols, Olivia Newton-John and Sheena Easton. L…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-11T03:15:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:32:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g899860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g900200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carol-oya/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carol-oya/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carol-oya/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g901300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carol-oya/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g901520", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g901620" - }, - { - "@id": "_:g901640" - }, - { - "@id": "_:g901660" - } - ] - }, - { - "@id": "_:g901620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_1710.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_1710.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g901640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0677.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0677.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g901660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/832014-PSF-Peter-Wong-Peakphoto.ca-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/832014-PSF-Peter-Wong-Peakphoto.ca-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mami-mizutani/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mami Mizutani" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mami-mizutani/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mami is a Vancouver-based business woman who founded Beauty Secrets of Japan and Camellia Japan. Mami immigrated to Canada, from Osaka Japan, in 1999. She is a graduate of Otani University and cont…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-26T16:24:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:58:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g902500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g902840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mami-mizutani/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mami-mizutani/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mami-mizutani/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g903380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mami-mizutani/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g903500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g903560" - } - ] - }, - { - "@id": "_:g903560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_1020-2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_1020-2.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chieri-uegaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chieri Uegaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/chieri-uegaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Chieri is a second generation Japanese-Canadian and writer of books for young readers. She graduated from the University of British Columbia’s Creative Writing Department with a Bachelor of Fine Ar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-06-05T18:42:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-17T23:06:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g903660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g903700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chieri-uegaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chieri-uegaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chieri-uegaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g904220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chieri-uegaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g904520", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g904620" - }, - { - "@id": "_:g904640" - }, - { - "@id": "_:g904660" - } - ] - }, - { - "@id": "_:g904620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/HIGH_RES_FINALS-0015.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/HIGH_RES_FINALS-0015.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g904640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Ojiichans-Gift-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/Ojiichans-Gift-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g904660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/HanaHashimotoSixthViolin_2276_preview-01.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/06/HanaHashimotoSixthViolin_2276_preview-01.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-ishiwata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Eiko Ishiwata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/eiko-ishiwata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Eiko started professionally composing music for video games and film in 2002. In addition to strengths in composition she is a multi-instrumentalist who has fine-tuned her sound engineering by stud…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-04-07T19:51:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T20:13:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/04/thumbnail_image.png?fit=667%2C1000&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "667" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1000" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g905500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g905840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-ishiwata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-ishiwata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-ishiwata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g906320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiko-ishiwata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-kubo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Noboru Kubo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/noboru-kubo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Noboru Kubo was a Japanese-born and educated fourth generation master potter. In Japan he studied his craft alongside his father, and at the Kyoto Industrial Arts School, where he received a degree…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:10:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:36:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kubo_Noboru_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g907360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g907700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-kubo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-kubo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-kubo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g908460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noboru-kubo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g908840", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g909060" - }, - { - "@id": "_:g909080" - }, - { - "@id": "_:g909100" - }, - { - "@id": "_:g909120" - }, - { - "@id": "_:g909140" - }, - { - "@id": "_:g909160" - }, - { - "@id": "_:g909180" - }, - { - "@id": "_:g909200" - }, - { - "@id": "_:g909220" - } - ] - }, - { - "@id": "_:g909060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo01.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo01.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo02.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo02.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo03.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo03.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo04.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo04.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/44D7803BE7F841C09B023ADEC86FBC5F_1100.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/44D7803BE7F841C09B023ADEC86FBC5F_1100.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/77B249BF75D64D14A643A223C18E8346_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/77B249BF75D64D14A643A223C18E8346_900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DBD4E2071BF445C692A1631DCD354783_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DBD4E2071BF445C692A1631DCD354783_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/E5FE912D1B934434A0CEC069A34DD39E_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/E5FE912D1B934434A0CEC069A34DD39E_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/F7329A3BF52E4C84BC8914FC684B3A0E_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/F7329A3BF52E4C84BC8914FC684B3A0E_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909260", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g909360" - }, - { - "@id": "_:g909380" - }, - { - "@id": "_:g909400" - }, - { - "@id": "_:g909420" - } - ] - }, - { - "@id": "_:g909360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo01.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo01.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo02.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo02.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo03.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo03.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g909420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo04.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/kubo04.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-greenaway/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Rachel Greenaway" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/rachel-greenaway/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "R.M. GREENAWAY lives in Nelson, BC. She has written the acclaimed six-book BC Blues crime series and several short stories, and is now contemplating a new series. Check out her work or get in touch…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-08T23:40:22+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-13T18:30:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Headshot-Bridge-2.jpg?fit=1200%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "RM Greenaway" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g910260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g910600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-greenaway/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-greenaway/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-greenaway/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g911300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rachel-greenaway/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g911420", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g911500" - }, - { - "@id": "_:g911520" - } - ] - }, - { - "@id": "_:g911500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2021-09-15-6-COVER-POSTCARD-72dpi.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "437" - } - ], - "http://schema.org/height": [ - { - "@value": "253" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/2021-09-15-6-COVER-POSTCARD-72dpi.jpg?w=437&h=253&ssl=1" - } - ] - }, - { - "@id": "_:g911520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/RM_Greenaway.jpg-300dpi.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "275" - } - ], - "http://schema.org/height": [ - { - "@value": "253" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/RM_Greenaway.jpg-300dpi.jpg?w=275&h=253&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruko-okano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Haruko Okano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/haruko-okano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Haruko Okano is a process-based, collaborative, multidisciplinary, mixed media artist whose practice aims to break away from traditional, Eurocentric genres to integrate elements of her Japanese an…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:56:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:43:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Okano_Haruko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g911720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g912060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruko-okano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruko-okano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruko-okano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g912640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruko-okano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g913020", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g913120" - }, - { - "@id": "_:g913140" - }, - { - "@id": "_:g913160" - } - ] - }, - { - "@id": "_:g913120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/HighbridiTea-Nomad-place-setting-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/HighbridiTea-Nomad-place-setting-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g913140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Spirit-Pass-close-up-of-stencil-blanket-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Spirit-Pass-close-up-of-stencil-blanket-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g913160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/The-Gift-of-Heritage-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/The-Gift-of-Heritage-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-koshiyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiroshi Koshiyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiroshi-koshiyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiroshi Koshiyama co-founded the Winnipeg-based professional taiko group Fubuki Daiko with his wife, Naomi Guilbert in 1995. Born and raised in San Francisco, he became a Canadian citizen in 2000 a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:56:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:25:51+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Koshiyama_Hiroshi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g914000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g914340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-koshiyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-koshiyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-koshiyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g914780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroshi-koshiyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terry-watada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Terry Watada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/terry-watada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Terry Watada is a poet, novelist, short story writer, historian, playwright, columnist, essayist, and music composer.  He has published five poetry collections, three novels, a short story collecti…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-19T16:54:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-07T00:18:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/T-Watada-headshot.jpg?fit=1200%2C1033&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1033" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g915820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g916160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terry-watada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terry-watada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terry-watada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g916700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terry-watada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-hattori/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tomo Hattori" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tomo-hattori/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tomo Hattori is a literary critic. He is an associate professor of Asian American studies at California State University, Northridge (CSUN). He is most recently the author of The Monkey and the Col…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:24:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:26:50+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hattori_Tomo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g917740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g918080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-hattori/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-hattori/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-hattori/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g918400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-hattori/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-hoyano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Warren Hoyano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/warren-hoyano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Warren Hoyano works with paper and watercolour. He creates two and three-dimensional work often by non-traditional means. This involves bending and folding prepared paper in ways that add structure…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-09T17:16:22+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:15:47+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g918760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g919100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-hoyano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-hoyano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-hoyano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g919860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-hoyano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g920240", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g920400" - }, - { - "@id": "_:g920420" - }, - { - "@id": "_:g920440" - }, - { - "@id": "_:g920460" - }, - { - "@id": "_:g920480" - }, - { - "@id": "_:g920500" - } - ] - }, - { - "@id": "_:g920400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/01.Hoyano.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/01.Hoyano.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g920420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/02.Hoyano.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/02.Hoyano.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g920440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/03.Hoyano.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/03.Hoyano.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g920460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/04.Hoyano.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/04.Hoyano.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g920480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/05.Hoyano.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/05.Hoyano.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g920500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/06.Hoyano.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/06.Hoyano.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-peng/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nancy Peng" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nancy-peng/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nancy Peng has a degree in math from The University of Waterloo and blends her analytical skills and creativity in her approach to art and teaching. She enjoys the technical aspects of printmaking …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:29:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:55:13+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g921340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g921680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-peng/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-peng/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-peng/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g922180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-peng/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Laura Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/laura-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Laura Suzuki is a graphic designer with a multidisciplinary background, including biological psychology, science writing, and print and web design. She co-founded the company Doodletronics with ill…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:54:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:23:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Suzuki_L_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g923220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g923560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g923900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-k-kiyooka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy K. Kiyooka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-k-kiyooka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "One of the first Japanese Canadian artists to achieve prominence on a national and international scale, Roy Kiyooka began his art practice as a painter, later turned his focus to poetry and photogr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:50:03+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:32:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Kiyooka_Roy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g924020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g924060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-k-kiyooka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-k-kiyooka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-k-kiyooka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g924660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-k-kiyooka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ohi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ruth Ohi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ruth-ohi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ruth Ohi is a writer and illustrator of children’s books. She has illustrated over 60 books, 19 of which she is also the author. Her work includes the illustrations for Naomi’s Tree by Joy Kogawa, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:55:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-25T23:34:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ohi_R_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g925700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g926040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ohi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ohi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ohi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g926520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ohi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sophia-wolfe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sophia Wolfe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sophia-wolfe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sophia Wolfe is a dance artist who also works in visual media including photography, film, and video art. She typically is from Vancouver, Canada on unceded Coast Salish territories, of the xʷməθkw…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-04-07T19:53:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-26T01:32:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/04/Sophia-Wolfe-photo-by-Sammy-Chien-copy-scaled.jpg?fit=900%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g926820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g926860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sophia-wolfe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sophia-wolfe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sophia-wolfe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g927460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sophia-wolfe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dana-lacroix/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Dana LaCroix" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/dana-lacroix/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Dana LaCroix, born April 1, 1966, is a Canadian-born singer and songwriter. She has released six roots and blues-influenced studio albums that incorporate elements of pop, roots-rock, country and f…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:08:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:59:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/LaCroix_Dana_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g928320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g928660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dana-lacroix/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dana-lacroix/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dana-lacroix/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g929240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dana-lacroix/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g929620", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g929720" - }, - { - "@id": "_:g929740" - }, - { - "@id": "_:g929760" - } - ] - }, - { - "@id": "_:g929720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dana-LaCroix-press-photo-2s-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dana-LaCroix-press-photo-2s-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g929740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dana-LaCroix-Press-Photo-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dana-LaCroix-Press-Photo-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g929760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dana-LaCroix-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Dana-LaCroix-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-takeshi-mcgregor/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mark Takeshi McGregor" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mark-takeshi-mcgregor/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Described as a “mind-blowing” musician of “huge physical energy” (Victoria Times Colonist), flutist Mark Takeshi McGregor is widely regarded as one of Canada’s leading interpreters of contemporary,…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-06T22:18:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:51:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g930600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g930940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-takeshi-mcgregor/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-takeshi-mcgregor/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-takeshi-mcgregor/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g931600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mark-takeshi-mcgregor/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g932000", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g932080" - }, - { - "@id": "_:g932140" - } - ] - }, - { - "@id": "_:g932080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/McGregor-headshot-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/McGregor-headshot-1.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g932140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Mark-BW-small.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/Mark-BW-small.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaya/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kaya" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kaya/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kaya is a vocalist and songwriter based in Burnaby, BC with a Bachelor of Music in Jazz from Capilano University. As a queer woman of colour, she values diversity and representation, and strives to…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-08T23:32:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-06T17:40:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/NEF_4000-scaled.jpg?fit=1200%2C801&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "801" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Kaya" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g933020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g933360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaya/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaya/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaya/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g934180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kaya/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ajon-moriyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ajon Moriyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ajon-moriyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ajon Moriyama is an award-winning independent architect based in Toronto. With a Bachelor of Architecture degree from Carleton University, he worked at his father Raymond Moriyama’s architecture fi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:56:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:42:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moriyama_Ajon_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g934480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g934520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ajon-moriyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ajon-moriyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ajon-moriyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g934920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ajon-moriyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-imai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Noriko Imai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/noriko-imai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Noriko Imai is a painter who was born in Tokyo and raised in Yokohama. She is a member of La Société canadienne de l’aquarelle (THE CANADIAN WATERCOLOR SOCIETY). From a young age, Imai was in…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:16:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:29:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Imai_Noriko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g935780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g936120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-imai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-imai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-imai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g936760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-imai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g937140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g937240" - }, - { - "@id": "_:g937260" - }, - { - "@id": "_:g937280" - } - ] - }, - { - "@id": "_:g937240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_4748.JPG-300DPI-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_4748.JPG-300DPI-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g937260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_5189_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_5189_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g937280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/test-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/test-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/danielle-jette/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Danielle Jette" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/danielle-jette/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Danielle Jette is a Vancouver based graphic designer and illustrator. She studied at Emily Carr University of Art and Design and graduated in 2013 with a Bachelor of Fine Art majoring in illustrati…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-01-09T20:28:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:38:27+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g938140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g938480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/danielle-jette/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/danielle-jette/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/danielle-jette/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g939120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/danielle-jette/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g939500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g939600" - }, - { - "@id": "_:g939620" - }, - { - "@id": "_:g939640" - } - ] - }, - { - "@id": "_:g939600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/arrival_web-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/arrival_web-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g939620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/taiken_HM_web-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/taiken_HM_web-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g939640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/translink_buzzer_web-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/translink_buzzer_web-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-homma/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chibi Taiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shinobu-homma/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Visit the post for more." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-24T18:19:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:14:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/shomma_01.jpg?fit=860%2C860&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "860" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "860" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g940480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g940820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-homma/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-homma/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-homma/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g941360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinobu-homma/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g941580", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g941640" - } - ] - }, - { - "@id": "_:g941640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/shomma_01.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/shomma_01.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akiko-tsuji/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Akiko Tsuji" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/akiko-tsuji/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Akiko Tsuji was born in Steveston in April 1930 and lived nearly her entire life in British Columbia as a Japanese-Canadian. She aspired to be a fashion designer from a young age and often found he…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-30T05:02:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:57:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Akiko-Tsuji.jpg?fit=600%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g941740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g941780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akiko-tsuji/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akiko-tsuji/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akiko-tsuji/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g942120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akiko-tsuji/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-sonoda/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Warren P. Sonoda" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/warren-sonoda/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "BAFTA-winning and Emmy-nominated filmmaker Warren P. Sonoda is known for directing his features Coopers’ Camera, Swearnet: The Movie, 5ive Girls, Ham & Cheese, the iconic TV shows Trailer Park …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-01-20T23:19:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:18:46+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/01/download.png?fit=999%2C667&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "999" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "667" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g942980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g943320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-sonoda/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-sonoda/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-sonoda/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g943720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/warren-sonoda/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-masumoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takako Masumoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takako-masumoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takako Masumoto was a traditional Japanese textile artist, trained in the Ryukyu Bingata style of katazome. Based in the Montreal area, she exhibited her work in a solo exhibition at the Japanese C…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:09:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T02:44:38+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Masumoto_Takako_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g944380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g944720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-masumoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-masumoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-masumoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g945380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-masumoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g945760", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g945880" - }, - { - "@id": "_:g945900" - }, - { - "@id": "_:g945920" - }, - { - "@id": "_:g945940" - } - ] - }, - { - "@id": "_:g945880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0001.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0001.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g945900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0002.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0002.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g945920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0003.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0003.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g945940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0004.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/0004.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harvey-okawara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Harvey Okawara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/harvey-okawara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Harvey Hideo Okawara was an architect, born in Vancouver, BC, and interned in Tashme, before moving to Toronto where he completed high school and attended the University of Toronto. He worked at va…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T19:10:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:59:30+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g946780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g947120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harvey-okawara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harvey-okawara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harvey-okawara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g947480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harvey-okawara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steven-nunoda/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Steven Nunoda" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/steven-nunoda/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Steven Nunoda is a Winnipeg-based multidisciplinary artist who works primarily in sculpture and installation, but also uses a variety of other media, such as woodcarving, found-objects, photography…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T22:03:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:27:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nunoda_Steven_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g947780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g947820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steven-nunoda/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steven-nunoda/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steven-nunoda/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g948140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/steven-nunoda/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ikeda/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "John Ikeda" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/john-ikeda/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "John Ikeda is a ceramicist." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:20:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T20:46:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ikeda_John_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g949000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g949340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ikeda/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ikeda/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ikeda/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g949700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ikeda/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g949920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g950000" - }, - { - "@id": "_:g950020" - } - ] - }, - { - "@id": "_:g950000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2016-tiles-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2016-tiles-1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g950020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_1067_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_1067_W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuka-kai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shizuka Kai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shizuka-kai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shizuka is a multidisciplinary artist with a focus on set design and puppetry. She also works as a trained puppeteer on tv/film, an illustrator/graphic designer, director, and earring maker. She is…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-05-17T15:22:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-08T18:23:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g950680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g951020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuka-kai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuka-kai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuka-kai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g951980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuka-kai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g952360", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g952520" - }, - { - "@id": "_:g952540" - }, - { - "@id": "_:g952560" - }, - { - "@id": "_:g952580" - }, - { - "@id": "_:g952600" - }, - { - "@id": "_:g952620" - } - ] - }, - { - "@id": "_:g952520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/IMG_3123-3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/IMG_3123-3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g952540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/10931485_10152497041217522_9036999952712709171_n-3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/10931485_10152497041217522_9036999952712709171_n-3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g952560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/18402025_10154321368462522_1388973334536833292_o-3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/18402025_10154321368462522_1388973334536833292_o-3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g952580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/IMG_0402-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/IMG_0402-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g952600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/7A7EC7EC-505D-46E3-A9D3-2558167A0F6F-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/7A7EC7EC-505D-46E3-A9D3-2558167A0F6F-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g952620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/Otosan-show-image-text.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/Otosan-show-image-text.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denis-akiyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Denis Akiyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/denis-akiyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Denis Akiyama is an actor and voice actor with extensive credits in theatre, film, and television. Born and raised in Toronto, Akiyama received a BA in Psychology from York University and began wor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:35:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:39:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Akiyama.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g953460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g953800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denis-akiyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denis-akiyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denis-akiyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g954220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/denis-akiyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-hamada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jeff Hamada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jeff-hamada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jeff Hamada is second generation Japanese Canadian artist living and working in beautiful Vancouver, British Columbia. In 2008 he created Booooooom which quickly became one of the most prominent ar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-06T22:16:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:53:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g954520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g954560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-hamada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-hamada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-hamada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g955000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-hamada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dennis-tanaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Dennis Tanaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/dennis-tanaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Dennis Tanaka is an award-winning Toronto-based architect and president of Dennis K. Tanaka, Architect Inc. Born in British Columbia, he received his Bachelor of Architecture from McGill in 1968. H…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T19:07:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:40:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_06_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g955840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g956180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dennis-tanaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dennis-tanaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dennis-tanaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g956500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dennis-tanaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-harumi-kamikura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joyce Harumi Kamikura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joyce-harumi-kamikura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joyce H. Kamikura, NWS, SFCA Joyce was one of the first Canadians to be bestowed Signature Member of the National Watercolor Society (NWS – U.S.A.).  She was also one of the first women to be…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:24:51+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:56:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g957560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g957900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-harumi-kamikura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-harumi-kamikura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-harumi-kamikura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g958800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-harumi-kamikura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g959180", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g959340" - }, - { - "@id": "_:g959360" - }, - { - "@id": "_:g959380" - }, - { - "@id": "_:g959400" - }, - { - "@id": "_:g959420" - }, - { - "@id": "_:g959440" - } - ] - }, - { - "@id": "_:g959340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0095.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0095.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g959360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0634.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0634.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g959380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0875.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_0875.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g959400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_1039.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_1039.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g959420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_2074.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_2074.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g959440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_2332.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_2332.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-godo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yoshiko Godo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yoshiko-godo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yoshiko Godo was born in Haney, BC in 1940.  Her family was interned in Tashme and their father was imprisoned in Angler.  They were reunited in Geraldton shortly before the death of their mother. …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-12T19:11:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:35:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0169.jpg?fit=537%2C744&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "537" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "744" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g960280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g960620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-godo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-godo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-godo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g961340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yoshiko-godo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g961560", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g961700" - }, - { - "@id": "_:g961720" - }, - { - "@id": "_:g961740" - }, - { - "@id": "_:g961760" - }, - { - "@id": "_:g961780" - } - ] - }, - { - "@id": "_:g961700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2676.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2676.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g961720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0180.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0180.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g961740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_1016.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_1016.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g961760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2747.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2747.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g961780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2552.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_2552.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-goto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiromi Goto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiromi-goto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiromi Goto is a writer and author of Chorus of Mushrooms, The Kappa Child, Hopeful Monsters, for adults, and The Water of Possibility, Half World, and Darkest Light for youth. She co-wrote Wait Un…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-05T05:27:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:44:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Goto_Hiromi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g961900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g962140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-goto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-goto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-goto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g962440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-goto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-adachi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mary Adachi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mary-adachi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mary Adachi is a book editor and the widow of Ken Adachi. She worked for Penguin Canada and has edited such books as Blood and Chrysanthemums by Nancy Baker and Howard Engel’s mystery books. …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:45:45+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:06:44+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Typewriter_04_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g963280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g963620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-adachi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-adachi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-adachi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g964020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-adachi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-fukumoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Laura Fukumoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/laura-fukumoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Laura Fukumoto grew up on Toronto’s East Lakeshore, but relocated to Vancouver, British Columbia in 2009, where she now works as a costume designer and wardrobe professional, graduating from …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-05T01:12:09+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:14:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g965060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g965400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-fukumoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-fukumoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-fukumoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g965960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/laura-fukumoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g966340", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g966400" - } - ] - }, - { - "@id": "_:g966400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Build-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Build-1.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathryn-hatashita-lee/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kathryn Hatashita-Lee" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kathryn-hatashita-lee/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kathryn Hatashita-Lee was born in Toronto and raised in Vancouver. She studied for a B.A. in History at the University of British Columbia, where she worked for several years before marrying Roger …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-01T03:54:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:03:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hatashita-Lee-6600-copy-1200x792.jpg?fit=1200%2C792&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "792" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g967240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g967580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathryn-hatashita-lee/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathryn-hatashita-lee/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathryn-hatashita-lee/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g968020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathryn-hatashita-lee/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g968240", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g968300" - } - ] - }, - { - "@id": "_:g968300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hatashita-Lee-6600-copy-1200x792.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " Hiroshima Bay, Seto Inland Sea, Japan " - } - ], - "http://schema.org/description": [ - { - "@value": " Hiroshima Bay, Seto Inland Sea, Japan " - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hatashita-Lee-6600-copy-1200x792.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-itakura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Alan Itakura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/alan-itakura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Alan Mitsuru Itakura was born on December 16, 1945 in an internment camp in Kaslo, BC just after the end of World War II. Just months after he was born, his family moved to Hamilton, Ontario where …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T20:59:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:24:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Itakura_Alan_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g968420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g968660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-itakura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-itakura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-itakura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g968980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alan-itakura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordy-tong/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Gordy Tong" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/gordy-tong/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Visit the post for more." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T21:08:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:41:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g969840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g970180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordy-tong/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordy-tong/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordy-tong/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g970760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gordy-tong/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g971140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g971300" - }, - { - "@id": "_:g971320" - }, - { - "@id": "_:g971340" - }, - { - "@id": "_:g971360" - }, - { - "@id": "_:g971380" - }, - { - "@id": "_:g971400" - } - ] - }, - { - "@id": "_:g971300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC04918.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC04918.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g971320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC03586_2ppp.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC03586_2ppp.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g971340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Unknown.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Unknown.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g971360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC04297.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC04297.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g971380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC035401.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DSC035401.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g971400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/img001.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/img001.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joe-naito/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joe Naito" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joe-naito/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joe Naito was an architect who practiced for over forty years in Edmonton. He was born and raised in Kelowna, BC, and studied architecture at the University of British Columbia, graduating in 1957.…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:58:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:48:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_04_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g972240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g972580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joe-naito/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joe-naito/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joe-naito/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g972980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joe-naito/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobuo-kubota/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nobuo Kubota" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nobuo-kubota/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nobuo Kubota was born on June 27, 1932 in Vancouver BC. He has degree in architecture from the University of Toronto. He practiced architecture for 10 years before becoming an artist. He is also a …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:17:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T22:02:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kubota_Nobuo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g974020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g974360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobuo-kubota/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobuo-kubota/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobuo-kubota/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g974880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nobuo-kubota/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g975260", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g975360" - }, - { - "@id": "_:g975380" - }, - { - "@id": "_:g975400" - } - ] - }, - { - "@id": "_:g975360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/462B346E-6007-42E4-92FA-969688723015.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/462B346E-6007-42E4-92FA-969688723015.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g975380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/FullSizeRender.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/FullSizeRender.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g975400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2234.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2234.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marjene-matsunaga-turnbull/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Marjene Matsunaga Turnbull" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/marjene-matsunaga-turnbull/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Marjene Matsunaga Turnbull is a ceramicist and doll-maker. She produced functional pottery from 1987 – 2012. She also created Nikkei kokeshi (Japanese wooden dolls) – each one unique in facia…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:42:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:17:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Matsunaga_Turnbull_Marjene_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g975520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g975760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marjene-matsunaga-turnbull/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marjene-matsunaga-turnbull/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marjene-matsunaga-turnbull/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g976380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marjene-matsunaga-turnbull/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g976780", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g976880" - }, - { - "@id": "_:g976900" - }, - { - "@id": "_:g976920" - } - ] - }, - { - "@id": "_:g976880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0047_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0047_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g976900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0048-1-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0048-1-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g976920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0049_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0049_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-tominaga/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Miyo Tominaga" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/miyo-tominaga/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Miyo Tominaga is a tanka poet. She was born on August 6, 1918 in Nagano Prefecture and studied tanka and shodo in Japan. She moved to Quebec in 1987 and was the instructor of a tanka study group in…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:13:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-23T00:02:26+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tominaga_Miyo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g977760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g978100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-tominaga/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-tominaga/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-tominaga/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g978600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-tominaga/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/booming-tree-taiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Booming Tree Taiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/booming-tree-taiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Booming Tree is a contemporary drum duo, founded by Gregory Hideo Shimizu and Twilla MacLeod in 2008.   Known for their innovative combination of taiko, percussion and vocals, they have performed a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-03-06T23:57:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:51:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g979660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g980000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/booming-tree-taiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/booming-tree-taiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/booming-tree-taiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g980720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/booming-tree-taiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g981100", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g981160" - } - ] - }, - { - "@id": "_:g981160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/12801197_1030745136983725_4996698408628495173_n.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/12801197_1030745136983725_4996698408628495173_n.png?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kokoro-dance/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kokoro Dance" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kokoro-dance/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kokoro Dance Theatre Society was incorporated as a non-profit society in Vancouver, British Columbia on July 31, 1986. Its mandate is to re-define the meaning of Canadian culture through teaching, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-02-20T22:54:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:46:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g982000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g982340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kokoro-dance/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kokoro-dance/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kokoro-dance/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g983040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kokoro-dance/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g983420", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g983580" - }, - { - "@id": "_:g983600" - }, - { - "@id": "_:g983620" - }, - { - "@id": "_:g983640" - }, - { - "@id": "_:g983660" - }, - { - "@id": "_:g983720" - } - ] - }, - { - "@id": "_:g983580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/photo-by-Chris-Randle-Copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/photo-by-Chris-Randle-Copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g983600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/book-of-love-photo-by-chris-rande-Copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/book-of-love-photo-by-chris-rande-Copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g983620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/life-photo-by-chris-randle.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/life-photo-by-chris-randle.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g983640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/sunyata-photo-by-chris-randle.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/sunyata-photo-by-chris-randle.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g983660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/sunyata-photo-by-laurence-m.-svirchev.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/sunyata-photo-by-laurence-m.-svirchev.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g983720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/the-believer-photo-by-laurence-m.-svirchev.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/the-believer-photo-by-laurence-m.-svirchev.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/angela-may/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Angela May" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/angela-may/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Angela May (neé Kruger) is a visual artist, writer, scholar, and community activist. Across all of these forums, Angela’s work explores the politics of loss, especially in her home of Vancouv…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:08:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:11:51+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g984640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g984980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/angela-may/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/angela-may/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/angela-may/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g985820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/angela-may/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-igarashi-kitamura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yuriko Igarashi Kitamura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yuriko-igarashi-kitamura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yuriko Igarashi Kitamura is a watercolour painter. Kitamura graduated from university in Japan, and worked in pharmacology there before she and her family moved to the U.S., finally settling in Can…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-31T22:06:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:46:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kitamura_Yuriko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g987000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g987340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-igarashi-kitamura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-igarashi-kitamura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-igarashi-kitamura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g987840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-igarashi-kitamura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g988220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g988320" - }, - { - "@id": "_:g988340" - }, - { - "@id": "_:g988360" - } - ] - }, - { - "@id": "_:g988320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-fIgure-drawing-sumi-ink-on-rice-paper-13.5X25-002-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copy-of-fIgure-drawing-sumi-ink-on-rice-paper-13.5X25-002-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g988340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/mt-odaray-night-24X38.5-mix-midium-on-rice-paper-3-2011-P1040930-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/mt-odaray-night-24X38.5-mix-midium-on-rice-paper-3-2011-P1040930-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g988360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/shadow-underneath-38X24-mix-medium-on-rice-paper-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/shadow-underneath-38X24-mix-medium-on-rice-paper-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miya-turnbull/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Miya Turnbull" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/miya-turnbull/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Miya Turnbull is a Canadian multi-disciplinary visual artist. Primarily a mask maker, she also works in many mediums such as painting, photography, screen printing, textiles, video, animation and p…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-05T05:52:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-07-17T00:35:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/02-Miya-Turnbull-Self-Portrait-Woven.jpg?fit=1200%2C961&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "961" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g989200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g989540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miya-turnbull/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miya-turnbull/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miya-turnbull/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g990100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miya-turnbull/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-shimotakahara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "David Shimotakahara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/david-shimotakahara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "David Shimotakahara is the founder and Executive Artistic Director of GroundWorks DanceTheater dedicated to the creation, production and presentation of new work in Dance. Based in Cleveland OH, si…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:53:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-01T18:38:26+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shimotakahara_David_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g991140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g991480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-shimotakahara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-shimotakahara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-shimotakahara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g992020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-shimotakahara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g992400", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g992480" - }, - { - "@id": "_:g992500" - } - ] - }, - { - "@id": "_:g992480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/David-Shimotakahara-headshot.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/David-Shimotakahara-headshot.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g992500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/GW_16x20_program_art_FINAL_124151.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/GW_16x20_program_art_FINAL_124151.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aretha-aoki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Aretha Aoki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/aretha-aoki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Aretha Aoki is a choreographer, performer, and Assistant Professor of Dance at Bowdoin College. Her current research is an exploration of the body as a medium for the residue of family history. Are…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T02:23:38+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-11-19T21:12:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g993340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g993680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aretha-aoki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aretha-aoki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aretha-aoki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g994220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aretha-aoki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g994580", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g994640" - } - ] - }, - { - "@id": "_:g994640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Aretha-Aoki_photo-by-Alex-Escalante.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Aretha-Aoki_photo-by-Alex-Escalante.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-sawada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Naomi Sawada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/naomi-sawada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Naomi Sawada is Manager of Public Programs at the Morris and Helen Belkin Art Gallery at the University of British Columbia (UBC) where she has developed programs and collaborated with researchers,…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-18T16:53:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T01:59:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Naomi-Sawada-bio-image-758x766.jpg?fit=766%2C758&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "766" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "758" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g995480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g995820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-sawada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-sawada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-sawada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g996300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-sawada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Miki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-miki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Miki is a Vancouver-based poet and critic, well-known for his award-winning poetry, literary criticism, theoretical texts, editorial work, as well as for his activist work as part of the Redres…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:28:16+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:30:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Miki_Roy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g997340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g997680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g998140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-miki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-inokuchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Miki Inokuchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/miki-inokuchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Having grown up in the household of instrument makers, Miki has worked together with his father Masa Inokuchi making guitars and violins from early teen years. At age 23, he decided to carry on the…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:35:10+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:52:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Inokochi_Miki_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g999340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g999680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-inokuchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-inokuchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-inokuchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1000140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-inokuchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-ito/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Ito" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-ito/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Ryoichi Ito was a Nisei writer and historian, the author of We Went to War: The Story Of The Japanese Canadians Who Served During The First And Second World Wars (1984), Stories of My People: A…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:50:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:11:51+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ito_Roy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1001180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1001520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-ito/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-ito/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-ito/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1001940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-ito/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dorothy-livesay/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Dorothy Livesay" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/dorothy-livesay/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Dorothy Livesay was a widely respected Canadian poet. Amidst a long and noted body of literary work, she is included in this directory for her long poem Call My People Home (1950), one of the earli…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:31:51+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:43:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Livesay_Dorothy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1002980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1003320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dorothy-livesay/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dorothy-livesay/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dorothy-livesay/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1003580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dorothy-livesay/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hollis-ho/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hollis Ho" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hollis-ho/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hollis has been studying and practicing the art of Sogetsu Ikebana for 27 years in Vancouver with study opportunities in Japan, France, USA and Canada.  In 2012, she received Riji level (highest de…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-18T16:37:09+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:50:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hollis-Ho-exhibition-spring_600B.jpg?fit=600%2C874&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "874" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1004620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1004960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hollis-ho/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hollis-ho/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hollis-ho/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1005600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hollis-ho/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1006000", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1006160" - }, - { - "@id": "_:g1006220" - }, - { - "@id": "_:g1006280" - }, - { - "@id": "_:g1006340" - }, - { - "@id": "_:g1006400" - }, - { - "@id": "_:g1006460" - } - ] - }, - { - "@id": "_:g1006160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/classroom-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/classroom-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1006220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/demonstration-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/demonstration-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1006280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/floor.exhibition-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/floor.exhibition-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1006340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hollis-Picking-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hollis-Picking-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1006400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hollis-SpringShow-2006-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hollis-SpringShow-2006-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1006460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/nitobe-garden-2016-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/nitobe-garden-2016-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-saita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Aiko Saita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/aiko-saita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Aiko Saita was a well-loved Nisei mezzo-soprano/contralto singer. Born in BC in 1909, Aiko grew up in Cumberland and dreamed of becoming a dentist. At the age of 14, she moved to Vancouver to atten…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-13T16:31:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:36:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Saita_A_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1007340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1007680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-saita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-saita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-saita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1008160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aiko-saita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tetsuro-shigematsu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tetsuro Shigematsu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tetsuro-shigematsu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tetsuro Shigematsu is a writer, actor, performance artist, broadcaster, stand-up comic, scholar, filmmaker, and theatre artist. Originally trained in the fine arts, he found a similar creative outl…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:57:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:07:29+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shigematsu_Tetsuro_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1009200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1009540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tetsuro-shigematsu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tetsuro-shigematsu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tetsuro-shigematsu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1010160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tetsuro-shigematsu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1010380", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1010500" - }, - { - "@id": "_:g1010520" - }, - { - "@id": "_:g1010540" - }, - { - "@id": "_:g1010560" - } - ] - }, - { - "@id": "_:g1010500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/CIAF0594_700.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/CIAF0594_700.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1010520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3725_700.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3725_700.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1010540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3725_S.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3725_S.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1010560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_6874_700.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_6874_700.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-choir/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sansei Choir" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sansei-choir/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Sansei Choir was a group formed at Toronto’s Japanese Canadian Cultural Centre (JCCC) in 1964 by Harry Kumano. The choir originally contained children from the ages of 5-12, and was formed from…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:41:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:30:26+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Choral_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1011400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1011740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-choir/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-choir/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-choir/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1012120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-choir/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yumie-kono/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yumie Kono" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yumie-kono/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yumie Kono is a visual artist who draws and paints. She was born in Hiroshima and grew up in Matsue, Japan. She graduated with a BFA from the Women’s College of Fine Arts in Tokyo in 1967. After tr…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:28:09+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T21:06:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kono_Yumie_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1013160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1013500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yumie-kono/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yumie-kono/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yumie-kono/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1014080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yumie-kono/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1014460", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1014560" - }, - { - "@id": "_:g1014580" - }, - { - "@id": "_:g1014600" - } - ] - }, - { - "@id": "_:g1014560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_16240_E.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_16240_E.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1014580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kono_3.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kono_3.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1014600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kono_4.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kono_4.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masa-inokuchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Masa Inokuchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/masa-inokuchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Masa Inokuchi is a violin-maker and craftsperson. With dreams of using Canadian maple for his violin making, Inokuchi immigrated to Canada with his wife Shoko and three children in 1968. During the…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T23:40:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:30:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Inokuchi_Masa_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1015440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1015780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masa-inokuchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masa-inokuchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masa-inokuchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1016280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/masa-inokuchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dawn-obokata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Dawn Obokata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/dawn-obokata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Dawn Obokata has been acting professionally since 1980. A graduate of the University of Toronto, Dawn is a long-time artistic collaborator with Actor’s Lab Theatre in Toronto, (now known as LeTHAL)…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:18:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T20:43:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Obokata_Dawn_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1017320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1017660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dawn-obokata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dawn-obokata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dawn-obokata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1018280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/dawn-obokata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1018500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1018580" - }, - { - "@id": "_:g1018600" - } - ] - }, - { - "@id": "_:g1018580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DolcedoIMG_20141018_102727.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/DolcedoIMG_20141018_102727.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1018600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Psyche-Athens-2009-015.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Psyche-Athens-2009-015.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-kumano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Harry Kumano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/harry-kumano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Harry Kumano was a Nisei singer and actor. An active member of the Japanese Canadian Cultural Centre in Toronto, he is well known as the founder, director, and conductor of the Sansei Choir. He als…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:42:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:36:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_03_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1019440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1019780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-kumano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-kumano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-kumano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1020240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-kumano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ed-koyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ed Koyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ed-koyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ed Koyama is a musician born and raised in Toronto. He has played guitar and saxophone professionally in local bands. Performances include a number of albums for Terry Watada with other local Sanse…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:14:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:16:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Koyama_Ed_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1021280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1021620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ed-koyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ed-koyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ed-koyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1022060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ed-koyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerri-sakamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kerri Sakamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kerri-sakamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kerri Sakamoto is a novelist, screenplay writer, and art critic. Born in Toronto, she studied English and French at the University of Toronto, after which time she worked a variety of jobs, many in…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T22:07:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:54:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sakamoto_Kerri_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1023100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1023440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerri-sakamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerri-sakamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerri-sakamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1023900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kerri-sakamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuye-takashima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shizuye Takashima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shizuye-takashima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shizuye Takashima was one of Canada’s foremost Nisei painters. Beginning in the late 1950s, she became noticed on the Canadian art scene for her skilful and sensitive figurative paintings, but her …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:53:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T19:58:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Takashima_Shizuye_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1024940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1025280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuye-takashima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuye-takashima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuye-takashima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1025760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuye-takashima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1026140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1026240" - }, - { - "@id": "_:g1026260" - }, - { - "@id": "_:g1026280" - } - ] - }, - { - "@id": "_:g1026240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/41TG5FZAW0L.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/41TG5FZAW0L.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1026260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/portraitofmandetail-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/portraitofmandetail-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1026280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/YO-IN-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/YO-IN-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunji-ikeda/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kunji Ikeda" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kunji-ikeda/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kunji Ikeda aims to redefine narratives of the body and show how physical communication can lead to physical, emotional, and spiritual wellbeing. His fearless political work has earned multiple Bet…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-28T17:19:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-20T18:03:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/KunjiIkeda-scaled.jpg?fit=801%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "801" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Kunji Ikeda" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1027120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1027460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunji-ikeda/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunji-ikeda/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunji-ikeda/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1028040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kunji-ikeda/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1028440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1028500" - } - ] - }, - { - "@id": "_:g1028500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ikeda_M_01_600X600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ikeda_M_01_600X600.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katherine-kathi-adachi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Katherine (Kathi) Adachi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/katherine-kathi-adachi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Katherine’s main creative outlet is photography, especially street, architectural and landscape. Despite studying research psychology (University of Toronto, BSc), her working life was spent in gra…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-19T04:59:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:52:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Adachi_Katherine_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1029380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1029720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katherine-kathi-adachi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katherine-kathi-adachi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katherine-kathi-adachi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1030120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katherine-kathi-adachi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-liska/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Suzanne Liska" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/suzanne-liska/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Suzanne Liska is a teacher, choreographer, dancer and researcher specializing in somatic practices, contemporary dance/theatre, Japanese artforms and physical partnering. She has choreographed and …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-05-05T21:44:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-12-12T20:14:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/05/low-res-grass-sunlight.jpg?fit=960%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1031140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1031480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-liska/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-liska/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-liska/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1032040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/suzanne-liska/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sam-furuya/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sam Furuya" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sam-furuya/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sam Furuya was a Nisei singer who was active before, during, and after the Second World War. His trademark song was Someone to Watch Over Me, and he settled in Toronto after the war." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:59:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:29:34+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1033080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1033420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sam-furuya/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sam-furuya/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sam-furuya/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1033780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sam-furuya/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marlene-howell/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Marlene Howell" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/marlene-howell/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "MARLENE HOWELL (née Seki) marlenehowellgallery.com Marlene was born in Toronto and moved to Vancouver Island in 1996. Since then she has lived in and has exhibited her artwork in Khartoum, Sudan, N…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-01-08T22:17:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:37:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1034700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1034940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marlene-howell/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marlene-howell/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marlene-howell/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1035660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/marlene-howell/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1036040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1036200" - }, - { - "@id": "_:g1036220" - }, - { - "@id": "_:g1036240" - }, - { - "@id": "_:g1036260" - }, - { - "@id": "_:g1036280" - }, - { - "@id": "_:g1036300" - } - ] - }, - { - "@id": "_:g1036200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Beneath-My-Dignity-Watercolour-Charcoal-22-x-30.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Beneath-My-Dignity-Watercolour-Charcoal-22-x-30.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1036220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Welcome-to-my-World-Watercolour-Charcoal-21-x-24.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Welcome-to-my-World-Watercolour-Charcoal-21-x-24.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1036240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Little-Drummer-Jaden-Charcoal-Waterclour-30.5-x-22.5-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Little-Drummer-Jaden-Charcoal-Waterclour-30.5-x-22.5-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1036260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Howe-Sound-IV-Watercolour-Charcoal-22-x-30.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Howe-Sound-IV-Watercolour-Charcoal-22-x-30.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1036280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/The-Way-It-Was-Acrylic-24-x-30-2000.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/The-Way-It-Was-Acrylic-24-x-30-2000.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1036300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Under-New-Ownership-Acrylic-40-x-30.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/01/Under-New-Ownership-Acrylic-40-x-30.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uminari-taiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Uminari Taiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/uminari-taiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Uminari Taiko is Vancouver Island’s first taiko drumming ensemble. Its mission is to share and promote the art of Japanese taiko drumming through teaching and performances. Uminari is a Japan…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-02-20T22:57:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:41:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1037160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1037500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uminari-taiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uminari-taiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uminari-taiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1038040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/uminari-taiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-singing-knights/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "The Singing Knights" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/the-singing-knights/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Singing Knights were an Asian Canadian folk band in Toronto in the 1960s and 1970s. They were formed by the Chung family, and at one time featured Garry Kawasaki and Terry Watada. They toured O…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-05T05:46:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:35:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1039080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1039420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-singing-knights/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-singing-knights/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-singing-knights/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1039860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-singing-knights/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-shimotakahara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Leslie Shimotakahara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/leslie-shimotakahara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Leslie Shimotakahara is a fourth-generation Japanese-Canadian writer, who resides in Toronto. Leslie holds a B.A. in English from McGill and an M.A. and Ph.D. from Brown in Modern American Literatu…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-28T17:11:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-17T18:25:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/LShimo_Photo.jpg?fit=347%2C474&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "347" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "474" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Leslie Shimotakahara" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1040900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1041240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-shimotakahara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-shimotakahara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-shimotakahara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1041820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leslie-shimotakahara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1042200", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1042280" - }, - { - "@id": "_:g1042340" - } - ] - }, - { - "@id": "_:g1042280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/RedOblivionNew5.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/RedOblivionNew5.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1042340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/ATBCover2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/ATBCover2.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-matsui/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Matsui" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-matsui/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Matsui is the architect responsible for the Momiji Seniors Centre in Scarborough, Ontario, as well as many other projects throughout his decades-long career, including hotels, condominiums, and…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:12:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:41:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Matsui_Roy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1043220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1043560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-matsui/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-matsui/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-matsui/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1044020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-matsui/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1044400", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1044480" - }, - { - "@id": "_:g1044500" - } - ] - }, - { - "@id": "_:g1044480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Momiji-Residence-2b.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Momiji-Residence-2b.png?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1044500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/vets-cmyk-nov-2016-2-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/vets-cmyk-nov-2016-2-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carolyn-nakagawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Carolyn Nakagawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/carolyn-nakagawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Carolyn Nakagawa is a poet and playwright whose work has appeared in theatres around Greater Vancouver and in various literary journals across Canada, including Ricepaper, Room, EVENT, and CV2. She…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:47:17+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-15T02:49:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/JavierSotres-May2016-2-crop-web.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1045340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1045680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carolyn-nakagawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carolyn-nakagawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carolyn-nakagawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1046240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/carolyn-nakagawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1046460", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1046520" - } - ] - }, - { - "@id": "_:g1046520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/JavierSotres-May2016-2-crop-web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/JavierSotres-May2016-2-crop-web.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-hoshiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Michael Hoshiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/michael-hoshiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Michael Hoshiko was the author of Who was Who: Pioneer Japanese Families in Delta and Surrey (1998). A speech pathologist by profession, Hoshiko’s interest in Japanese Canadian history led him to b…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T07:01:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:03:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hoshiko_Michael_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1047360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1047700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-hoshiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-hoshiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-hoshiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1048080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michael-hoshiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midi-onodera/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Midi Onodera" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/midi-onodera/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Midi Onodera is an award-winning filmmaker who has been making work for over 35 years. She has produced over 25 independent short productions in formats ranging from 16mm film to digital video to ‘…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:34:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-25T21:23:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Onodera_Midi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1049120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1049460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midi-onodera/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midi-onodera/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midi-onodera/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1050080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/midi-onodera/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1050460", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1050580" - }, - { - "@id": "_:g1050600" - }, - { - "@id": "_:g1050620" - }, - { - "@id": "_:g1050640" - } - ] - }, - { - "@id": "_:g1050580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/BCN_Barcelona_2011.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/BCN_Barcelona_2011.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1050600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/The_Displaced_View_1988_Heiji__Suno_Yamazaki.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/The_Displaced_View_1988_Heiji__Suno_Yamazaki.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1050620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/The_Displaced_View_1988_Suno_Yamazaki.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/The_Displaced_View_1988_Suno_Yamazaki.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1050640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tributaries_Reflections_of_Aiko_Suzuki_2009.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tributaries_Reflections_of_Aiko_Suzuki_2009.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rene-ohashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Rene Ohashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/rene-ohashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Rene Ohashi is an award-winning cinematographer based in Toronto. After receiving his BA in Film Production from York University, Ohashi has gone on to work as Director of Film Photography on such …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:25:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:51:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ohashi_Rene_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1051480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1051820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rene-ohashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rene-ohashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rene-ohashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1052080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/rene-ohashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mikuro-mika/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mikuro Mika" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mikuro-mika/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "MIKURO MIKA is a singer-songwriter based in North America and Japan. In 2015, she was diagnosed with cancer in her stomach and immediately got treatment. Following that ordeal, she decided to go to…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-09T06:26:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-07-30T21:23:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1053120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1053460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mikuro-mika/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mikuro-mika/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mikuro-mika/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1054220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mikuro-mika/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1054600", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1054660" - } - ] - }, - { - "@id": "_:g1054660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/21558743_1865167540467167_1878325630620449062_n.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/21558743_1865167540467167_1878325630620449062_n.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-michiko-yano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lillian Michiko Yano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lillian-michiko-yano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "I am a sansei, a third-generation Japanese Canadian artist. Currently, my art explores multifaceted Japanese Canadian experiences of intergenerational healing. By exploring my family’s relationship…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T03:39:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-05-17T18:47:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/michiko.jpg?fit=368%2C391&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "368" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "391" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1055500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1055840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-michiko-yano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-michiko-yano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-michiko-yano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1056400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-michiko-yano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1056780", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1056880" - }, - { - "@id": "_:g1056940" - }, - { - "@id": "_:g1057000" - } - ] - }, - { - "@id": "_:g1056880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/alberta-c-1951-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/alberta-c-1951-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1056940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/enemy-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/enemy-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1057000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Reiko-Alberta-1945-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Reiko-Alberta-1945-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kinichi-shigeno/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kinichi Shigeno" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kinichi-shigeno/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kinichi Shigeno is a ceramicist. Originally from Nagano, Japan, Kinichi has been practising his unique ceramic style in Richmond, BC since 1984.  His works have been included in such prestigious co…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:07:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-08T19:33:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shigeno_Kinichi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1057880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1058220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kinichi-shigeno/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kinichi-shigeno/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kinichi-shigeno/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1058700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kinichi-shigeno/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ted-teshima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ted Teshima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ted-teshima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ted Teshima was born in Sea Island, British Columbia on Sept. 4, 1938. While in high school, he was inspired by a book about Frank Lloyd Wright and chose to pursue architecture as a career.  He gra…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:02:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:22:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Teshima_Ted_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1059880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1060220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ted-teshima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ted-teshima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ted-teshima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1060720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ted-teshima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1060960", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1061060" - }, - { - "@id": "_:g1061080" - }, - { - "@id": "_:g1061100" - } - ] - }, - { - "@id": "_:g1061060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Azure-Ted-Teshima.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Azure-Ted-Teshima.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1061080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ted-Teshima-400x500-400x500.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ted-Teshima-400x500-400x500.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1061100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/TedObit-copy.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/TedObit-copy.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsu-ikemura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mitsu Ikemura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mitsu-ikemura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mitsu Ikemura is a Victoria-based mixed media artist. His richly-layered, semi-abstract ‘mindscapes’ integrate his background as an architect and urban designer with Asian-style brushwork, and he i…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:49:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:17:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ikemura_Mitsu_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1061940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1062280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsu-ikemura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsu-ikemura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsu-ikemura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1062900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mitsu-ikemura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1063280", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1063440" - }, - { - "@id": "_:g1063460" - }, - { - "@id": "_:g1063480" - }, - { - "@id": "_:g1063500" - }, - { - "@id": "_:g1063520" - }, - { - "@id": "_:g1063540" - } - ] - }, - { - "@id": "_:g1063440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/134_10_GAZINGDEEP_Rev2_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/134_10_GAZINGDEEP_Rev2_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1063460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5242081867_6120d367cf_o_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5242081867_6120d367cf_o_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1063480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5242171423_c849dfe53e_o_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5242171423_c849dfe53e_o_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1063500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5242767932_ce269d71b5_o_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5242767932_ce269d71b5_o_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1063520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Mitsu_Ikemura_In_the_Infinite_Meadows___Banff_Series_1282_362_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Mitsu_Ikemura_In_the_Infinite_Meadows___Banff_Series_1282_362_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1063540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Mitsu_Ikemura2-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Mitsu_Ikemura2-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/douglas-peerless/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Douglas Haruki Oyama Peerless" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/douglas-peerless/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Douglas is a Nisei 二世 (2nd generation) Japanese-Canadian actor, writer, and storyteller from Toronto, Ontario. He has a wide range of performance experience including musical theatre, children’s th…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-10-01T23:06:07+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T20:16:57+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/10/Douglas_Peerless-157.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1064400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1064740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/douglas-peerless/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/douglas-peerless/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/douglas-peerless/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1065400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/douglas-peerless/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamura-toshiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tamura Toshiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tamura-toshiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Toshiko Tamura (Tamura Toshiko) was the pseudonym  of early modern feminist novelist, Toshi Satō (Satō Toshi).  Born in the Asakusa district of Tokyo, Tamura enrolled in the faculty of literature a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-02-24T21:25:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:21:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/02/Toshiko_Tamura-e1582579512558.jpg?fit=220%2C291&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "220" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "291" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1066580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1066920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamura-toshiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamura-toshiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamura-toshiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1067400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tamura-toshiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-kuwabara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Bruce Kuwabara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/bruce-kuwabara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Bruce Kuwabara is one of the most celebrated and influential architects in Canada, and a founding partner of the internationally recognized KPMB firm. His awards include being made an Officer of th…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:26:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:39:54+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kuwabara_Bruce_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1068440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1068780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-kuwabara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-kuwabara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-kuwabara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1069160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-kuwabara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-north-productions/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sansei North Productions" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sansei-north-productions/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sansei North Productions, a theatre production house, was established by Terry Watada and operated out of the Japanese Canadian Cultural Centre in Toronto. Its primary purpose was to present Japane…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T23:07:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:56:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Stage_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1070200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1070540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-north-productions/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-north-productions/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-north-productions/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1070920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sansei-north-productions/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/annie-koyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Annie Koyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/annie-koyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Annie Koyama is a publisher and founder of the Toronto-based Koyama Press. After working in graphic arts, set painting, and film, Koyama found herself in advertising making commercials. After a sur…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-19T05:26:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:38:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Koyama_Annie_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1071980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1072320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/annie-koyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/annie-koyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/annie-koyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1072820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/annie-koyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shion-skye-carter/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shion Skye Carter" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shion-skye-carter/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shion Skye Carter is a performing artist originally from Tajimi, Japan, and based in Vancouver, Canada. She holds a Bachelor of Fine Arts degree in Dance and Kinesiology from Simon Fraser Universit…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-01-31T18:51:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T19:19:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/01/Shion_headshot.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1074000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1074340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shion-skye-carter/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shion-skye-carter/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shion-skye-carter/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1075140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shion-skye-carter/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/setsuko-onishi-moulton/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Setsuko Onishi Moulton" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/setsuko-onishi-moulton/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Setsuko Onishi Moulton is a Calgary-based printmaker. Born in Japan, she studied French literature in Kobe before immigrating to Canada in 1983. She studied printmaking at the Alberta College of Ar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:28:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:34:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moulton_SO_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1076180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1076520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/setsuko-onishi-moulton/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/setsuko-onishi-moulton/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/setsuko-onishi-moulton/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1077060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/setsuko-onishi-moulton/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1077300", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1077400" - }, - { - "@id": "_:g1077420" - }, - { - "@id": "_:g1077440" - } - ] - }, - { - "@id": "_:g1077400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/7864db69-838d-49d7-90a9-980cbbdec3b7_570.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/7864db69-838d-49d7-90a9-980cbbdec3b7_570.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1077420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/moulton-setsuko-onishi-20-jpn-latent-force-2672010.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/moulton-setsuko-onishi-20-jpn-latent-force-2672010.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1077440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/moulton-setsuko-onishi-20-jpn-on-the-essence-2672009.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/moulton-setsuko-onishi-20-jpn-on-the-essence-2672009.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathlyn-horibe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kathlyn Horibe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kathlyn-horibe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kathlyn Horibe was a journalist and editor who published with magazines and newspapers in Canada, the United States, Europe, and New Zealand. She was also the author of Toronto Disasters: Devastati…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:55:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:31:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Typewriter_02_600X600-1.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1078280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1078620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathlyn-horibe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathlyn-horibe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathlyn-horibe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1079060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kathlyn-horibe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alana-keiko-fleming/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Alana Keiko Fleming" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/alana-keiko-fleming/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Alana Keiko Fleming is a yonsei illustrator, graphic designer, and animator who has worked on blockbuster movies such as Ghostbusters (2017), Alpha, and Fantastic Beasts and Where to Find Them. She…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-10T22:06:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-03T00:53:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Alana_Keiko_Fleming.png?fit=1080%2C1080&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1080" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1080" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1080100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1080440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alana-keiko-fleming/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alana-keiko-fleming/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alana-keiko-fleming/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1081160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alana-keiko-fleming/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-terakita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Grace Terakita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/grace-terakita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Grace Fujie Terakita was a well-known Nisei soprano singer before, during, and after the Second World War. When living in BC before the war, she recorded her trademark song Shinna no Yoru (China Ni…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:18:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:22:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_04_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1082340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1082680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-terakita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-terakita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-terakita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1083080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/grace-terakita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-nakamura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sally Nakamura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sally-nakamura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Satoshi (Sally) Nakamura was born on Powell Street in Vancouver. He enjoyed a varied artistic life as a singer, actor and entertainer. In Vancouver, he took voice training with Gideon Hicks, a well…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:18:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:59:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_04_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1084120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1084460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-nakamura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-nakamura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-nakamura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1084800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-nakamura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/archie-nishihama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Archie Nishihama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/archie-nishihama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Akira ‘Archie’ Nishihama is a musician and composer. He studied music in Osaka, and composed several songs for schools in Japan, as well as the kohka (school song) for the Toronto Japanese Language…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T00:24:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:56:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/archie-nishihama-canada-ondo-none-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1085840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1086180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/archie-nishihama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/archie-nishihama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/archie-nishihama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1086660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/archie-nishihama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1087040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1087120" - }, - { - "@id": "_:g1087140" - } - ] - }, - { - "@id": "_:g1087120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/archie-nishihama-toronto-japanese-language-school-song-none-600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/archie-nishihama-toronto-japanese-language-school-song-none-600.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1087140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/archie-nishihama-canada-ondo-none-600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/archie-nishihama-canada-ondo-none-600.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-tsuji/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takashi Tsuji" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takashi-tsuji/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takashi Tsuji is a Toronto-based architect. Born in Japan, he received his Bachelor of Environmental Studies and Master of Architecture from the University of Manitoba, in 1974 and 1977, respective…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-13T00:45:17+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:48:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tsuji_Takashi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1087980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1088320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-tsuji/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-tsuji/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-tsuji/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1088640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takashi-tsuji/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-tatebe/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nancy Tatebe" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nancy-tatebe/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nancy Tatebe was a filmmaker and teaches filmmaking at a college in Montreal.  Prior to her teaching career, she worked in the film industry in many capacities, among them as a field producer and p…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:30:20+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:32:15+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tatebe_Nancy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1089680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1090020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-tatebe/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-tatebe/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-tatebe/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1090420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nancy-tatebe/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-aoki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Harry Aoki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/harry-aoki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Harry Hiro-o Aoki was a Nisei harmonica and stand-up bass player, known for his musical virtuosity and his enthusiasm for fostering intercultural understanding through music. Born in Cumberland, BC…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:16:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:49:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Aoki_Harry_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1091460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1091800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-aoki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-aoki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-aoki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1092340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harry-aoki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1092740", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1092840" - }, - { - "@id": "_:g1092900" - }, - { - "@id": "_:g1092960" - } - ] - }, - { - "@id": "_:g1092840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/CBC01_lighter_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/CBC01_lighter_900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1092900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Harry-Bass-Side-3-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Harry-Bass-Side-3-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1092960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/with-Jim-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/with-Jim-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-akemi-morris/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mary Akemi Morris" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mary-akemi-morris/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mary Akemi Morris is a watercolour and acrylic painter based in London, Ontario. She is a graduate of Fine Arts at the University of Toronto and taught art in secondary schools in North York and Lo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-26T07:17:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T22:40:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1093840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1094180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-akemi-morris/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-akemi-morris/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-akemi-morris/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1094840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mary-akemi-morris/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1095220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1095360" - }, - { - "@id": "_:g1095380" - }, - { - "@id": "_:g1095400" - }, - { - "@id": "_:g1095420" - }, - { - "@id": "_:g1095440" - } - ] - }, - { - "@id": "_:g1095360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Dunes-N.-Carolina.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Dunes-N.-Carolina.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1095380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Galapagos.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Galapagos.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1095400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Rondeau-Lake-Erie.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Rondeau-Lake-Erie.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1095420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Sachi-rotated.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Sachi-rotated.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1095440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/The-Beach-Toronto.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/The-Beach-Toronto.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akira-yoshikawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Akira Yoshikawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/akira-yoshikawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Akira Yoshikawa has always been interested in art, architecture, design and music. After graduating from the Ontario College of Art in 1974 with Special Commendation from the Department of Experime…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T22:19:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:05:44+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yoshikawa_Akira_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1096280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1096620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akira-yoshikawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akira-yoshikawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akira-yoshikawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1097160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/akira-yoshikawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1097380", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1097480" - }, - { - "@id": "_:g1097500" - }, - { - "@id": "_:g1097520" - } - ] - }, - { - "@id": "_:g1097480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copper-Plate-Series-1-3_2016_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Copper-Plate-Series-1-3_2016_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1097500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Homage-to-Rikyu-the-Tea-Master-2016-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Homage-to-Rikyu-the-Tea-Master-2016-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1097520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Waiting-for-the-Full-Moon-2015-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Waiting-for-the-Full-Moon-2015-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-wakayama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Peter Wakayama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/peter-wakayama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Peter Hiroshi Wakayama is a retired architect born in Pt. Hammond, B.C. on August 28 1936. During the war, Wakayama was interned with family at Hasting Park, Vancouver, B.C., and in the interior of…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T22:51:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T18:57:05+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Wakayama_Peter_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1098360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1098700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-wakayama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-wakayama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-wakayama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1099000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/peter-wakayama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jason-moriyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jason Moriyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jason-moriyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jason Moriyama is an award-winning architect based in Toronto who specializes in cultural buildings and university design. Educated in Ottawa, Los Angeles, and Tokyo, Moriyama has built his career …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:53:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:43:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moriyama_Jason_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1099800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1100140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jason-moriyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jason-moriyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jason-moriyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1100560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jason-moriyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/garry-kawasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Garry Kawasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/garry-kawasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Garry Kawasaki is a musician who played bass and provided vocals for the Asia Minors, an Asian Canadian top 40s rock band that played in Toronto in the 1960s. He collaborated many times with Terry …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T00:26:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:15:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_06_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1101600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1101940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/garry-kawasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/garry-kawasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/garry-kawasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1102400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/garry-kawasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meg-ohsada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Meg Ohsada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/meg-ohsada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Meg Ohsada is a multidisciplinary artist from Canmore Alberta, who pours passion and feelings into her art to stir up inspiration in all who see it. Meg is passionate in advocating for an inclusive…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T23:24:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T23:24:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Meg-headshot-scaled.jpg?fit=900%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1103460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1103800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meg-ohsada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meg-ohsada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meg-ohsada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1104540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/meg-ohsada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/camille-kiku-belair/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Camille Kiku Belair" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/camille-kiku-belair/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Camille Kiku Belair is a Toronto based composer, classical guitarist, artist and writer. Interested in working with field recordings, experimenting with mixed media within visual arts is also a lar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-23T21:00:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-05-17T17:43:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1105720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1106060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/camille-kiku-belair/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/camille-kiku-belair/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/camille-kiku-belair/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1106680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/camille-kiku-belair/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fumiko-greenaway/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Fumiko Greenaway" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/fumiko-greenaway/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Fumiko Greenaway (née Endo) was born in Moose Jaw, Saskatchewan on April 16, 1929, the eldest child of George Chohei Endo and Tomie Endo, formerly of Miyagi-ken, near Sendai, in northern Japan. A c…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-15T16:51:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:55:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Greenaway_F_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1107740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1108080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fumiko-greenaway/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fumiko-greenaway/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fumiko-greenaway/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1109160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fumiko-greenaway/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1109540", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1109760" - }, - { - "@id": "_:g1109780" - }, - { - "@id": "_:g1109800" - }, - { - "@id": "_:g1109820" - }, - { - "@id": "_:g1109840" - }, - { - "@id": "_:g1109860" - }, - { - "@id": "_:g1109880" - }, - { - "@id": "_:g1109900" - }, - { - "@id": "_:g1109920" - } - ] - }, - { - "@id": "_:g1109760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Dowager_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Dowager_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Fumiko-Bulletin-Office-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Fumiko-Bulletin-Office-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Fumiko-ID-Front-and-Back-.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Fumiko-ID-Front-and-Back-.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Mandala_03_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Mandala_03_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Rachel_Chair_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Rachel_Chair_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Saskatoon_1956_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Saskatoon_1956_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Strathcona_seventies_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Strathcona_seventies_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tod_Chair_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tod_Chair_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1109920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tod_Colour_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Tod_Colour_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-irie/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kevin Irie" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kevin-irie/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kevin Irie is a poet and the author of five collections of poetry, most recently Viewing Tom Thomson, A Minority Report, published in 2012. He has been a finalist for the City of Toronto Book Award…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T23:32:53+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:30:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Irie_Kevin_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1110760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1111100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-irie/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-irie/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-irie/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1111420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-irie/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandy-usami/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sandy Usami" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sandy-usami/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Award-winning designer for Bell Media, Sandy specializes in print-based graphics and has designed for a variety of Bell Media franchises including CTV, CTV News, Discovery, TSN and the Comedy Netwo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:44:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:27:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Usami_Sandy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1112460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1112800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandy-usami/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandy-usami/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandy-usami/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1113340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandy-usami/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1113720", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1113840" - }, - { - "@id": "_:g1113900" - }, - { - "@id": "_:g1113960" - }, - { - "@id": "_:g1114020" - } - ] - }, - { - "@id": "_:g1113840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-1.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1113900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-1b.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-1b.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1113960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1114020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/SandyUsami_miniportfolio-copy-3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mas-funo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mas Funo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mas-funo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Masatada Funo was born in Seattle, Washington to parents of Japanese descent. He is a long-time resident of Vancouver, British Columbia. A self-taught potter, Mas has been working with clay for 45 …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-27T05:48:31+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:40:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1114900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1115240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mas-funo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mas-funo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mas-funo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1115800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mas-funo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1116020", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1116120" - }, - { - "@id": "_:g1116140" - }, - { - "@id": "_:g1116160" - } - ] - }, - { - "@id": "_:g1116120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mas-box-for-JC-directory-3-2.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mas-box-for-JC-directory-3-2.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1116140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mas-box-for-JC-directory-4.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mas-box-for-JC-directory-4.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1116160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/il_570xN.1233617283_b8tq.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/il_570xN.1233617283_b8tq.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mike-sasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mike Sasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mike-sasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mike took to drawing early in his life, spending focused hours honing the skill as a child. He was also taught woodworking by his father at an early age. In school he excelled in visual arts and de…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T03:29:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:39:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1116960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1117120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mike-sasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mike-sasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mike-sasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1118020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mike-sasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1118400", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1118560" - }, - { - "@id": "_:g1118580" - }, - { - "@id": "_:g1118600" - }, - { - "@id": "_:g1118620" - }, - { - "@id": "_:g1118640" - }, - { - "@id": "_:g1118660" - } - ] - }, - { - "@id": "_:g1118560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_4537-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_4537-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1118580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_2302-scaled.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_2302-scaled.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1118600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/col1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/col1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1118620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/crescent1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/crescent1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1118640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/opportunityNo1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/opportunityNo1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1118660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/symbiosis1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/symbiosis1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vincent-noguchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Vincent Noguchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/vincent-noguchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Vincent Noguchi is a photographer. Born and raised in Toronto by two creative parents, Vince Noguchi found a passion in photography that quickly consumed his life. Starting early with his mother’s …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T20:55:50+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:18:34+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Noguchi_Vincent_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1119500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1119840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vincent-noguchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vincent-noguchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vincent-noguchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1120300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vincent-noguchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1120500", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1120580" - }, - { - "@id": "_:g1120640" - } - ] - }, - { - "@id": "_:g1120580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Vince-Noguchi-1-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Vince-Noguchi-1-1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1120640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Vince-Noguchi-2-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Vince-Noguchi-2-1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ozeki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ruth Ozeki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ruth-ozeki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ruth Ozeki is the author of the novels My Year of Meats (1998), All Over Creation (2003), and A Tale for the Time-Being (2013). She is also a filmmaker and a Zen Buddhist priest. Her novels have be…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:21:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:11:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ozeki_R_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1121520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1121860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ozeki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ozeki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ozeki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1122340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ruth-ozeki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-ingalls/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tomo Ingalls" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tomo-ingalls/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tomo Ingalls is a woman, mother, potter, clay artist, and immigrant. She started pottery training in 2014 and obtained a Master of Fine Arts in Craft Media from Alberta University of the Arts in 20…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2023-04-05T18:31:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-04-05T18:31:57+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2023/04/Tomo_Ingalls-headshot.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Tomo_Ingalls headshot" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1123540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1123880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-ingalls/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-ingalls/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-ingalls/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1124400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomo-ingalls/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-tatemichi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Bruce Tatemichi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/bruce-tatemichi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Bruce was born in Montreal in 1953, and began piano lessons at five years old. In high school he first studied the clarinet, and soon after the saxophone. Along the way, he taught himself how to pl…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T02:01:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:32:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Bruce-Tatemichi-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1125400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1125560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-tatemichi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-tatemichi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-tatemichi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1125940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/bruce-tatemichi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-yamamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Machiko Yamamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/machiko-yamamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Machiko Yamamoto is a Toronto-based textile designer. Born in Japan, she received her Bachelor of Education in Arts and Crafts at the Kyoto University of Education in 1975. After graduating, she wo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:24:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:54:34+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Fabric_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1126980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1127320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-yamamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-yamamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-yamamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1127700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/machiko-yamamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-kanashiro/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ron Kanashiro" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ron-kanashiro/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ron Kanashiro was a sculptor of mixed-media pieces in the 1980s and 1990s. Born in Alberta, he exhibited largely in Calgary and Lethbridge, but also had pieces shown in Edmonton and Toronto. Althou…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:29:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:24:57+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kanashiro_Ron_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1128760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1129100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-kanashiro/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-kanashiro/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-kanashiro/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1129660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ron-kanashiro/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1130040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1130160" - }, - { - "@id": "_:g1130180" - }, - { - "@id": "_:g1130200" - }, - { - "@id": "_:g1130220" - } - ] - }, - { - "@id": "_:g1130160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Confession_1989_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Confession_1989_W.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1130180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sentinel-Shrine-3_1986_front-view-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sentinel-Shrine-3_1986_front-view-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1130200", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sentinel-Shrine-3_1986_side-view_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sentinel-Shrine-3_1986_side-view_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1130220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sunworshipper_1987_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sunworshipper_1987_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-taniwa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Stan Taniwa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/stan-taniwa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Stan Taniwa is a muralist and ceramicist based in Manitoba. Born in Chemainus, Taniwa’s family was forcibly removed from the coast when he was a baby and lived in an internment camp, eventually res…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:07:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:36:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Taniwa_Stan_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1131060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1131400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-taniwa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-taniwa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-taniwa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1131820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/stan-taniwa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ian-nishio/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ian Nishio" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ian-nishio/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ian Nishio was a bass player who recorded and performed on several recordings with Terry Watada as well as with the heavy metal band Snow Axe in Toronto, including their album We’re All Different.…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:13:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:33:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Ian-Nishio-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1132820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1132980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ian-nishio/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ian-nishio/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ian-nishio/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1133400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ian-nishio/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-deforest/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kevin DeForest" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kevin-deforest/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kevin Ei-ichi DeForest is a visual and multimedia artist. He was born in Winnipeg, Manitoba to Japanese and Swiss parents. He studied architecture (Bachelor of Environmental Studies, 1983) and fine…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T23:05:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:07:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/de_Forest_Kevin_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1134440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1134780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-deforest/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-deforest/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-deforest/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1135420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-deforest/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1135800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1135900" - }, - { - "@id": "_:g1135920" - }, - { - "@id": "_:g1135940" - } - ] - }, - { - "@id": "_:g1135900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/01-deForest-Record-Shop-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/01-deForest-Record-Shop-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1135920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/02-deForest-Record-Shop-detail-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/02-deForest-Record-Shop-detail-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1135940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/03-deForest-Painting-for-okasan-1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/03-deForest-Painting-for-okasan-1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ota/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "John Ota" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/john-ota/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "John Ota M.S., B.Arch., B.A., is a proud Japanese Canadian who has had a varied career in the architect and design world in Canada. He has writing expertise in the field, possessing an academic bac…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:51:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T18:43:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ota_John_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1136780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1137120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ota/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ota/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ota/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1137760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-ota/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1138140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1138280" - }, - { - "@id": "_:g1138300" - }, - { - "@id": "_:g1138320" - }, - { - "@id": "_:g1138340" - }, - { - "@id": "_:g1138360" - } - ] - }, - { - "@id": "_:g1138280", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC06995-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC06995-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1138300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC07006-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC07006-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1138320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC07007-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC07007-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1138340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC07008-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/DSC07008-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1138360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/John-Ota-2016-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/John-Ota-2016-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-kim-kobayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Noriko Kim Kobayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/noriko-kim-kobayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Noriko Kobayashi is a musician. She earned a M.A. degree in Ethnomusicology from the University of British Columbia, in addition to a B.A. in Music and Psychology from U.B.C. She also earned a musi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:19:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-03-08T00:12:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/NoriNori123.jpeg?fit=1067%2C1067&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1067" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1067" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1139200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1139540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-kim-kobayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-kim-kobayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-kim-kobayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1140200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/noriko-kim-kobayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-moritsugu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kim Moritsugu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kim-moritsugu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kim Moritsugu was born and raised in Toronto. She is the author of six novels to date, including Looks Perfect, nominated for the Toronto Book Award; The Glenwood Treasure, shortlisted for the Arth…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-04T20:13:40+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:46:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1141240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1141580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-moritsugu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-moritsugu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-moritsugu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1142240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kim-moritsugu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1142620", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1142680" - } - ] - }, - { - "@id": "_:g1142680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Kim_Moritsugu300pixels.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Kim_Moritsugu300pixels.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomizo-yamamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tomizo Yamamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tomizo-yamamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tomizo Yamamoto is an independent architect based in North Vancouver, who trained in both Japan (BArch, Waseda University) and Canada (M.Arch, UBC). He has designed a number of commercial, resident…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T18:47:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:52:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_07_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1143520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1143860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomizo-yamamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomizo-yamamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomizo-yamamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1144240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomizo-yamamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroki-tanaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiroki Tanaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiroki-tanaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiroki Tanaka is a musician, artist and writer born in Toronto, Ontario. He grew in Toronto’s east end, in the area formerly known as “East York”. He attended Concordia University in Montreal to st…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-02-28T23:13:51+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-28T23:13:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/02/6.-Hiroki-in-front-of-dolls-closeup-credit-Maya-Bankovic_brighter-scaled.jpg?fit=1200%2C801&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "801" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1145280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1145620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroki-tanaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroki-tanaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroki-tanaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1146200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroki-tanaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jamie-parker/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jamie Parker" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jamie-parker/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jamie Parker is a concert pianist with an extensive career both as a soloist and as part of chamber ensembles, including the renowned Gryphon Trio. Born in British Columbia, he studied at the Vanco…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:59:46+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:32:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Parker_J_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1147380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1147720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jamie-parker/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jamie-parker/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jamie-parker/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1148060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jamie-parker/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gene-kinoshita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Gene Kinoshita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/gene-kinoshita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "“Gene Kinoshita is a retired architect who worked in the Toronto area. For forty years, he was a founding principal of Moffatt Kinoshita Architects. He got his Bachelor of Architecture at the…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:46:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:38:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kinoshita_Gene_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1149100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1149440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gene-kinoshita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gene-kinoshita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gene-kinoshita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1149820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gene-kinoshita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/baco-ohama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Baco Ohama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/baco-ohama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Baco Ohama describes herself as a sensorialist, a writer, a text walker, a maker, and as an artist who works with the felt and the found. She says she is drawn to slow conversations and everyday po…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:28:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:04:53+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/website-Baco-Ohama-scaled.jpeg?fit=1200%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1150860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1151200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/baco-ohama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/baco-ohama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/baco-ohama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1151920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/baco-ohama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1152300", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1152400" - }, - { - "@id": "_:g1152420" - }, - { - "@id": "_:g1152440" - } - ] - }, - { - "@id": "_:g1152400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Baco-Ohama-a-frail-history-2015_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Baco-Ohama-a-frail-history-2015_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1152420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Baco-Ohama-MIYOSHI-2000-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Baco-Ohama-MIYOSHI-2000-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1152440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Baco-Ohama-performative-reading-ofA-Young-Girl-a-Young-Woman-and-a-Woman-Nearing-Sixty-2011-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Baco-Ohama-performative-reading-ofA-Young-Girl-a-Young-Woman-and-a-Woman-Nearing-Sixty-2011-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barry-broadfoot/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Barry Broadfoot" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/barry-broadfoot/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Barry Broadfoot was a noted Canadian oral historian, famous for his book Ten Lost Years which shares oral histories of the Great Depression. Among his many other works is the book Years of Sorrow, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T05:22:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:08:29+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Broadfoot_Barry_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1153280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1153620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barry-broadfoot/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barry-broadfoot/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barry-broadfoot/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1154080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/barry-broadfoot/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1154440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1154520" - }, - { - "@id": "_:g1154540" - } - ] - }, - { - "@id": "_:g1154520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/9780773770942-us_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/9780773770942-us_W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1154540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/YearsofSorrow.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/YearsofSorrow.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shozo-ushiroguchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shozo Ushiroguchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shozo-ushiroguchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shozo Ushiroguchi is a photographer who began making black and white photographic prints over 50 years ago when he moved from Japan to Germany; that’s where he apprenticed in a photo studio in West…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:30:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T19:53:35+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Ushiroguchi_S_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1155380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1155720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shozo-ushiroguchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shozo-ushiroguchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shozo-ushiroguchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1156240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shozo-ushiroguchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kumano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Kumano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-kumano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Kumano was one of the most well-known Nisei harmonica players, and a member of the Lemon Creek Harmonica Band. He was very active as a harmonica performer and bandleader in Vancouver prior to t…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:08:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:38:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Kumano_Roy_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1157420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1157760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kumano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kumano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kumano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1158280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-kumano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yvonne-wakabayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yvonne Wakabayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yvonne-wakabayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yvonne Wakabayashi (née Tasaka) was born in Vancouver in 1938 and spent her early childhood years during internment with her family in the tiny rural communities of Blind Bay and Notch Hill, Britis…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-21T03:21:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T21:44:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/ART_Craft_2393-600.jpg?fit=600%2C728&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "728" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1159320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1159660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yvonne-wakabayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yvonne-wakabayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yvonne-wakabayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1160660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yvonne-wakabayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1161040", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1161320" - }, - { - "@id": "_:g1161340" - }, - { - "@id": "_:g1161360" - }, - { - "@id": "_:g1161380" - }, - { - "@id": "_:g1161400" - }, - { - "@id": "_:g1161420" - }, - { - "@id": "_:g1161440" - }, - { - "@id": "_:g1161460" - }, - { - "@id": "_:g1161480" - }, - { - "@id": "_:g1161500" - }, - { - "@id": "_:g1161520" - }, - { - "@id": "_:g1161540" - } - ] - }, - { - "@id": "_:g1161320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/sculpt1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/sculpt1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/sculpt3_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/sculpt3_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/sculpt4_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/sculpt4_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall2-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall2-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall5_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall5_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161440", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall8_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wall8_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161460", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear1_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear1_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear2_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear2_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear4_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear4_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear7_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear7_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1161540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear9_1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/wear9_1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yanagida-lordly/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takako Yanagida-Lordly" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takako-yanagida-lordly/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takako Yanagida-Lordly is a soprano singer. She is well known for her exquisite voice, onstage charisma and exceptional interpretations of Japanese Art Song. Yanagida-Lordly studied at the Kunitach…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:35:50+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:57:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yanagida_Lordly_Takako_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1162400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1162740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yanagida-lordly/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yanagida-lordly/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yanagida-lordly/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1163260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-yanagida-lordly/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-ujo-nakano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takeo Ujo Nakano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takeo-ujo-nakano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takeo Ujo Nakano was an Issei poet and author of the memoir Within the Barbed Wire Fence, which recounts his experience of the Japanese Canadian internment in road camps and the Angler POW camp. Bo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:20:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:45:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nakano_TU_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1164360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1164640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-ujo-nakano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-ujo-nakano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-ujo-nakano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1165100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takeo-ujo-nakano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1165480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1165540" - } - ] - }, - { - "@id": "_:g1165540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/within-the-barbed-wire-fence-1-120.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/within-the-barbed-wire-fence-1-120.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-lashbrook/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mayumi Lashbrook" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mayumi-lashbrook/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lashbrook performs with an “electric” and “life-giving” connection (The Fringe Review, John Hinton). Mayumi Lashbrook is a mixed race Japanese Canadian settler from Tkaronto who seeks to expose, ch…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-08-13T21:38:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-13T22:11:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/08/Mayumi-Lashbrook-headshot-scaled.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Mayumi Lashbrook" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1166400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1166760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-lashbrook/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-lashbrook/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-lashbrook/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1167240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-lashbrook/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-ohki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mia Ohki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mia-ohki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Mia Ohki is an Japanese Canadian artist, born in Connecticut, USA, and raised in Alberta, Canada. She now lives and works in Vancouver, BC. She primarily illustrates with black pen on white paper t…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-02T05:03:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-20T23:40:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/mia.jpg?fit=240%2C240&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "240" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "240" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Mia Ohki" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1168260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1168600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-ohki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-ohki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-ohki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1169400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mia-ohki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1169800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1169960" - }, - { - "@id": "_:g1170020" - }, - { - "@id": "_:g1170080" - }, - { - "@id": "_:g1170140" - }, - { - "@id": "_:g1170160" - }, - { - "@id": "_:g1170180" - } - ] - }, - { - "@id": "_:g1169960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/PC1-The-Supervolcano.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/PC1-The-Supervolcano.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1170020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/PC5-Aurora-Guardian.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/PC5-Aurora-Guardian.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1170080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/PC6-Winter-Guardian.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/PC6-Winter-Guardian.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1170140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/WP189.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/WP189.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1170160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/WP208-Lion-Gazelle.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/WP208-Lion-Gazelle.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1170180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/WP238-Teach-her.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/WP238-Teach-her.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katsuhiko-takada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Katsuhiko Takada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/katsuhiko-takada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Visit the post for more." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-10T22:08:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:12:34+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Katsuhiko-Takada.jpg?fit=720%2C960&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "720" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1171040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1171380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katsuhiko-takada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katsuhiko-takada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katsuhiko-takada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1171940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/katsuhiko-takada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1172300", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1172480" - }, - { - "@id": "_:g1172500" - }, - { - "@id": "_:g1172520" - }, - { - "@id": "_:g1172540" - }, - { - "@id": "_:g1172560" - }, - { - "@id": "_:g1172580" - }, - { - "@id": "_:g1172600" - } - ] - }, - { - "@id": "_:g1172480", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-1.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-1.jpeg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1172500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-2.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-2.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1172520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-3.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-3.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1172540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-4.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-4.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1172560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-5.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-5.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1172580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-6.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-6.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1172600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-7.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/image-7.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chika-buston/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chika Buston" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/chika-buston/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Chika is an acoustic fingerstyle-guitarist, vocalist, and keyboardist.  She plays an eclectic range of styles, and can commonly be found playing folk music around BC with violinist Caitlan Read. " - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-06T16:54:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:31:29+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1173360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1173640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chika-buston/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chika-buston/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chika-buston/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1174180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chika-buston/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1174560", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1174620" - } - ] - }, - { - "@id": "_:g1174620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Chika-Toast-Collective.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Chika-Toast-Collective.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroko-okata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiroko Okata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiroko-okata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiroko Okata was a shodo artist and founder of the Montreal School of Japanese Calligraphy. Born in Yamaguchi prefecture in Japan, Okata studied calligraphy as a child, but became serious about the…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:17:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:29:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Okata_Hiroko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1175460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1175800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroko-okata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroko-okata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroko-okata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1176360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroko-okata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1176760", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1176860" - }, - { - "@id": "_:g1176920" - }, - { - "@id": "_:g1176980" - } - ] - }, - { - "@id": "_:g1176860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3545_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3545_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1176920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3548_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3548_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1176980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3549-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_3549-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yabu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "George Yabu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/george-yabu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "George Yabu is an interior designer, and co-founder and partner of Yabu Pushelberg, a holistic design practice with its foundation in Interior Design. The firm’s multidisciplinary approach is infor…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T20:38:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:43:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yabu_George_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1177860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1178200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yabu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yabu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yabu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1178560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/george-yabu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kyo-maclear/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kyo Maclear" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kyo-maclear/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kyo Maclear is a Canadian writer, essayist and beloved children’s author. She was born in London, England (to a British father and Japanese mother) and moved to Toronto at the age of four. He…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-03T18:09:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:07:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1179600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1179940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kyo-maclear/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kyo-maclear/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kyo-maclear/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1180460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kyo-maclear/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1180840", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1180900" - } - ] - }, - { - "@id": "_:g1180900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/kyomaclear.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/kyomaclear.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-suzuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "David Suzuki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/david-suzuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "David Suzuki is a renowned environmental activist, and the author of 52 books, including 19 for children. A geneticist by training, Suzuki has become well-known as a broadcaster and spokesperson fo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:47:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:41:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Suzuki_D_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1181660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1181940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-suzuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-suzuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-suzuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1182220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-suzuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruna-murota/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Haruna Murota" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/haruna-murota/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Haruna Murota developed her interest in photography in the early 90’s when she moved from her native Tokyo to Toronto. The inspiration of her photo-based artwork comes from her own internal and ext…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-14T04:09:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:44:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5429_thum.jpg?fit=600%2C400&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "400" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1183260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1183600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruna-murota/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruna-murota/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruna-murota/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1184100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/haruna-murota/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1184480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1184540" - } - ] - }, - { - "@id": "_:g1184540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5573_thum.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5573_thum.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susanne-tabata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Susanne Tabata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/susanne-tabata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Susanne Tabata is a documentarian and digital media creator whose passion is to find truth in overlooked subject material. She was born in Nanaimo and grew up in Tokyo and Victoria before moving to…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-19T05:13:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T17:01:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tabata_Susanne_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1185380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1185720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susanne-tabata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susanne-tabata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susanne-tabata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1186140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susanne-tabata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/elizabeth-hasegawa-agresta/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Elizabeth Hasegawa Agresta" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/elizabeth-hasegawa-agresta/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Elizabeth is a painter and third generation artist, carrying on a family legacy in the creative arts which includes: kimono design, Japanese ceramics, classic wooden yacht design, culinary arts, ph…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-17T00:08:59+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-19T23:42:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/E.H.Agresta-copy-2.jpeg?fit=987%2C961&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "987" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "961" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1187180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1187520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/elizabeth-hasegawa-agresta/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/elizabeth-hasegawa-agresta/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/elizabeth-hasegawa-agresta/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1188360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/elizabeth-hasegawa-agresta/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1188740", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1188860" - }, - { - "@id": "_:g1188880" - }, - { - "@id": "_:g1188900" - }, - { - "@id": "_:g1188920" - } - ] - }, - { - "@id": "_:g1188860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/fullsizeoutput_4c25.jpeg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " SONY DSC " - } - ], - "http://schema.org/description": [ - { - "@value": " SONY DSC " - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/fullsizeoutput_4c25.jpeg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1188880", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_6709.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/IMG_6709.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1188900", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/DSC00626.jpg?ssl=1" - } - ], - "http://schema.org/caption": [ - { - "@value": " SONY DSC " - } - ], - "http://schema.org/description": [ - { - "@value": " SONY DSC " - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/DSC00626.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1188920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/E.H.Agresta-copy-2.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/E.H.Agresta-copy-2.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gabe-anderson/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Gabe Anderson" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/gabe-anderson/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takashi Gabe Anderson is a visual artist, born 1970 in Toronto. He is a 4th generation Japanese- Canadian artist. His mother is Ayako Ellen Anderson nee Yamasaki. She was a set designer in the thea…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T03:43:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:31:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Anderson_Gabe_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1189720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1190060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gabe-anderson/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gabe-anderson/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gabe-anderson/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1190580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/gabe-anderson/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1190960", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1191060" - }, - { - "@id": "_:g1191080" - }, - { - "@id": "_:g1191100" - } - ] - }, - { - "@id": "_:g1191060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/FullSizeRender-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/FullSizeRender-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1191080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Gabe-Anderson-coloured-pencils-on-black-paper-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Gabe-Anderson-coloured-pencils-on-black-paper-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1191100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Gabe-working-pic-900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Gabe-working-pic-900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-takatsu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Henry Takatsu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/henry-takatsu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "William (Henry) Takatsu was born on 1927 in Haney, BC (now Maple Ridge) the second youngest of seven siblings to parents (strawberry and vegetable farmers), Shunsuke and Tatsu Takatsu (nee Mitsuhas…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-25T04:12:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:26:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSCN1701-3.jpg?fit=1200%2C972&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "972" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1191980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1192320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-takatsu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-takatsu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-takatsu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1192860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/henry-takatsu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1193240", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1193340" - }, - { - "@id": "_:g1193360" - }, - { - "@id": "_:g1193380" - } - ] - }, - { - "@id": "_:g1193340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/pic-a-pop-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/pic-a-pop-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1193360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Kojima-Residence.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Kojima-Residence.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1193380", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Henry-Takatsu.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Henry-Takatsu.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-shimazaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Aki Shimazaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/aki-shimazaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Aki Shimazaki is a French-language novelist and translator best known for Tsubaki (1999), a novel set in Nagasaki in which the dropping of the atomic bomb figures prominently. Tsubaki, her first bo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:15:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:47:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Shimazaki_A_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1194220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1194560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-shimazaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-shimazaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-shimazaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1194960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/aki-shimazaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kirsten-mcallister/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kirsten McAllister" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kirsten-mcallister/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kirsten Emiko McAllister is a Professor in the School of Communication at Simon Fraser University. She grew up with her two brothers on the territories of Snuneymuxw Nation in what is now called Na…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-09-03T19:09:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-03T19:09:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/09/IMG_8924.jpeg?fit=427%2C640&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "427" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "640" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1195920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1196260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kirsten-mcallister/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kirsten-mcallister/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kirsten-mcallister/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1196700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kirsten-mcallister/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-tomomichi-sumi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roy Tomomichi Sumi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roy-tomomichi-sumi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roy Tomomichi Sumi is recognized as a master of bonsai and the traditional Japanese garden, being an educator, designer and builder.  Born in Yonago-shi, Tottori-ken, Japan, his family lived in Osa…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-22T04:42:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:13:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Roy-Sumi-600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1197760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1198100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-tomomichi-sumi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-tomomichi-sumi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-tomomichi-sumi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1198620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roy-tomomichi-sumi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lisa-betts-lacroix/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lisa Betts-LaCroix" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lisa-betts-lacroix/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lisa Betts-LaCroix is a writer, speaker, actor and dancer. A champion of radical educational reform, Lisa co-founded of a network of 350+ families in the San Francisco Bay area who independently ed…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T16:49:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:22:07+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Betts-Lacroix_Lisa_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1199800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1200140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lisa-betts-lacroix/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lisa-betts-lacroix/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lisa-betts-lacroix/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1200740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lisa-betts-lacroix/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1201120", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1201220" - }, - { - "@id": "_:g1201240" - }, - { - "@id": "_:g1201260" - } - ] - }, - { - "@id": "_:g1201220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/15EMS_3459_TM_cropped.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/15EMS_3459_TM_cropped.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1201240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/10626405_10153562540139202_7955943513028451010_o.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/10626405_10153562540139202_7955943513028451010_o.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1201260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/bW-pioneer-nation.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/bW-pioneer-nation.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-mizokoshi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ken Mizokoshi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ken-mizokoshi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ken Mizokoshi is a professional photographer who was born and raised in Nagasaki, Japan. He was a staff photographer and a reporter for Japan’s national newspaper The Asahi Shimbun for 25 years. As…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:17:51+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:22:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Ken-Mizokoshi-portrait-scaled.jpg?fit=969%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "969" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Ken Mizokoshi portrait" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1202140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1202480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-mizokoshi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-mizokoshi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-mizokoshi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1203000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ken-mizokoshi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyeko-ferguson/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Miyeko Ferguson" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/miyeko-ferguson/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Miyeko Ferguson is a Tkaronto (Toronto) based dance artist. In 2016, she received her BFA degree in Performance Dance from Ryerson University. Since graduation, Miyeko has had the pleasure of worki…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T20:23:51+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T20:27:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/02/Miyeko-Ferguson-Profile-Photo-scaled.jpg?fit=1200%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1204060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1204400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyeko-ferguson/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyeko-ferguson/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyeko-ferguson/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1205020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyeko-ferguson/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-endo-greenaway/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "John Endo Greenaway" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/john-endo-greenaway/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "John Endo Greenaway is a self-described hapa-sansei who lives and works in the Metro Vancouver area. Born in London, England to a Japanese Canadian mother and an English/Irish Canadian father, he h…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-18T23:14:47+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-04-27T18:33:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Thumbnails_Batch_1_Assorted_600X60016-1.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1206060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1206400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-endo-greenaway/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-endo-greenaway/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-endo-greenaway/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1207440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-endo-greenaway/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1207820", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1207940" - }, - { - "@id": "_:g1207960" - }, - { - "@id": "_:g1207980" - }, - { - "@id": "_:g1208000" - } - ] - }, - { - "@id": "_:g1207940", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Sansho_Daiko_Asian_New_Year6_Linda_Tsang_800.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/Sansho_Daiko_Asian_New_Year6_Linda_Tsang_800.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1207960", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/1395345973.109880.IMG_6784_800.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/1395345973.109880.IMG_6784_800.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1207980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/110503-Sansho-Taiko-800.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/110503-Sansho-Taiko-800.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1208000", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/IMG_6900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/IMG_6900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/banri-nakamura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Banri Nakamura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/banri-nakamura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Banri Nakamura was born in Tokyo, and moved close to Kyoto to escape the air raids of the Second world war which caused the deaths of his father, grandfather, aunt, and uncle. After ten years of co…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T23:12:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T02:48:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nakamura_Banri_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1208840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1209180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/banri-nakamura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/banri-nakamura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/banri-nakamura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1209640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/banri-nakamura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsuneko-kokubo/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tsuneko Kokubo" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tsuneko-kokubo/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tsuneko Kokubo was born in Steveston BC in 1937, and raised in Japan. Returning to Canada in her late teens, she studied Fine Arts for four years at Vancouver School of Art (now Emily Carr Universi…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T21:32:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-02T20:42:01+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kokubo_Tsuneko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1210380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1210720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsuneko-kokubo/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsuneko-kokubo/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsuneko-kokubo/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1211380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsuneko-kokubo/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toru-fujibayashi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Toru Fujibayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/toru-fujibayashi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "I was born at home into a world of chaos on the 23rd February, 1942 in Vancouver, BC, an enemy alien destined for internment in the Slocan Valley…brief stays in Popoff, Bay Farm, then settlin…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-15T17:20:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:10:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1212580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1212920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toru-fujibayashi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toru-fujibayashi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toru-fujibayashi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1213440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toru-fujibayashi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sadashi-inuzuka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sadashi Inuzuka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sadashi-inuzuka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sadashi Inuzuka is a visual artist with a background in ceramics who also creates installations and public art projects. Born in Japan, he had a life-long ambition to immigrate to North America and…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:45:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:26:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Inuzuka_Sadashi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1214480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1214820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sadashi-inuzuka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sadashi-inuzuka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sadashi-inuzuka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1215340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sadashi-inuzuka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1215720", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1215820" - }, - { - "@id": "_:g1215840" - }, - { - "@id": "_:g1215860" - } - ] - }, - { - "@id": "_:g1215820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/75_02.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/75_02.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1215840", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/75_03.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/75_03.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1215860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/75_06.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/75_06.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/megumi-masaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Megumi Masaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/megumi-masaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Megumi Masaki is a concert pianist and multimedia artist.  The innovation and breadth of her artistic activity, dynamic temperament and ‘riveting and mind-expanding’ performances have earned her a …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:25:35+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:56:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Masaki_Megumi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1216680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1217020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/megumi-masaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/megumi-masaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/megumi-masaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1217580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/megumi-masaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-embers/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "The Embers" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/the-embers/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Embers were a Nisei rock ensemble that performed at many Japanese Canadian community picnics and dances. They featured musician Yo Mori (an NAJC Toronto stalwart), and were particularly well-kn…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T01:36:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:55:09+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_08_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1218760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1219100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-embers/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-embers/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-embers/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1219500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/the-embers/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsutao-machida/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tsutao Machida" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tsutao-machida/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Visit the post for more." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-23T05:10:50+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T22:11:32+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1220540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1220880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsutao-machida/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsutao-machida/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsutao-machida/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1221860", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tsutao-machida/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1222240", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1222560" - }, - { - "@id": "_:g1222580" - }, - { - "@id": "_:g1222600" - }, - { - "@id": "_:g1222620" - }, - { - "@id": "_:g1222640" - }, - { - "@id": "_:g1222660" - }, - { - "@id": "_:g1222680" - }, - { - "@id": "_:g1222700" - }, - { - "@id": "_:g1222720" - }, - { - "@id": "_:g1222740" - }, - { - "@id": "_:g1222760" - }, - { - "@id": "_:g1222780" - }, - { - "@id": "_:g1222800" - }, - { - "@id": "_:g1222820" - } - ] - }, - { - "@id": "_:g1222560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9545.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9545.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9546.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9546.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9547.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9547.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9548.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9548.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9549.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9549.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9551.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9551.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9552.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9552.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9553.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9553.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222720", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9554.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9554.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9555.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9555.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9556.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9556.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9557.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9557.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9558.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9558.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1222820", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9559.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_9559.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-aihoshi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Susan Aihoshi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/susan-aihoshi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Susan Aihoshi is a sansei, or third generation Japanese Canadian. She was born in Toronto, a city she loves and where she has lived all her life. She studied at the University of Toronto and has tw…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-15T23:42:24+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:06:58+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1223660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1224000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-aihoshi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-aihoshi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-aihoshi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1224420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/susan-aihoshi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hannah-mariko-bell/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hannah Mariko Bell" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hannah-mariko-bell/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hannah is a proud fourth generation Japanese Canadian raised on Treaty 7 Territory within Blackfoot Confederacy lands (Calgary, Alberta). She is a neurodivergent artist and a member of the LGBTQIA2…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-07-12T19:04:25+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-05-17T18:43:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1225620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1225960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hannah-mariko-bell/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hannah-mariko-bell/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hannah-mariko-bell/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1226460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hannah-mariko-bell/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinsuke-minegishi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shinsuke Minegishi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shinsuke-minegishi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shinsuke Minegishi was born (1970) and raised in Tokyo, Japan. In 1991, he moved to California, USA, to continue his studies. Two years later he moved to Vancouver, Canada, to complete his undergra…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-05T05:55:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:40:22+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1227500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1227840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinsuke-minegishi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinsuke-minegishi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinsuke-minegishi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1228360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinsuke-minegishi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1228740", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1228800" - } - ] - }, - { - "@id": "_:g1228800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSC00073.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSC00073.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanon-suzuki-hewitt/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kanon Suzuki Hewitt" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kanon-suzuki-hewitt/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kanon Suzuki Hewitt is a hafu Japanese/American who grew up in Tokyo, and currently lives, studies, and works in Canada. She began ballet at age four, which quickly blossomed into a love of dance, …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-21T15:59:58+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-11-19T23:54:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/0N9A2071-Edit-1200.jpg?fit=1200%2C800&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1228900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1228940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanon-suzuki-hewitt/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanon-suzuki-hewitt/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanon-suzuki-hewitt/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1229580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanon-suzuki-hewitt/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-chiba-stearns/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jeff Chiba Stearns" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jeff-chiba-stearns/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jeff Chiba Stearns is an Emmy® nominated and Webby award-winning animation and documentary filmmaker, as well as an acclaimed author and illustrator. After graduating from the Emily Carr University…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:17:45+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-08-20T20:54:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Stearns_J_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1230780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1231120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-chiba-stearns/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-chiba-stearns/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-chiba-stearns/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1231840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jeff-chiba-stearns/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1232220", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1232320" - }, - { - "@id": "_:g1232340" - }, - { - "@id": "_:g1232360" - } - ] - }, - { - "@id": "_:g1232320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/OBHF_poster_final_Brush_RGB_official_selection_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/OBHF_poster_final_Brush_RGB_official_selection_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1232340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/WAYA_Poster_laurel_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/WAYA_Poster_laurel_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1232360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/On-Being-Yukiko-Cover-RGB-FINAL-150dpi.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/On-Being-Yukiko-Cover-RGB-FINAL-150dpi.jpeg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soramaru-takayama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Soramaru Takayama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/soramaru-takayama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "In 2007, having received an MA in philosophy, Sora travelled the world for four-and-a-half years writing short poems. In 2008, he joined Austrian artist Bello Benischauer’s ongoing art projec…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-23T20:57:09+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:40:47+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "http://japanesecanadianartists.com/wordpress/wp-content/uploads/2017/08/sora2.jpg" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "851" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "478" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1233220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1233560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soramaru-takayama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soramaru-takayama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soramaru-takayama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1234080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/soramaru-takayama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-nakamura-maguire/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lillian Nakamura Maguire" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lillian-nakamura-maguire/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lillian Nakamura Maguire is a second-generation Japanese Canadian, new playwright living and retired in the countryside near Whitehorse, Yukon.  Her first play, Hidden Memories was accepted by Ruby…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-28T17:21:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:43:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1235120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1235460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-nakamura-maguire/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-nakamura-maguire/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-nakamura-maguire/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1235940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lillian-nakamura-maguire/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1236340", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1236400" - } - ] - }, - { - "@id": "_:g1236400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_6148.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/IMG_6148.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-sumi-tabuchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sue Sumi Tabuchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sue-sumi-tabuchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sue Sumi Tabuchi is a sumi-e artist whose work was featured in the 1978 Japanese Canadian Centennial exhibition. She began to learn sumi-e techniques from her father at the age of two, and later we…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T21:44:18+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T23:04:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Brushes_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1237280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1237620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-sumi-tabuchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-sumi-tabuchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-sumi-tabuchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1238040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-sumi-tabuchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinya-kumazawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shinya Kumazawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shinya-kumazawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Inspired by the beautiful scenery of High Park, Toronto, Shinya Kumazawa has been living and painting in Toronto since 2000.  Mesmerized by the shifting seasons as they unfold on the 400 acres, ran…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-12T23:29:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-06-17T19:17:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/portrait-square.jpg?fit=1200%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1239080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1239420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinya-kumazawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinya-kumazawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinya-kumazawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1240000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shinya-kumazawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1240380", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1240500" - }, - { - "@id": "_:g1240520" - }, - { - "@id": "_:g1240540" - }, - { - "@id": "_:g1240560" - } - ] - }, - { - "@id": "_:g1240500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Time-We-Had-Grand-Canyon.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Time-We-Had-Grand-Canyon.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1240520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Mist-in-Paris.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Mist-in-Paris.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1240540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Gem-in-Sedona.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Gem-in-Sedona.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1240560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Felt-Wind.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/Felt-Wind.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-ishiwata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Miyo Ishiwata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/miyo-ishiwata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Miyo Ishiwata was a Nisei poet whose work appeared frequently in The New Canadian in the late 1930s and 1940s. While many writers contributed poems to The New Canadian, Ishiwata was among the most …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-13T20:14:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:42:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Ishiwata_M_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1241400", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1241740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-ishiwata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-ishiwata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-ishiwata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1242160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miyo-ishiwata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/real-akazawa-eguchi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Real (Akazawa) Eguchi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/real-akazawa-eguchi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Real Eguchi is a Toronto-based landscape architect with over 25 years of experience in his field in Canada, Asia, and the Middle East. He is the Managing Principal of Eguchi Associated Landscape Ar…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:31:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:28:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi_Real_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1243200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1243540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/real-akazawa-eguchi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/real-akazawa-eguchi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/real-akazawa-eguchi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1244100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/real-akazawa-eguchi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1244480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1244600" - }, - { - "@id": "_:g1244620" - }, - { - "@id": "_:g1244640" - }, - { - "@id": "_:g1244660" - } - ] - }, - { - "@id": "_:g1244600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/19fbb89.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/19fbb89.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1244620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1244640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1244660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Eguchi3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-iga/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yuriko Iga" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yuriko-iga/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Blim retail consists of unique cosmic apparel handmade and hand printed exclusively by Blim. All product is made in our Blim studio and print shop. Imagined at age 4, Blim founder Yuriko Iga create…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-02-20T22:55:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-30T18:48:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1245520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1245880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-iga/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-iga/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-iga/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1246580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yuriko-iga/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1246800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1246860" - } - ] - }, - { - "@id": "_:g1246860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/riff2018.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/02/riff2018.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-guilbert/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Naomi Guilbert" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/naomi-guilbert/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Naomi Guilbert is a writer who set aside writing in 1995 to focus on music when she co-founded the Winnipeg based professional taiko group Fubuki Daiko with her husband, Hiroshi Koshiyama. Guilbert…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:54:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:27:36+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Guilbert_Naomi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1247680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1248020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-guilbert/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-guilbert/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-guilbert/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1248500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/naomi-guilbert/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/maryka-omatsu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Maryka Omatsu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/maryka-omatsu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Maryka Omatsu is a former lawyer and Canada’s first Asian woman judge. She is the author of the non-fiction book Bittersweet Passage: Redress and the Japanese Canadian Experience. Published in 1992…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T21:30:08+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:00:38+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Omatsu_M_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1249560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1249900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/maryka-omatsu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/maryka-omatsu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/maryka-omatsu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1250300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/maryka-omatsu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-motomochi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tom Motomochi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tom-motomochi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tom Motomochi is an architect with a long career with the Toronto-based Moriyama & Teshima firm. He graduated from the University of British Columbia with a BSc in Mathematics and Physics in 19…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T19:07:07+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:45:27+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Architecture_04_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1251340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1251680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-motomochi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-motomochi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-motomochi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1252060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tom-motomochi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michelle-yagi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Michelle Yagi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/michelle-yagi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Michelle (she/her) is an international producer and arts leader with diverse experience working for dozens of theatres, festivals, dance companies and entertainment agencies across Canada, the Unit…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:23:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:23:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2023/09/Michelle-Yagi-headshot2.png?fit=745%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "745" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Michelle Yagi" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1253140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1253480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michelle-yagi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michelle-yagi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michelle-yagi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1253800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/michelle-yagi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-lee-and-gordon-switzer/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Ann-Lee and Gordon Switzer" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/ann-lee-and-gordon-switzer/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ann-Lee and Gordon Switzer are the authors of Gateway to Promise: Canada’s First Japanese Community, and Sakura in Stone: Victoria’s Japanese Legacy. A husband and wife historian team, they became …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-05T05:37:41+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:17:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Switzer_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1254820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1255160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-lee-and-gordon-switzer/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-lee-and-gordon-switzer/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-lee-and-gordon-switzer/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1255500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/ann-lee-and-gordon-switzer/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyoshi-yoshi-yoshihara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Toyoshi (Yoshi) Yoshihara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/toyoshi-yoshi-yoshihara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Toyoshi Yoshihara was born in Tokyo, Japan, in 1937. After graduating from Waseda University (B.A.), he immigrated to Canada in 1970. Besides running a successful heavy equipment marketing business…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T20:15:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T19:58:51+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yoshihara_Toyoshi_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1256560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1256900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyoshi-yoshi-yoshihara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyoshi-yoshi-yoshihara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyoshi-yoshi-yoshihara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1257440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/toyoshi-yoshi-yoshihara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-akira-stadnicki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Daniel Akira Stadnicki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/daniel-akira-stadnicki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Daniel Akira Stadnicki is an award-winning, mixed Asian-Canadian drummer, scholar, and popular music educator based in Amiskwaciy Waskahikan (Edmonton, Alberta) with strong family ties to the Japan…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-15T20:08:45+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-07-01T17:55:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/Stadnicki-Profile-Pic-JCAD-scaled.jpg?fit=1200%2C954&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "954" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Daniel Akira Stadnicki Photo Credit: Janelle Dudzic" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1258500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1258840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-akira-stadnicki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-akira-stadnicki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-akira-stadnicki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1259500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/daniel-akira-stadnicki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/keri-latimer/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Keri Latimer" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/keri-latimer/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Keri Latimer is a Japanese/Irish/Canadian songwriter, film composer and front woman of the band Leaf Rapids from Winnipeg, Manitoba. Live performances include guitar, vocals and theremin which are …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-29T22:20:45+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:56:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1260560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1260900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/keri-latimer/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/keri-latimer/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/keri-latimer/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1261420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/keri-latimer/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1261800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1261860" - } - ] - }, - { - "@id": "_:g1261860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Keri-Winter.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Keri-Winter.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/julie-tamiko-manning/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Julie Tamiko Manning" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/julie-tamiko-manning/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Julie is an award-winning actor and theatre creator based in ​Tiohtiá:ke /Montréal. Selected acting credits include: Annie in Jean Dit (Théâtre D’Aujourd’hui), Sin in Paradise Lost (Cen…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-07-27T19:29:00+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:18:50+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1262700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1263040", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/julie-tamiko-manning/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/julie-tamiko-manning/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/julie-tamiko-manning/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1263880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/julie-tamiko-manning/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-takahide-lee/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kevin Takahide Lee" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kevin-takahide-lee/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yonsei, Kevin Takahide Lee is a firm believer that the arts must be interwoven with social needs.  After graduating from UBC and UWO in opera and voice performance, he has been involved with produc…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:12:49+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:12:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2023/09/KevinsHeadshot-scaled.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Kevin Takahide Lee" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1265080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1265420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-takahide-lee/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-takahide-lee/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-takahide-lee/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1265980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kevin-takahide-lee/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-obata/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sue Obata" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sue-obata/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sue Obata is a Toronto-based glass artist whose work can be found in government buildings, university campuses, private homes, and churches from Trinidad to Germany, and within Canada in Nova Scoti…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T05:36:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:37:45+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Obata_Sue_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1267020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1267360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-obata/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-obata/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-obata/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1267960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sue-obata/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1268200", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1268300" - }, - { - "@id": "_:g1268320" - }, - { - "@id": "_:g1268340" - } - ] - }, - { - "@id": "_:g1268300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sue-Obata-1-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sue-Obata-1-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1268320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sue-Obata-2-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sue-Obata-2-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1268340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sue-Obata-3-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sue-Obata-3-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harold-takayesu/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Harold Takayesu" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/harold-takayesu/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Harold Takayesu was a highly-regarded Hamilton-based ceramicist. In 2002, he received the Mather Award from the Ontario Craft Council for outstanding contribution to crafts over an extended period." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T22:54:06+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:34:21+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Pottery_05_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1269180", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1269520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harold-takayesu/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harold-takayesu/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harold-takayesu/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1269940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/harold-takayesu/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuo-kato/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Shizuo Kato" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/shizuo-kato/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Shizuo Kato was a Japanese Canadian artist who studied painting in Paris in the late 1930s. Originally from Vancouver, Kato worked at his uncle’s Powell Street shoe store and took night school art …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-14T17:56:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:53:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Paint_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1271120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1271460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuo-kato/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuo-kato/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuo-kato/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1271920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/shizuo-kato/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-fujiwara/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "David Fujiwara" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/david-fujiwara/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "David Fujiwara is a Toronto-based architect who runs a consulting firm specializing in building and space design. In the over thirty years that he has run his firm, Fujiwara has designed houses, he…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:38:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:28:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Fujiwara_David_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1272960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1273300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-fujiwara/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-fujiwara/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-fujiwara/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1273760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/david-fujiwara/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1274140", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1274220" - }, - { - "@id": "_:g1274240" - } - ] - }, - { - "@id": "_:g1274220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1-Front-close-up.1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/1-Front-close-up.1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1274240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5L8A6819_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/5L8A6819_1200.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/diana-morita-cole/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Diana Morita Cole" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/diana-morita-cole/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Diana Morita Cole received the 2017 Richard Carver Award for Emerging Artists for her book, Sideways: Memoir of a Misfit, which tells of her birth behind barbed wires in a Minidoka incarceration si…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-10T03:04:56+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-18T18:45:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/DMCOLE.jpg?fit=1200%2C1189&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1189" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Diana Morita Cole -Photo credit Glory Vitug" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1275100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1275440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/diana-morita-cole/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/diana-morita-cole/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/diana-morita-cole/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1275940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/diana-morita-cole/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1276340", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1276400" - } - ] - }, - { - "@id": "_:g1276400", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sideways-Memoir-of-a-Misfit_front_cover_600X600.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Sideways-Memoir-of-a-Misfit_front_cover_600X600.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leanne-toshiko-simpson/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Leanne Toshiko Simpson" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/leanne-toshiko-simpson/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Leanne Toshiko Simpson is a mixed-race Yonsei writer and psychiatric survivor from Scarborough, Ontario. She is a graduate of UTSC Creative Writing and the University of Guelph’s MFA program. Curre…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-09T21:02:15+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-09T21:03:16+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Headshot2019ls-scaled.jpg?fit=1200%2C857&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "857" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Leanne Toshiko Simpson" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1277280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1277620", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leanne-toshiko-simpson/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leanne-toshiko-simpson/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leanne-toshiko-simpson/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1278100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/leanne-toshiko-simpson/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-ito/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sally Ito" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sally-ito/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sally Ito is a writer and translator, born and raised in Taber, Alberta. She has written three books of poetry – Frogs in the Rain Barrel (Nightwood Editions, 1995), Season of Mercy (Nightwood Edit…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-06-26T05:56:30+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-10-01T22:50:28+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/06/SallyProfilePicforPoetryInVoice.jpg?fit=960%2C960&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "960" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1279140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1279480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-ito/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-ito/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-ito/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1280060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sally-ito/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoko-okada/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hitoko Okada" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hitoko-okada/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hitoko Okada is a fibre artist and craft maker based in Hamilton, Ontario. She started her career as a props maker and costumer in professional theatre in Vancouver, British Columbia and throughout…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-01-08T22:17:55+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-05-17T17:40:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1281100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1281440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoko-okada/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoko-okada/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoko-okada/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1282440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hitoko-okada/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tatsuo-kage/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tatsuo Kage" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tatsuo-kage/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tatsuo Kage is the author of Nikkei Kanadajin no Tsuiho, translated into English as Uprooted Again: Japanese Canadians Move to Japan After World War II by Kathleen Chisato Merken. Born in Japan, Ka…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:53:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-06-10T18:04:00+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kage_Tatsuo_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1283640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1283980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tatsuo-kage/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tatsuo-kage/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tatsuo-kage/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1284460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tatsuo-kage/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-uyehara-hoffman/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Linda Uyehara Hoffman" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/linda-uyehara-hoffman/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Linda Uyehara Hoffman has been a taiko (Japanese drum) player for over 30 years. She was a founding member of Katari Taiko, the first taiko group in Canada, and of Sawagi Taiko, the first all-women…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T06:37:57+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-03-08T00:06:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Uyehara_Hoffman_Linda_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1285500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1285840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-uyehara-hoffman/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-uyehara-hoffman/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-uyehara-hoffman/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1286500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/linda-uyehara-hoffman/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1286880", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1287020" - }, - { - "@id": "_:g1287040" - }, - { - "@id": "_:g1287060" - }, - { - "@id": "_:g1287080" - }, - { - "@id": "_:g1287100" - } - ] - }, - { - "@id": "_:g1287020", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2012-LUH-taiko-cropped-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/2012-LUH-taiko-cropped-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1287040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Linda_shootScissors_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Linda_shootScissors_W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1287060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scissors-Film-FINAL_02009_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scissors-Film-FINAL_02009_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1287080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scissors-Film-FINAL_10184_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scissors-Film-FINAL_10184_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1287100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scissors-Film-FINAL_19312_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Scissors-Film-FINAL_19312_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/cindy-mochizuki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Cindy MOCHIZUKI" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/cindy-mochizuki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Cindy Mochizuki creates multi-media installation, animation, drawing, audio fiction, performance, and community-engaged projects. She has exhibited her work in Canada, US, Australia, and Japan. Rec…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-18T15:47:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-25T23:26:49+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1287960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1288300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/cindy-mochizuki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/cindy-mochizuki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/cindy-mochizuki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1289100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/cindy-mochizuki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/beverly-horii/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Beverly Horii" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/beverly-horii/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Beverly Horii is a Toronto-based architect, and the managing director and principal at IA Interior Architects in Toronto. Horii holds a Bachelor of Architecture and a Bachelor of Environmental Stud…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:45:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-30T00:38:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Beverly_Horii-_headshot.jpg?fit=420%2C420&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "420" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "420" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1290300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1290640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/beverly-horii/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/beverly-horii/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/beverly-horii/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1291160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/beverly-horii/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1291480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1291580" - }, - { - "@id": "_:g1291600" - }, - { - "@id": "_:g1291620" - } - ] - }, - { - "@id": "_:g1291580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/01-LinkedIn-Toronto-IA-Eric-Laignel.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/01-LinkedIn-Toronto-IA-Eric-Laignel.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1291600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/03-LinkedIn-Toronto-IA-Eric-Laignel.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/03-LinkedIn-Toronto-IA-Eric-Laignel.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1291620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Beverly_Horii-_headshot.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Beverly_Horii-_headshot.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanau-uyeyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kanau Uyeyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kanau-uyeyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kanau Uyeyama is a Vancouver-based architect who has run his own firm, Architecton, with the help of his wife, chief researcher Mary Todd, for over forty years. He received his Bachelor of Architec…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-13T00:49:04+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T22:51:55+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Uyeyama_Kanau_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1292460", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1292800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanau-uyeyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanau-uyeyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanau-uyeyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1293080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kanau-uyeyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroe-hoshi-aka-negma/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiroe Hoshi aka Negma" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiroe-hoshi-aka-negma/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiroe Hoshi aka Negma is a professional bellydancer based in Victoria Vancouver Island BC.  She has been performing belly dance in Tokyo Japan, Dubai UAE, Vancouver Canada. ​In Arabic, the word Neg…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-01T21:35:19+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:05:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1293380", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1293480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroe-hoshi-aka-negma/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroe-hoshi-aka-negma/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroe-hoshi-aka-negma/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1294420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiroe-hoshi-aka-negma/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1294640", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1294800" - }, - { - "@id": "_:g1294860" - }, - { - "@id": "_:g1294920" - }, - { - "@id": "_:g1294980" - }, - { - "@id": "_:g1295040" - }, - { - "@id": "_:g1295100" - } - ] - }, - { - "@id": "_:g1294800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/10524262_10152720595880248_6976343990702530509_o.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/10524262_10152720595880248_6976343990702530509_o.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1294860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Noor-posterS.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Noor-posterS.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1294920", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Vail-GS.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/Vail-GS.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1294980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSC_1048S.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSC_1048S.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1295040", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSC_0926S.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/DSC_0926S.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1295100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/14031078_654740678025705_2052028630_n-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/14031078_654740678025705_2052028630_n-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chuck-tasaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Chuck Tasaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/chuck-tasaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Chuck Tasaka was born in Midway, B.C. in 1945, and was given the name Hachiro. Baptized as Charles in 1951, he goes by the present name. He received all of his schooling in Greenwood, B.C., having …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-20T16:23:03+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T21:16:13+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1295980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1296340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chuck-tasaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chuck-tasaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chuck-tasaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1296980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/chuck-tasaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1297360", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1297420" - } - ] - }, - { - "@id": "_:g1297420", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Greenwoods-Rendell-Block.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Greenwoods-Rendell-Block.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/scott-kokichi-kusano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Scott Kokichi Kusano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/scott-kokichi-kusano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kokichi began his performing career at the age of 5 as a member of the Toronto Suwa Daiko a cultural association located in Toronto. Subsequently, Kokichi was introduced again to Japanese music dur…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-03-06T23:56:39+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:20:08+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1298000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1298340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/scott-kokichi-kusano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/scott-kokichi-kusano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/scott-kokichi-kusano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1299200", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/scott-kokichi-kusano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1299440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1299500" - } - ] - }, - { - "@id": "_:g1299500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Kokichiwithtaiko600x600.png?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/03/Kokichiwithtaiko600x600.png?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roland-kawano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Roland Kawano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/roland-kawano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Roland Kawano is a priest and the editor of A History of the Japanese Congregations in the United Church of Canada 1892-1959, published in 1998. The book is a translation of a previously commission…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:49:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T21:02:52+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kawano_Roland_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1300360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1300700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roland-kawano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roland-kawano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roland-kawano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1301020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/roland-kawano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiji-yoshikawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Eiji Yoshikawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/eiji-yoshikawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Writer. Fighter (professional boxer). Filmmaker. Inspirational Speaker. Film Historian. Action Instructor for Movies. Peace Activist." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T23:15:23+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T23:15:23+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/image0.jpeg?fit=750%2C1068&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "750" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1068" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1302020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1302360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiji-yoshikawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiji-yoshikawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiji-yoshikawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1303020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/eiji-yoshikawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hirano/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Robert Hirano" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/robert-hirano/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Robert Hirano is a Lethbridge-based architect who specializes in heritage preservation and conservation of historic and heritage sites with his firm, rkh architecture. They have worked on a variety…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:40:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-08T20:31:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Hirano_Robert_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1303940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1304280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hirano/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hirano/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hirano/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1304740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hirano/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1305120", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1305220" - }, - { - "@id": "_:g1305240" - }, - { - "@id": "_:g1305260" - } - ] - }, - { - "@id": "_:g1305220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hirano1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hirano1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1305240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hirano2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hirano2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1305260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hirano3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Hirano3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-yoshida/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Mayumi Yoshida" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/mayumi-yoshida/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Born in Japan, raised in three continents, Mayumi Yoshida is an actor, writer, director, based in Vancouver, BC. She is known for her role as Crown Princess (The Man in The High Castle, Amazon Prim…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2021-10-06T18:05:54+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:19:26+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2021/10/242064747_540968183683018_1749809743320417197_n.jpg?fit=800%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "800" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Mayumi Yoshida" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1305820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1306160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-yoshida/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-yoshida/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-yoshida/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1306840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/mayumi-yoshida/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-okuyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Hiromi Okuyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/hiromi-okuyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Hiromi Okuyama was born and raised in Toronto. Her father is Shotokan Karate Master Kancho T. Okuyama who is originally from Hachijojima Island in Japan. Her mother Belle is originally from Hong Ko…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-04-08T18:50:36+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-04-08T18:52:02+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/04/image0.jpeg?fit=539%2C671&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "539" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "671" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1307920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1308260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-okuyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-okuyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-okuyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1308920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/hiromi-okuyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/helen-koyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Helen Koyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/helen-koyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Helen Koyama is a Sansei writer based in Toronto. Her poetry was published in the landmark Asian Canadian anthology Inalienable Rice in 1979, and she also did illustrations for Rikka and Ricepaper …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T23:02:48+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-22T22:54:33+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Koyama_3_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1309960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1310300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/helen-koyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/helen-koyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/helen-koyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1310760", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/helen-koyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lemon-creek-harmonica-band/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lemon Creek Harmonica Band" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lemon-creek-harmonica-band/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Lemon Creek Harmonica Band was a long-enduring and well-loved musical group, a legacy of popular harmonica bands of the 1930s and 1940s. It was formed during the internment at the Lemon Creek i…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T04:35:38+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-20T22:57:56+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Lemon_Creek_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1311320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1311360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lemon-creek-harmonica-band/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lemon-creek-harmonica-band/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lemon-creek-harmonica-band/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1311800", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lemon-creek-harmonica-band/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1312060", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1312140" - }, - { - "@id": "_:g1312160" - } - ] - }, - { - "@id": "_:g1312140", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/lemoncreekband006sm-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/lemoncreekband006sm-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1312160", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/lemoncreekband008sm-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "356" - } - ], - "http://schema.org/height": [ - { - "@value": "356" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/lemoncreekband008sm-W.jpg?w=356&h=356&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-yamamoto/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Donna Yamamoto" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/donna-yamamoto/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Donna is an actor whose acting career began in 1987 in an Art’s Club production for which she was recognized with a Jessie Award for ‘Most Promising Newcomer.’ Soon after, she played the lead role …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T18:47:44+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-06-01T21:39:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Yamamoto_Donna_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1312780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1313120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-yamamoto/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-yamamoto/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-yamamoto/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1313580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/donna-yamamoto/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-dare/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Miki Dare" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/miki-dare/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Miki Dare (Dare is pronounced DAH-RAY in Japanese) lives on the West Coast where she likes to express herself with whatever falls into her hands – from a pen to a paintbrush. She enjoys working wit…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-10-14T18:11:34+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-08T01:15:48+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Miki-Dare-2021-scaled.jpg?fit=900%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Miki Dare" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1314640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1314980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-dare/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-dare/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-dare/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1316060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/miki-dare/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1316440", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1316600" - }, - { - "@id": "_:g1316620" - }, - { - "@id": "_:g1316640" - }, - { - "@id": "_:g1316660" - }, - { - "@id": "_:g1316680" - }, - { - "@id": "_:g1316700" - } - ] - }, - { - "@id": "_:g1316600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Add-Water-Instant-Asian-by-Miki-Dare.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Add-Water-Instant-Asian-by-Miki-Dare.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1316620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Exotic-Existence-Udon-by-Miki-Dare.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Exotic-Existence-Udon-by-Miki-Dare.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1316640", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/The-Future-Burnt-Remains-to-Be-Seen-by-Miki-Dare.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/The-Future-Burnt-Remains-to-Be-Seen-by-Miki-Dare.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1316660", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Call-Me-By-My-Name-by-Miki-Dare.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Call-Me-By-My-Name-by-Miki-Dare.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1316680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Sea-of-Stereotypes-and-Lost-Memories-by-Miki-Dare.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Sea-of-Stereotypes-and-Lost-Memories-by-Miki-Dare.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1316700", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Grow-Out-My-Roots-by-Miki-Dare.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/10/Grow-Out-My-Roots-by-Miki-Dare.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terrie-hamazaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Terrie Hamazaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/terrie-hamazaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Terrie Hamazaki (she/her) is a Vancouver-based writer of poetry, fiction/non-fiction, and stage plays. She performed her one-woman show “Furusato (birth place)” at the Fringe and Women in View Perf…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2020-02-12T00:15:07+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-09-03T23:00:43+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1317540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1317880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terrie-hamazaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terrie-hamazaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terrie-hamazaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1318360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/terrie-hamazaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1318540", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1318600" - } - ] - }, - { - "@id": "_:g1318600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/02/IMG_3873.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/02/IMG_3873.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kenji-nagai/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kenji Nagai" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kenji-nagai/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kenji Nagai is a freelance photographer based in Vancouver. Born in Japan, he worked for photography studios in Osaka and Kobe before immigrating to Canada in the 1970s. He has had his own company,…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T04:10:52+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:20:39+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Nagai_Kenji_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1319220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1319560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kenji-nagai/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kenji-nagai/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kenji-nagai/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1320100", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kenji-nagai/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1320480", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1320580" - }, - { - "@id": "_:g1320600" - }, - { - "@id": "_:g1320620" - } - ] - }, - { - "@id": "_:g1320580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/160727144-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/160727144-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1320600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/160727151-W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/160727151-W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1320620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Whistler_W.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Whistler_W.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayla-isomura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kayla Isomura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kayla-isomura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kayla Leung Isomura is a documentary photographer and journalist based in Vancouver, B.C. As a multigenerational settler of Chinese and Japanese descent, Kayla’s interest in storytelling has been l…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-19T17:12:29+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-15T01:10:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1321480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1321820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayla-isomura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayla-isomura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayla-isomura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1322780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kayla-isomura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jess/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jess" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jess/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "‘Jess’ is the pen name of a Nisei who wished to remain anonymous when he wrote his autobiography, the self-published Ignomy. Ignomy is a heart-wrenching portrait of an angry and bitter Nisei that f…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-10T23:47:33+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T22:45:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Jess_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1323960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1324300", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jess/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jess/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jess/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1324660", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jess/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fujiko-imajishi/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Fujiko Imajishi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/fujiko-imajishi/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Japanese-born Fujiko Imajishi has made her home in Canada since 1968. After studies with Lorand Fenyves, Ruggiero Ricci, Franco Gulli and the Hungarian Quartet she went on to win both the Montreal …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T03:55:13+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T18:56:24+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Imajishi_Fujiko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1325020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1325360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fujiko-imajishi/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fujiko-imajishi/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fujiko-imajishi/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1325820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/fujiko-imajishi/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alexa-hatanaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Alexa Hatanaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/alexa-hatanaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Alexa Hatanaka engages in time-intensive, historic processes connected to her Japanese heritage that support her thinking around community-building, environment, and honouring evolving cultural pra…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:49:42+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T22:51:20+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Alternate-Headshot_AlexaHatanaka-scaled.jpg?fit=1088%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "1088" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1326880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1327220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alexa-hatanaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alexa-hatanaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alexa-hatanaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1327780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/alexa-hatanaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-kimura-parker/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jon Kimura Parker" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jon-kimura-parker/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jon Kimura Parker is a pianist who regularly performs as a soloist with orchestras around the world. After studying piano with his mother, Keiko Parker, and his uncle, Edward Parker, as a child, he…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-12T23:29:43+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-23T21:41:06+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Parker_Jon_Kimura_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1328980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1329320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-kimura-parker/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-kimura-parker/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-kimura-parker/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1329700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jon-kimura-parker/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-segawa/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Takako Segawa" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/takako-segawa/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Takako Segawa is a contemporary dancer, choreographer, movement coach, dance-theatre performer, and teacher of Japanese Arts. Born in Japan, Takako trained in both traditional arts and contemporary…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2022-09-15T23:06:14+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-12-12T20:28:37+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2022/09/Portrait-JCAD-scaled.jpg?fit=801%2C1200&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "801" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1200" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "Takako Segawa" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1330720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1331060", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-segawa/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-segawa/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-segawa/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1331600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/takako-segawa/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sukeo-mokujin-sameshima/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sukeo Mokujin Sameshima" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sukeo-mokujin-sameshima/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sukeo Mokujin Sameshima was born in 1915 in New Westminster, British Columbia. He went to be educated in Japan in 1921 and returned ten years later after completing junior high school. Although his…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-26T23:59:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T18:37:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Typewriter_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1332780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1333120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sukeo-mokujin-sameshima/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sukeo-mokujin-sameshima/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sukeo-mokujin-sameshima/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1333540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sukeo-mokujin-sameshima/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jared-matsunaga-turnbull/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Jared Matsunaga-Turnbull" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/jared-matsunaga-turnbull/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Jared is an Edmonton-based director, dramaturg, actor, educator and playwright who has focused much of his artistic work on Theatre for Young People. His acting work has been seen on stages across …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-12-20T18:51:28+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-28T22:47:42+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1334600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1334940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jared-matsunaga-turnbull/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jared-matsunaga-turnbull/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jared-matsunaga-turnbull/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1335540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/jared-matsunaga-turnbull/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1335920", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1335980" - } - ] - }, - { - "@id": "_:g1335980", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/JM-T-photo-bw-smaller.jpeg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/12/JM-T-photo-bw-smaller.jpeg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-moriyama/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Raymond Moriyama" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/raymond-moriyama/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Raymond Moriyama is one of Canada’s most renowned architects of the twentieth century. After completing his studies at the University of Toronto and McGill, Moriyama began working as an architect i…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-03T19:52:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2023-09-04T23:52:38+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Moriyama_Raymond_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1336820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1337160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-moriyama/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-moriyama/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-moriyama/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1337720", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/raymond-moriyama/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1338120", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1338220" - }, - { - "@id": "_:g1338240" - }, - { - "@id": "_:g1338260" - } - ] - }, - { - "@id": "_:g1338220", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/6a00e5509ea6a18834017c31b57483970b.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/6a00e5509ea6a18834017c31b57483970b.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1338240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/6a00e5509ea6a18834017d3bde8a09970c_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/6a00e5509ea6a18834017d3bde8a09970c_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1338260", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Raymond-Moriyama-400x500-400x500.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Raymond-Moriyama-400x500-400x500.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruko-kobayashi-2/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Teruko Kobayashi" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/teruko-kobayashi-2/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Teruko ‘Terry’ Kobayashi was an art historian who wrote about Canadian folk arts. Born in British Columbia, she received her BA from the University of Toronto in 1966, and also attended the Ontario…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-28T21:03:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-13T17:35:10+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kobayashi_Terry_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1339140", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1339480", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruko-kobayashi-2/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruko-kobayashi-2/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruko-kobayashi-2/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1339840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/teruko-kobayashi-2/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lotus-miyashita/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lotus Miyashita" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lotus-miyashita/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Lotus Miyashita is an artist and graphic designer based in Vancouver. She graduated from Vancouver Community College and Emily Carr College of Art & Design. Her early design work includes The B…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-07-29T04:07:10+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-06-17T22:27:17+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Miyashita_Lotus_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1340880", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1341220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lotus-miyashita/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lotus-miyashita/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lotus-miyashita/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1341520", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lotus-miyashita/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hideki-uchida/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Robert Hideki Uchida" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/robert-hideki-uchida/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Violinist Robert Uchida has been hailed for his “ravishing sound, eloquence and hypnotic intensity” (Strings Magazine).  A regularly featured guest soloist with many of Canada’s orchestras and cham…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-16T18:13:37+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:03:30+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1342560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1342900", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hideki-uchida/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hideki-uchida/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hideki-uchida/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1343420", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/robert-hideki-uchida/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1343800", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1343860" - } - ] - }, - { - "@id": "_:g1343860", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0042.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/IMG_0042.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tim-tamashiro/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tim Tamashiro" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tim-tamashiro/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tim Tamashiro is a singer and ‘jazz evangelist’, well-known as the host of Tonic on CBC Radio 2. Growing up in Blackfalds, Alberta, Tamashiro had six months of piano lessons before his mother and p…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T22:54:01+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:35:03+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tamashiro_T_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1344740", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1345080", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tim-tamashiro/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tim-tamashiro/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tim-tamashiro/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1345560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tim-tamashiro/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-ide/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Lily Ide" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/lily-ide/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Ritsuko Lily Ide was a popular Nisei singer in Vancouver in the late 1930s and early 1940s who performed at community dances and had professional singing engagements in eastern Canada. She passed a…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-12T22:56:50+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:40:18+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Mic_02_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1346600", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1346940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-ide/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-ide/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-ide/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1347320", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/lily-ide/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuko-tanaka/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kazuko Tanaka" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kazuko-tanaka/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kazuko Tanaka is an ikebana teacher and practitioner in the Koryu Shoutoukai School, which keeps the authenticity of Japanese ikebana in spirit while at the same time cultivating a modern style. Bo…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T06:46:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T20:40:25+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Tanaka_Kazuko_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1348360", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1348700", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuko-tanaka/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuko-tanaka/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuko-tanaka/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1349240", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kazuko-tanaka/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1349620", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1349740" - }, - { - "@id": "_:g1349760" - }, - { - "@id": "_:g1349780" - }, - { - "@id": "_:g1349800" - } - ] - }, - { - "@id": "_:g1349740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0123.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0123.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1349760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0358.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0358.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1349780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0901.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_0901.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1349800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_8507.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_8507.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-kamikura/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joyce Kamikura" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joyce-kamikura/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joyce Kamikura is a painter and print-maker. She was one of the first Canadians to be bestowed Signature Member of the National Watercolor Society (NWS – USA). She was also one of the first w…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-02T10:47:02+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-27T22:30:11+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Kakimura_Joyce_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1350640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1350980", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-kamikura/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-kamikura/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-kamikura/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1351580", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joyce-kamikura/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1351960", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1352060" - }, - { - "@id": "_:g1352080" - }, - { - "@id": "_:g1352100" - } - ] - }, - { - "@id": "_:g1352060", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_1042_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_1042_900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1352080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2074_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2074_900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1352100", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2077_900.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/IMG_2077_900.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yurie-hoyoyon/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Yurie Hoyoyon" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/yurie-hoyoyon/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Yurie is a multi talented girl in Vancouver; she is… An illustrator, graphic designer, portrait artist, greeting cards artist. Also a voice actress, MC, poetry event coordinator for the Vanco…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-13T17:17:27+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:44:04+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/yuriehoyoyon1.jpg?fit=700%2C1050&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "700" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "1050" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1352940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1353280", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yurie-hoyoyon/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yurie-hoyoyon/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yurie-hoyoyon/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1354120", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/yurie-hoyoyon/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1354340", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1354500" - }, - { - "@id": "_:g1354520" - }, - { - "@id": "_:g1354540" - }, - { - "@id": "_:g1354560" - }, - { - "@id": "_:g1354580" - }, - { - "@id": "_:g1354600" - } - ] - }, - { - "@id": "_:g1354500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5x7-gracenewman89-web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5x7-gracenewman89-web.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1354520", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5x7-lauren-web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5x7-lauren-web.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1354540", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5x7-terence-web.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/5x7-terence-web.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1354560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/hiro-postcardsize.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/hiro-postcardsize.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1354580", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/nekoneko.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/nekoneko.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1354600", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/PSFS17_Craft_YurieHoyoyon_greetingcards-002.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/PSFS17_Craft_YurieHoyoyon_greetingcards-002.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-japanese-gardeners-association/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Van. Japanese Gardeners Assoc." - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/vancouver-japanese-gardeners-association/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "The Vancouver Japanese Gardeners Association (VJGA) was formed in 1959, following the creation of the Nitobe Gardens at UBC, and is a non profit organization whose aim is to promote Japanese garden…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-22T05:15:21+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T20:13:40+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_05.jpg?fit=900%2C701&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "900" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "701" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1355440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1355780", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-japanese-gardeners-association/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-japanese-gardeners-association/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-japanese-gardeners-association/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1356540", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/vancouver-japanese-gardeners-association/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1356940", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1357120" - }, - { - "@id": "_:g1357180" - }, - { - "@id": "_:g1357240" - }, - { - "@id": "_:g1357300" - }, - { - "@id": "_:g1357320" - }, - { - "@id": "_:g1357340" - }, - { - "@id": "_:g1357360" - } - ] - }, - { - "@id": "_:g1357120", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_07.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_07.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1357180", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_06.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_06.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1357240", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_05.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_05.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1357300", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_04.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_04.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1357320", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_03.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_03.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1357340", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_02.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_02.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1357360", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_01.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/09/VJGA_01.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandra-sasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Sandra Sasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/sandra-sasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Sandra Sasaki is a Winnipeg-based interior designer. After receiving her Bachelor of Interior Design from the University of Manitoba, she worked for the Hudson’s Bay Company, Eaton’s, and her own S…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:20:26+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2022-02-17T21:25:29+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/InteriorDesign_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1358220", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1358560", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandra-sasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandra-sasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandra-sasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1358960", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/sandra-sasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-saisho/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "John Saisho" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/john-saisho/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "John Saisho is a saxophone player who has recorded several albums with Terry Watada." - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-11T00:33:12+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-16T23:34:59+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/Music_01_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1360000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1360340", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-saisho/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-saisho/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-saisho/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1360680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/john-saisho/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kita-no-taiko/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Kita no Taiko" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/kita-no-taiko/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Kita no Taiko is a non-profit, volunteer based Japanese Drumming group located in Edmonton, Alberta, Canada. Our group formed in 1986. We have been honoured to play at festivals in Edmonton like th…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-09-01T03:50:11+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-29T19:05:12+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1360820", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1361160", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kita-no-taiko/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kita-no-taiko/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kita-no-taiko/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1361940", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/kita-no-taiko/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1362340", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1362500" - }, - { - "@id": "_:g1362560" - }, - { - "@id": "_:g1362620" - }, - { - "@id": "_:g1362680" - }, - { - "@id": "_:g1362740" - }, - { - "@id": "_:g1362800" - } - ] - }, - { - "@id": "_:g1362500", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/25554784471_4ac0ed6d50_z.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/25554784471_4ac0ed6d50_z.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1362560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/14836855622_c7e0426953_z.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/14836855622_c7e0426953_z.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1362620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/14659080369_bf108b7c60_z.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/14659080369_bf108b7c60_z.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1362680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/34079027606_69f312a73d_z-1.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/34079027606_69f312a73d_z-1.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1362740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/27288548070_c43b4d94c7_z.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/27288548070_c43b4d94c7_z.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1362800", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/25847199720_ce89968be8_z.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/08/25847199720_ce89968be8_z.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomiyo-sasaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Tomiyo Sasaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/tomiyo-sasaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Tomiyo Sasaki is a pioneer of experimental video art from the 1970s, 1980s, and 1990s. Born in British Columbia, she began her art training in Canada, and continued in the United States, receiving …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-08-04T20:53:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2020-10-15T22:21:50+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/07/Sasaki_T_600X600.jpg?fit=600%2C600&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "600" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1363680", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1364020", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomiyo-sasaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomiyo-sasaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomiyo-sasaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1364440", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/tomiyo-sasaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nanako-aramaki/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Nanako Aramaki" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/nanako-aramaki/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Nanako Aramaki is a Japanese-Canadian flamenco dancer based in Europe. Growing up in Vancouver, Canada, Nanako began her dance and music training there in ballet and piano at an early age. She was …" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2018-05-17T15:27:05+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-12-30T01:44:30+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2020/11/cropped-JCAD-Logo-Site-Icon.png?fit=512%2C512&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "512" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1365500", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1365840", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nanako-aramaki/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nanako-aramaki/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nanako-aramaki/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1366640", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/nanako-aramaki/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1367020", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1367080" - } - ] - }, - { - "@id": "_:g1367080", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/03841-©alfredomena.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "716" - } - ], - "http://schema.org/height": [ - { - "@value": "716" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2018/05/03841-©alfredomena.jpg?w=716&h=716&crop=1&ssl=1" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joan-fairs/", - "https://api.w.org/": [ - { - "@id": "https://japanesecanadianartists.com/wp-json/" - } - ], - "http://ogp.me/ns#type": [ - { - "@language": "en-us", - "@value": "article" - } - ], - "http://ogp.me/ns#title": [ - { - "@language": "en-us", - "@value": "Joan Fairs" - } - ], - "http://ogp.me/ns#url": [ - { - "@language": "en-us", - "@value": "https://japanesecanadianartists.com/artist/joan-fairs/" - } - ], - "http://ogp.me/ns#description": [ - { - "@language": "en-us", - "@value": "Joan has been practising Ikebana for over 35 years and has obtained her top level of teaching with the Sangetsu School, headquartered in Atami, Japan, in 2013. She is also a qualified florist, with…" - } - ], - "article:published_time": [ - { - "@language": "en-us", - "@value": "2017-11-12T00:50:48+00:00" - } - ], - "article:modified_time": [ - { - "@language": "en-us", - "@value": "2021-11-15T23:45:31+00:00" - } - ], - "http://ogp.me/ns#site_name": [ - { - "@language": "en-us", - "@value": "Japanese Canadian Artists Directory" - } - ], - "http://ogp.me/ns#image": [ - { - "@language": "en-us", - "@value": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joanfairs.jpg?fit=240%2C230&ssl=1" - } - ], - "http://ogp.me/ns#image:width": [ - { - "@language": "en-us", - "@value": "240" - } - ], - "http://ogp.me/ns#image:height": [ - { - "@language": "en-us", - "@value": "230" - } - ], - "http://ogp.me/ns#image:alt": [ - { - "@language": "en-us", - "@value": "" - } - ], - "http://ogp.me/ns#locale": [ - { - "@language": "en-us", - "@value": "en_US" - } - ] - }, - { - "@id": "_:g1367920", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "_:g1368260", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joan-fairs/#masthead", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#banner" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joan-fairs/#nav-below", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#navigation" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joan-fairs/#content", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#main" - } - ] - }, - { - "@id": "_:g1369000", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#search" - } - ] - }, - { - "@id": "https://japanesecanadianartists.com/artist/joan-fairs/#colophon", - "http://www.w3.org/1999/xhtml/vocab#role": [ - { - "@id": "http://www.w3.org/1999/xhtml/vocab#contentinfo" - } - ] - }, - { - "@id": "_:g1369400", - "@type": [ - "http://schema.org/ImageGallery" - ], - "http://schema.org/associatedMedia": [ - { - "@id": "_:g1369560" - }, - { - "@id": "_:g1369620" - }, - { - "@id": "_:g1369680" - }, - { - "@id": "_:g1369740" - }, - { - "@id": "_:g1369760" - }, - { - "@id": "_:g1369780" - } - ] - }, - { - "@id": "_:g1369560", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joanfairs.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joanfairs.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1369620", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joan2.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joan2.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1369680", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joan3.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/joan3.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1369740", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/20161211_111431-1-e1510859625447_MOD.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/20161211_111431-1-e1510859625447_MOD.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1369760", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/IMG_1545_1200.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/IMG_1545_1200.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - }, - { - "@id": "_:g1369780", - "@type": [ - "http://schema.org/ImageObject" - ], - "http://schema.org/url": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/20171103_150244.jpg?ssl=1" - } - ], - "http://schema.org/width": [ - { - "@value": "236" - } - ], - "http://schema.org/height": [ - { - "@value": "236" - } - ], - "http://schema.org/image": [ - { - "@id": "https://i0.wp.com/japanesecanadianartists.com/wp-content/uploads/2017/11/20171103_150244.jpg?w=236&h=236&crop=1&ssl=1" - } - ] - } -] diff --git a/sparql/add_derived_from.sparql b/sparql/add_derived_from.sparql new file mode 100644 index 0000000..34585f1 --- /dev/null +++ b/sparql/add_derived_from.sparql @@ -0,0 +1,16 @@ +PREFIX schema: +PREFIX prov: + +INSERT { + ?top_node prov:wasDerivedFrom . +} +WHERE { + { + SELECT DISTINCT ?top_node + WHERE { + ?top_node ?any_p ?any_o . + FILTER NOT EXISTS { ?other_s ?other_p ?top_node } + } + } + ?top_node ?p ?o +} diff --git a/sparql/fix_date.sparql b/sparql/fix_date.sparql new file mode 100644 index 0000000..3892d07 --- /dev/null +++ b/sparql/fix_date.sparql @@ -0,0 +1,17 @@ + PREFIX schema: + DELETE { + ?s ?p ?old_date . + } + INSERT { + ?s ?p ?fixed_date . + } + WHERE { + ?s ?p ?old_date. + FILTER (datatype(?old_date) = schema:Date) + BIND(strbefore(str(?old_date),"T") as ?date_str) + BIND(strbefore(strafter(str(?old_date), "T"), "-") AS ?time_str) + BIND(strafter(strafter(str(?old_date), "T"), "-") AS ?zone_str) + FILTER (SUBSTR(str(?zone_str), 3, 1) != ':') + BIND(CONCAT(SUBSTR(str(?zone_str), 1, 2), ":", SUBSTR(str(?zone_str), 3, 2)) as ?zone_fix) + BIND(concat(?date_str, "T", ?time_str, "-", ?zone_fix) as ?fixed_date) + } \ No newline at end of file diff --git a/sparql/fix_entity_type.sparql b/sparql/fix_entity_type.sparql index 1bab7bb..f2b64d6 100644 --- a/sparql/fix_entity_type.sparql +++ b/sparql/fix_entity_type.sparql @@ -1,14 +1,13 @@ PREFIX schema: DELETE { - ?s ?p ?entityClass + ?s a ?entityClass } INSERT { - ?s ?p ?updatedEntityClass + ?s a ?updatedEntityClass } WHERE { - ?s a ?entityClass ; - ?p ?entityClass . + ?s a ?entityClass . FILTER(STRSTARTS(STR(?entityClass), STR(schema:))) FILTER(REGEX(SUBSTR(STRAFTER(STR(?entityClass), STR(schema:)), 1, 1), "^[a-z]")) BIND(URI(CONCAT(STR(schema:), UCASE(SUBSTR(STRAFTER(STR(?entityClass), STR(schema:)), 1, 1)) , SUBSTR(STRAFTER(STR(?entityClass), STR(schema:)), 2))) AS ?updatedEntityClass) diff --git a/src/main.rb b/src/main.rb index 06977d5..46b3916 100644 --- a/src/main.rb +++ b/src/main.rb @@ -8,14 +8,21 @@ exit end -page_url = ARGV[0] -entity_identifier = ARGV[1] -file_name = ARGV[2] -is_paginated = ARGV[3] -base_url = ARGV[4] || '' +def perform_sparql_transformations(graph, sparql_paths) + sparql_paths.each do |sparql_path| + graph.query(SPARQL.parse(File.read(sparql_path), update: true)) + end + return graph +end + +page_url, entity_identifier, file_name, is_paginated, base_url = ARGV[0..4] +base_url = '' if base_url == nil max_retries, retry_count = 3, 0 page_number = is_paginated == 'true' ? 1 : nil graph = RDF::Graph.new +add_url_sparql_file = File.read('./sparql/add_derived_from.sparql') + +entity_urls = [] loop do url = "#{page_url}#{page_number}" @@ -33,36 +40,39 @@ main_doc = Nokogiri::HTML(main_page_html_text) entities_data = main_doc.css(entity_identifier) - entity_urls = [] + number_of_entities = entity_urls.length entities_data.each do |entity| entity_urls << base_url+entity['href'] end - if entity_urls.empty? + if entity_urls.length == number_of_entities puts "No more entities found on page #{page_number}. Exiting..." break end - entity_urls.each do |entity_url| - begin - entity_url = entity_url.gsub(' ', '+') - graph << RDF::Graph.load(entity_url) - rescue StandardError => e - puts "Error loading RDF from #{entity_url}: #{e.message}" - break - end - end - if page_number == nil + if page_number == 1 break else page_number += 1 end retry_count = 0 end +entity_urls.uniq! +entity_urls.each do |entity_url| + begin + entity_url = entity_url.gsub(' ', '+') + loaded_graph = RDF::Graph.load(entity_url) + sparql_file_with_url = add_url_sparql_file.gsub("subject_url", entity_url) + loaded_graph.query(SPARQL.parse(sparql_file_with_url, update: true)) + graph << loaded_graph + rescue StandardError => e + puts "Error loading RDF from #{entity_url}: #{e.message}" + break + end +end + +sparql_paths = ["./sparql/replace_blank_nodes.sparql", "./sparql/fix_entity_type.sparql", "./sparql/fix_date.sparql"] +graph = perform_sparql_transformations(graph, sparql_paths) -replace_blank_nodes_sparql = "./sparql/replace_blank_nodes.sparql" -fix_entity_type_sparql = "./sparql/fix_entity_type.sparql" -graph.query(SPARQL.parse(File.read(replace_blank_nodes_sparql), update: true)) -graph.query(SPARQL.parse(File.read(fix_entity_type_sparql), update: true)) File.open(file_name, 'w') do |file| file.puts(graph.dump(:jsonld)) end diff --git a/tests/fixtures/test_date.jsonld b/tests/fixtures/test_date.jsonld new file mode 100644 index 0000000..2e4f90f --- /dev/null +++ b/tests/fixtures/test_date.jsonld @@ -0,0 +1,33 @@ +{ + "@context": "http://schema.org", + "@graph": [ + { + "@type": "Event", + "@id": "http://example.com/event1", + "name": "Event1", + "startDate": { + "@type": "Date", + "@value": "2024-02-03T20:00:00-0700" + } + }, + { + "@type": "Event", + "@id": "http://example.com/event2", + "name": "Event2", + "startDate": { + "@type": "Date", + "@value": "2024-02-03T20:00:00-0500" + } + }, + { + "@type": "Event", + "@id": "http://example.com/event3", + "name": "Event3", + "startDate": { + "@type": "Date", + "@value": "2024-02-03T20:00:00-03:00 " + } + } + ] + } + \ No newline at end of file diff --git a/tests/fix_entity_type_test.rb b/tests/test.rb similarity index 66% rename from tests/fix_entity_type_test.rb rename to tests/test.rb index 8242ca5..c9c7513 100644 --- a/tests/fix_entity_type_test.rb +++ b/tests/test.rb @@ -6,6 +6,7 @@ class SparqlTest < Minitest::Test def setup @fix_entity_type_sparql_file = "./sparql/fix_entity_type.sparql" @replace_blank_node_sparql_file = "./sparql/replace_blank_nodes.sparql" + @fix_date_sparql_file = './sparql/fix_date.sparql' end # check that the type object is fixed @@ -30,4 +31,18 @@ def test_blank_node_replaced # puts "after: #{graph.dump(:jsonld)}" assert_equal false, graph.query([nil, RDF::type, RDF::URI("http://schema.org/Thing")]).each.subjects.node? end + + # check that the dates are correctly formatted + def test_date_format + sparql = SPARQL.parse(File.read(@fix_date_sparql_file), update: true) + graph = RDF::Graph.load("./tests/fixtures/test_date.jsonld") + # puts "before: #{graph.dump(:jsonld)}" + graph.query(sparql) + # puts "after: #{graph.dump(:jsonld)}" + dates = graph.query([nil, RDF::URI("http://schema.org/startDate"), nil]).each.objects + dates.each do |start_date| + assert_match(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}-\d{2}:\d{2}\s*$/, start_date.to_s) + end + end + end