qa_server 7.5.0 → 7.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_fixme.yml +3 -2
  3. data/.travis.yml +1 -1
  4. data/CHANGELOG.md +30 -0
  5. data/app/assets/stylesheets/qa_server/_check-status.scss +4 -0
  6. data/app/controllers/qa_server/monitor_status_controller.rb +31 -9
  7. data/app/models/qa_server/scenario_run_history.rb +12 -3
  8. data/app/models/qa_server/search_scenario.rb +6 -0
  9. data/app/presenters/qa_server/check_status_presenter.rb +1 -1
  10. data/app/presenters/qa_server/monitor_status/current_status_presenter.rb +9 -8
  11. data/app/presenters/qa_server/monitor_status/history_presenter.rb +55 -4
  12. data/app/views/qa_server/check_status/index.html.erb +7 -6
  13. data/app/views/qa_server/monitor_status/_test_summary.html.erb +1 -1
  14. data/config/i18n-tasks.yml +133 -0
  15. data/config/locales/qa_server.en.yml +22 -7
  16. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +24 -14
  17. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_ulan_ld4l_cache.json +104 -8
  18. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +4 -4
  19. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +4 -4
  20. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo_ld4l_cache.json +4 -4
  21. data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +1 -1
  22. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +1 -0
  23. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +4 -0
  24. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +1 -0
  25. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +3 -3
  26. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +2 -5
  27. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +0 -3
  28. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +3 -7
  29. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +5 -5
  30. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +0 -4
  31. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +0 -9
  32. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +1 -7
  33. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo2_ld4l_cache_validation.yml +78 -0
  34. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo3_ld4l_cache_validation.yml +73 -0
  35. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +11 -11
  36. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +1 -3
  37. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +246 -0
  38. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +8 -5
  39. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +13 -7
  40. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +19 -3
  41. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +0 -3
  42. data/lib/qa_server/version.rb +1 -1
  43. data/qa_server.gemspec +6 -5
  44. data/spec/feature/accuracy_spec.rb +1 -1
  45. data/spec/i18n_spec.rb +35 -0
  46. data/spec/presenters/qa_server/monitor_status/history_presenter_spec.rb +81 -0
  47. metadata +51 -12
@@ -17,7 +17,7 @@
17
17
  <td class="status-neutral"><%= @presenter.tests_count %></td>
18
18
  </tr>
19
19
  </table>
20
- <p class="status-update-dtstamp"><%= t('qa_server.monitor_status.summary.last_updated', date: @presenter.last_updated) %></p>
20
+ <p class="status-update-dtstamp"><%= @presenter.last_updated %></p>
21
21
 
22
22
  <% if @presenter.failures?%>
23
23
  <div id="failures" class="status-section">
@@ -0,0 +1,133 @@
1
+ # i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks
2
+
3
+ # The "main" locale.
4
+ base_locale: en
5
+ ## All available locales are inferred from the data by default. Alternatively, specify them explicitly:
6
+ # locales: [es, fr]
7
+ ## Reporting locale, default: en. Available: en, ru.
8
+ # internal_locale: en
9
+
10
+ # Read and write translations.
11
+ data:
12
+ ## Translations are read from the file system. Supported format: YAML, JSON.
13
+ ## Provide a custom adapter:
14
+ # adapter: I18n::Tasks::Data::FileSystem
15
+
16
+ # Locale files or `File.find` patterns where translations are read from:
17
+ read:
18
+ ## Default:
19
+ # - config/locales/%{locale}.yml
20
+ ## More files:
21
+ - config/locales/**/*.%{locale}.yml
22
+
23
+ # Locale files to write new keys to, based on a list of key pattern => file rules. Matched from top to bottom:
24
+ # `i18n-tasks normalize -p` will force move the keys according to these rules
25
+ write:
26
+ ## For example, write devise and simple form keys to their respective files:
27
+ # - ['{devise, simple_form}.*', 'config/locales/\1.%{locale}.yml']
28
+ ## Catch-all default:
29
+ # - config/locales/%{locale}.yml
30
+
31
+ # External locale data (e.g. gems).
32
+ # This data is not considered unused and is never written to.
33
+ external:
34
+ ## Example (replace %#= with %=):
35
+ # - "<%#= %x[bundle show vagrant].chomp %>/templates/locales/%{locale}.yml"
36
+
37
+ ## Specify the router (see Readme for details). Valid values: conservative_router, pattern_router, or a custom class.
38
+ # router: conservative_router
39
+
40
+ yaml:
41
+ write:
42
+ # do not wrap lines at 80 characters
43
+ line_width: -1
44
+
45
+ ## Pretty-print JSON:
46
+ # json:
47
+ # write:
48
+ # indent: ' '
49
+ # space: ' '
50
+ # object_nl: "\n"
51
+ # array_nl: "\n"
52
+
53
+ # Find translate calls
54
+ search:
55
+ ## Paths or `File.find` patterns to search in:
56
+ # paths:
57
+ # - app/
58
+
59
+ ## Root directories for relative keys resolution.
60
+ # relative_roots:
61
+ # - app/controllers
62
+ # - app/helpers
63
+ # - app/mailers
64
+ # - app/presenters
65
+ # - app/views
66
+
67
+ ## Files or `File.fnmatch` patterns to exclude from search. Some files are always excluded regardless of this setting:
68
+ ## %w(*.jpg *.png *.gif *.svg *.ico *.eot *.otf *.ttf *.woff *.woff2 *.pdf *.css *.sass *.scss *.less *.yml *.json)
69
+ exclude:
70
+ - app/assets/images
71
+ - app/assets/fonts
72
+ - app/assets/videos
73
+
74
+ ## Alternatively, the only files or `File.fnmatch patterns` to search in `paths`:
75
+ ## If specified, this settings takes priority over `exclude`, but `exclude` still applies.
76
+ # only: ["*.rb", "*.html.slim"]
77
+
78
+ ## If `strict` is `false`, guess usages such as t("categories.#{category}.title"). The default is `true`.
79
+ # strict: true
80
+
81
+ ## Multiple scanners can be used. Their results are merged.
82
+ ## The options specified above are passed down to each scanner. Per-scanner options can be specified as well.
83
+ ## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example
84
+
85
+ ## Translation Services
86
+ # translation:
87
+ # # Google Translate
88
+ # # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate
89
+ # google_translate_api_key: "AbC-dEf5"
90
+ # # DeepL Pro Translate
91
+ # # Get an API key and subscription at https://www.deepl.com/pro to use DeepL Pro
92
+ # deepl_api_key: "48E92789-57A3-466A-9959-1A1A1A1A1A1A"
93
+
94
+ ## Do not consider these keys missing:
95
+ # ignore_missing:
96
+ # - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'
97
+ # - '{devise,simple_form}.*'
98
+
99
+ ## Consider these keys used:
100
+ # ignore_unused:
101
+ # - 'activerecord.attributes.*'
102
+ # - '{devise,kaminari,will_paginate}.*'
103
+ # - 'simple_form.{yes,no}'
104
+ # - 'simple_form.{placeholders,hints,labels}.*'
105
+ # - 'simple_form.{error_notification,required}.:'
106
+
107
+ ## Exclude these keys from the `i18n-tasks eq-base' report:
108
+ # ignore_eq_base:
109
+ # all:
110
+ # - common.ok
111
+ # fr,es:
112
+ # - common.brand
113
+
114
+ ## Exclude these keys from the `i18n-tasks check-consistent-interpolations` report:
115
+ # ignore_inconsistent_interpolations:
116
+ # - 'activerecord.attributes.*'
117
+
118
+ ## Ignore these keys completely:
119
+ # ignore:
120
+ # - kaminari.*
121
+
122
+ ## Sometimes, it isn't possible for i18n-tasks to match the key correctly,
123
+ ## e.g. in case of a relative key defined in a helper method.
124
+ ## In these cases you can use the built-in PatternMapper to map patterns to keys, e.g.:
125
+ #
126
+ # <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',
127
+ # only: %w(*.html.haml *.html.slim),
128
+ # patterns: [['= title\b', '.page_title']] %>
129
+ #
130
+ # The PatternMapper can also match key literals via a special %{key} interpolation, e.g.:
131
+ #
132
+ # <%# I18n::Tasks.add_scanner 'I18n::Tasks::Scanners::PatternMapper',
133
+ # patterns: [['\bSpree\.t[( ]\s*%{key}', 'spree.%{key}']] %>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  en:
3
3
  qa_server:
4
+ application_name: "Replace with your application's name"
5
+ application_version: "Replace with your application's version"
6
+ footer:
7
+ attribution_html: This service is supported by work on <a href="http://ld4l.org" class="navbar-link" target="_blank">Linked Data for Libraries - Labs</a> and <br> <a href="https://wiki.duraspace.org/x/9xgRBg" class="navbar-link" target="_blank">Linked Data for Production</a> funded by <a href="https://mellon.org/" class="navbar-link" target="_blank">Andrew W. Mellon Foundation</a>, <br>and by work on Questioning Authority in <a href="http://samvera.org" class="navbar-link" target="_blank">Samvera</a>, an open source community.
8
+ copyright_html: <strong>Copyright &copy; 2018-2020 Your Institution</strong> Licensed under the Apache License, Version 2.0
9
+ service_html: A service of <a href="http://your.institution.website/" class="navbar-link" target="_blank">Your Institution Name</a>.
4
10
  menu:
5
11
  home: Home
6
12
  usage: Usage
@@ -19,14 +25,18 @@ en:
19
25
  check_status:
20
26
  title: Check Status
21
27
  select_authority: Select authority...
22
- show_all: ALL Authorities (SLOW)
23
28
  connections: Check Connection Status only
24
29
  accuracy: Check Accuracy only
30
+ comparison: Compare Accuracy
25
31
  all_checks: Run all checks
26
- wait_message: "Please wait while the status is verified. This will be slow if you selected ALL Authorities."
32
+ wait_message_ln1: "Please wait while the status is verified."
33
+ wait_message_ln2: "This may be slow for large authorities or ones with a lot of tests."
27
34
  connection_checks: Connection Checks
28
35
  accuracy_checks: Accuracy Checks for Search Results
36
+ comparison_checks: Comparison of Accuracy Checks
29
37
  status_table:
38
+ before: Before
39
+ after: After
30
40
  action: Action
31
41
  actual_position: Actual Position
32
42
  authority: Authority
@@ -48,7 +58,11 @@ en:
48
58
  wait_message: Fetching term...
49
59
  term_results: Results
50
60
  monitor_status:
51
- title: Monitor Status
61
+ title: Monitor Status
62
+ permission_denied: 'Permission denied. Unable to %{action}.'
63
+ refreshing_tests: Refreshing tests.
64
+ refreshing_history: Refreshing connection history.
65
+ refreshing_performance: Refreshing performance metrics.
52
66
  summary:
53
67
  title: Latest Monitored Status
54
68
  summary_table: Summary
@@ -58,10 +72,10 @@ en:
58
72
  failing_tests: Failing Tests
59
73
  total_tests: TOTAL Tests
60
74
  last_updated: 'Status last updated %{date} ET'
75
+ no_data: 'No Data Available (Common Cause: first time tests are running)'
61
76
  failures:
62
77
  title: Failures During Latest Status Update
63
78
  status: Status
64
- authority: Authority
65
79
  subauthority: Subauthority
66
80
  service: Service
67
81
  action: Action
@@ -69,7 +83,6 @@ en:
69
83
  errmsg: Errors
70
84
  history:
71
85
  title: Authority Connection History
72
- since: 'Since %{date} ET'
73
86
  range: 'From %{from} to %{to}'
74
87
  authority: Authority
75
88
  days_failing: Days Failing
@@ -90,7 +103,6 @@ en:
90
103
  graph_load_time_ms: Graph Load Time (ms)
91
104
  normalization_time_ms: Normalization Time (ms)
92
105
  retrieve_time_ms: Retrieve Time (ms)
93
- full_request_time_ms: Full Request Time (ms)
94
106
  x_axis_hour: Hour
95
107
  x_axis_day: Day
96
108
  x_axis_month: Month
@@ -98,8 +110,11 @@ en:
98
110
  now: NOW
99
111
  today: TODAY
100
112
  datatable_desc: 'Performance tabulated data'
113
+ datatable_all_desc: 'All Data'
114
+ datatable_day_desc: 'Day'
115
+ datatable_month_desc: 'Month'
116
+ datatable_year_desc: 'Year'
101
117
  datarange: 'From %{from} to %{to}'
102
- authority: Authority
103
118
  average_times: Average (ms)
104
119
  fastest_times: 10th percentile (ms)
105
120
  slowest_times: 90th percentile (ms)
@@ -3,8 +3,8 @@
3
3
  "service_uri": "http://ld4l.org/ld4l_services/cache",
4
4
  "prefixes": {
5
5
  "getty": "http://vocab.getty.edu/ontology#",
6
- "vivo": "http://vivoweb.org/ontology/core#",
7
- "xl": "http://www.w3.org/2008/05/skos-xl#"
6
+ "skosxl": "http://www.w3.org/2008/05/skos-xl#",
7
+ "vivo": "http://vivoweb.org/ontology/core#"
8
8
  },
9
9
  "term": {
10
10
  "url": {
@@ -28,11 +28,9 @@
28
28
  "term_id": "URI",
29
29
  "results": {
30
30
  "id_ldpath": "dc:identifier ::xsd:string",
31
- "label_ldpath": "skos:prefLabel ::xsd:string",
32
- "altlabel_ldpath": "skos:altLabel ::xsd:string",
33
- "broader_ldpath": "skos:broader ::xsd:anyURI",
34
- "narrower_ldpath": "skos:narrower ::xsd:anyURI",
35
- "sameas_ldpath": "skos:exactMatch ::xsd:anyURI"
31
+ "label_ldpath": "^foaf:focus/skosxl:prefLabel/skosxl:literalForm :: xsd:string",
32
+ "altlabel_ldpath": "^foaf:focus/skosxl:altLabel/skosxl:literalForm :: xsd:string",
33
+ "broader_ldpath": "^foaf:focus/getty:broaderPreferred ::xsd:anyURI"
36
34
  }
37
35
  },
38
36
  "search": {
@@ -79,8 +77,7 @@
79
77
  },
80
78
  "total_count_ldpath": "vivo:count",
81
79
  "results": {
82
- "id_ldpath": "dc:identifier ::xsd:string",
83
- "label_ldpath": "skos:prefLabel ::xsd:string",
80
+ "label_ldpath": "^foaf:focus/skosxl:prefLabel/skosxl:literalForm :: xsd:string",
84
81
  "sort_ldpath": "vivo:rank ::xsd:string"
85
82
  },
86
83
  "context": {
@@ -88,28 +85,42 @@
88
85
  {
89
86
  "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.preferred_label",
90
87
  "property_label_default": "Preferred label",
91
- "ldpath": "^foaf:focus/xl:prefLabel/xl:literalForm :: xsd:string",
88
+ "ldpath": "^foaf:focus/skosxl:prefLabel/skosxl:literalForm :: xsd:string",
92
89
  "selectable": true,
93
90
  "drillable": false
94
91
  },
95
92
  {
96
93
  "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.variant_label",
97
94
  "property_label_default": "Variant Label",
98
- "ldpath": "^foaf:focus/xl:altLabel/xl:literalForm :: xsd:string",
95
+ "ldpath": "^foaf:focus/skosxl:altLabel/skosxl:literalForm :: xsd:string",
96
+ "selectable": false,
97
+ "drillable": false
98
+ },
99
+ {
100
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.parent_body",
101
+ "property_label_default": "Parent body",
102
+ "ldpath": "^foaf:focus/getty:parentString :: xsd:string",
103
+ "selectable": false,
104
+ "drillable": false
105
+ },
106
+ {
107
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.parent_body_abbreviation",
108
+ "property_label_default": "Parent body (abbreviation)",
109
+ "ldpath": "^foaf:focus/getty:parentStringAbbrev :: xsd:string",
99
110
  "selectable": false,
100
111
  "drillable": false
101
112
  },
102
113
  {
103
114
  "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.place_type",
104
115
  "property_label_default": "Place type",
105
- "ldpath": "^foaf:focus/gvp:placeTypePreferred :: xsd:string",
116
+ "ldpath": "^foaf:focus/getty:placeTypePreferred :: xsd:string",
106
117
  "selectable": false,
107
118
  "drillable": false
108
119
  },
109
120
  {
110
121
  "property_label_i18n": "qa.linked_data.authority.getty_aat_ld4l_cache.broader",
111
122
  "property_label_default": "Broader",
112
- "ldpath": "^foaf:focus/gvp:broaderPreferred/xl:altLabel/xl:literalForm :: xsd:string",
123
+ "ldpath": "^foaf:focus/getty:broaderPreferred :: xsd:string",
113
124
  "selectable": false,
114
125
  "drillable": true,
115
126
  "expansion_label_ldpath": "skos:prefLabel ::xsd:string",
@@ -119,4 +130,3 @@
119
130
  }
120
131
  }
121
132
  }
122
-
@@ -2,6 +2,9 @@
2
2
  "QA_CONFIG_VERSION": "2.2",
3
3
  "service_uri": "http://ld4l.org/ld4l_services/cache",
4
4
  "prefixes": {
5
+ "getty": "http://vocab.getty.edu/ontology#",
6
+ "schema": "https://schema.org/",
7
+ "skosxl": "http://www.w3.org/2008/05/skos-xl#",
5
8
  "vivo": "http://vivoweb.org/ontology/core#"
6
9
  },
7
10
  "term": {
@@ -26,11 +29,9 @@
26
29
  "term_id": "URI",
27
30
  "results": {
28
31
  "id_ldpath": "dc:identifier ::xsd:string",
29
- "label_ldpath": "skos:prefLabel ::xsd:string",
30
- "altlabel_ldpath": "skos:altLabel ::xsd:string",
31
- "broader_ldpath": "skos:broader ::xsd:anyURI",
32
- "narrower_ldpath": "skos:narrower ::xsd:anyURI",
33
- "sameas_ldpath": "skos:exactMatch ::xsd:anyURI"
32
+ "label_ldpath": "^foaf:focus / skosxl:prefLabel / skosxl:literalForm ::xsd:string",
33
+ "altlabel_ldpath": "^foaf:focus/skosxl:altLabel/skosxl:literalForm :: xsd:string",
34
+ "broader_ldpath": "^foaf:focus/getty:broaderPreferred/skosxl:altLabel/skosxl:literalForm ::xsd:anyURI"
34
35
  }
35
36
  },
36
37
  "search": {
@@ -85,14 +86,109 @@
85
86
  },
86
87
  "total_count_ldpath": "vivo:count",
87
88
  "results": {
88
- "id_ldpath": "dc:identifier ::xsd:string",
89
- "label_ldpath": "skos:prefLabel ::xsd:string",
89
+ "label_ldpath": "^foaf:focus / skosxl:prefLabel / skosxl:literalForm ::xsd:string",
90
90
  "sort_ldpath": "vivo:rank ::xsd:string"
91
91
  },
92
+ "context": {
93
+ "properties": [
94
+ {
95
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.preferred_label",
96
+ "property_label_default": "Preferred label",
97
+ "ldpath": "^foaf:focus/skosxl:prefLabel/skosxl:literalForm :: xsd:string",
98
+ "selectable": true,
99
+ "drillable": false
100
+ },
101
+ {
102
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.variant_label",
103
+ "property_label_default": "Variant label",
104
+ "ldpath": "^foaf:focus/skosxl:altLabel/skosxl:literalForm :: xsd:string",
105
+ "selectable": false,
106
+ "drillable": false
107
+ },
108
+ {
109
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.description",
110
+ "property_label_default": "Description",
111
+ "ldpath": "getty:biographyPreferred / schema:description :: xsd:string",
112
+ "selectable": false,
113
+ "drillable": false
114
+ },
115
+ {
116
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.start_date",
117
+ "property_label_default": "Start date",
118
+ "ldpath": "getty:biographyPreferred / getty:estStart",
119
+ "selectable": false,
120
+ "drillable": false
121
+ },
122
+ {
123
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.end_date",
124
+ "property_label_default": "End date",
125
+ "ldpath": "getty:biographyPreferred / getty:estEnd",
126
+ "selectable": false,
127
+ "drillable": false
128
+ },
129
+ {
130
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.foundation_location",
131
+ "property_label_default": "Foundation location",
132
+ "ldpath": "getty:biographyPreferred/schema:foundationLocation / ^foaf:focus / getty:parentString :: xsd:string",
133
+ "selectable": false,
134
+ "drillable": false
135
+ },
136
+ {
137
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.nationality",
138
+ "property_label_default": "Nationality",
139
+ "ldpath": "schema:nationality / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
140
+ "selectable": false,
141
+ "drillable": false
142
+ },
143
+ {
144
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.birth_place",
145
+ "property_label_default": "Birth place",
146
+ "ldpath": "getty:biographyPreferred / schema:birthPlace / ^foaf:focus / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
147
+ "selectable": false,
148
+ "drillable": false
149
+ },
150
+ {
151
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.death_place",
152
+ "property_label_default": "Death place",
153
+ "ldpath": "getty:biographyPreferred / schema:deathPlace / ^foaf:focus / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
154
+ "selectable": false,
155
+ "drillable": false
156
+ },
157
+ {
158
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.agent_type",
159
+ "property_label_default": "Agent type",
160
+ "ldpath": "^foaf:focus / getty:agentType / skosxl:altLabel / skosxl:literalForm :: xsd:string",
161
+ "selectable": false,
162
+ "drillable": false
163
+ },
164
+ {
165
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.gender",
166
+ "property_label_default": "Gender",
167
+ "ldpath": "getty:biographyPreferred/schema:gender / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
168
+ "selectable": false,
169
+ "drillable": false
170
+ },
171
+ {
172
+ "property_label_i18n": "qa.linked_data.authority.getty_aat_ld4l_cache.broader",
173
+ "property_label_default": "Broader",
174
+ "ldpath": "^foaf:focus/getty:broaderPreferred :: xsd:string",
175
+ "selectable": false,
176
+ "drillable": true,
177
+ "expansion_label_ldpath": "skos:prefLabel ::xsd:string",
178
+ "expansion_id_ldpath": "dc:identifier ::xsd:string"
179
+ },
180
+ {
181
+ "property_label_i18n": "qa.linked_data.authority.getty_aat_ld4l_cache.scope_note",
182
+ "property_label_default": "Scope note",
183
+ "ldpath": "^foaf:focus/skos:scopeNote :: xsd:string",
184
+ "selectable": false,
185
+ "drillable": false
186
+ }
187
+ ]
188
+ },
92
189
  "subauthorities": {
93
190
  "person": "Person",
94
191
  "organization": "Organization"
95
192
  }
96
193
  }
97
194
  }
98
-