wcc-contentful-middleman 1.0.0.pre.rc1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cff601b9555d6a0feb63219f07395e60bdabc17eaad58fa52ed356d7d00cd733
4
+ data.tar.gz: 47dc258f2988a1caa405fcddc98d2b352f67aafdb1f6e20abe210b2f8aa15722
5
+ SHA512:
6
+ metadata.gz: db1fd330f3617644b24a8d7755efed984699a34cdea28e88e93e80a0b1efcf4505715e0418b3c73861a6276ec93340cd07ffbb6262e33791b209f2ad6ac59200
7
+ data.tar.gz: a3fc88d31801058af1e2dd8cdbe328abbfb930c8aabf88f87dca2760964698276bf583ea8667ad8ce49bcbbca89a407ede3442ee48d4e8334c22bb9484c16eeb
@@ -0,0 +1,5 @@
1
+ # Ignore bundler lock file
2
+ /Gemfile.lock
3
+
4
+ # Ignore pkg folder
5
+ /pkg
@@ -0,0 +1,101 @@
1
+ # A guardfile for making Danger Plugins
2
+ # For more info see https://github.com/guard/guard#readme
3
+
4
+ # To run, use `bundle exec guard`.
5
+
6
+ def watch_async(regexp)
7
+ raise ArgumentError, "No block given" unless block_given?
8
+ match_queue = Queue.new
9
+
10
+ watch(regexp) do |match|
11
+ # Producer - add matches to the match queue
12
+ match_queue << match
13
+ nil
14
+ end
15
+
16
+ # Consumer - process matches as a batch
17
+ Thread.new do
18
+ loop do
19
+ matches = []
20
+ matches << match_queue.pop
21
+
22
+ loop do
23
+ begin
24
+ matches << match_queue.pop(true)
25
+ rescue ThreadError
26
+ break
27
+ end
28
+ end
29
+
30
+ begin
31
+ yield matches if matches.length > 0
32
+ rescue StandardError => ex
33
+ STDERR.puts "Error! #{ex}"
34
+ end
35
+ end
36
+ end
37
+ end
38
+
39
+ group :red_green_refactor, halt_on_fail: true do
40
+ guard :rspec, cmd: 'bundle exec rspec' do
41
+ require 'guard/rspec/dsl'
42
+ dsl = Guard::RSpec::Dsl.new(self)
43
+
44
+ # RSpec files
45
+ rspec = dsl.rspec
46
+ watch(rspec.spec_helper) { rspec.spec_dir }
47
+ # watch(rspec.spec_support) { rspec.spec_dir }
48
+ watch(rspec.spec_files)
49
+
50
+ # Ruby files
51
+ ruby = dsl.ruby
52
+ watch(%r{lib/wcc/(.+)\.rb$}) { |m| rspec.spec.call("wcc/#{m[1]}") }
53
+ watch(%r{lib/generators/(.+)\.rb$}) { |m| rspec.spec.call("generators/#{m[1]}") }
54
+
55
+ # Rails files
56
+ rails = dsl.rails(view_extensions: %w[erb haml slim])
57
+ dsl.watch_spec_files_for(rails.app_files)
58
+ dsl.watch_spec_files_for(rails.views)
59
+
60
+ watch(rails.controllers) do |m|
61
+ [
62
+ rspec.spec.call("routing/#{m[1]}_routing"),
63
+ rspec.spec.call("controllers/#{m[1]}_controller"),
64
+ rspec.spec.call("acceptance/#{m[1]}")
65
+ ]
66
+ end
67
+
68
+ # Rails config changes
69
+ watch(rails.spec_helper) { rspec.spec_dir }
70
+ watch(rails.routes) { "#{rspec.spec_dir}/routing" }
71
+ watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
72
+
73
+ # Capybara features specs
74
+ watch(rails.view_dirs) { |m| rspec.spec.call("features/#{m[1]}") }
75
+ watch(rails.layouts) { |m| rspec.spec.call("features/#{m[1]}") }
76
+ end
77
+
78
+ guard :rubocop, cli: ['--display-cop-names'] do
79
+ watch(%r{.+\.rb$})
80
+ watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
81
+ end
82
+
83
+ guard :shell, all_on_start: false do
84
+ watch_async(%r{app/views/(.+\.html.*\.erb)}) { |matches|
85
+
86
+ matches = matches.map { |m| File.absolute_path(m[0]) }
87
+ Dir.chdir('..') {
88
+ system("bundle exec erblint #{matches.join(' ')}")
89
+ }
90
+ }
91
+ end
92
+ end
93
+
94
+ group :autofix do
95
+ guard :rubocop, all_on_start: false, cli: ['--auto-correct', '--display-cop-names'] do
96
+ watch(%r{.+\.rb$})
97
+ watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
98
+ end
99
+ end
100
+
101
+ scope group: :red_green_refactor
@@ -0,0 +1,7 @@
1
+ [![Gem Version](https://badge.fury.io/rb/wcc-contentful-middleman.svg)](https://rubygems.org/gems/wcc-contentful-middleman)
2
+ [![Build Status](https://travis-ci.org/watermarkchurch/wcc-contentful.svg?branch=master)](https://travis-ci.org/watermarkchurch/wcc-contentful)
3
+ [![Coverage Status](https://coveralls.io/repos/github/watermarkchurch/wcc-contentful/badge.svg?branch=master)](https://coveralls.io/github/watermarkchurch/wcc-contentful?branch=master)
4
+
5
+ # WCC::Contentful::Middleman
6
+
7
+ A plugin for middleman static sites to use the [wcc-contentful](https://rubygems.org/gems/wcc-contentful) gem for connecting to Contentful.
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler'
4
+ Bundler::GemHelper.install_tasks
5
+
6
+ require 'cucumber/rake/task'
7
+
8
+ Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
9
+ t.cucumber_opts = '--color --tags ~@wip --strict'
10
+ end
11
+
12
+ require 'rake/clean'
13
+
14
+ task test: ['cucumber']
15
+
16
+ task default: :test
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'wcc/contentful/middleman/version'
4
+
5
+ require 'middleman-core'
6
+ Middleman::Extensions.register :wcc_contentful do
7
+ require 'wcc/contentful/middleman/extension'
8
+ WCC::Contentful::Middleman::Extension
9
+ end
@@ -0,0 +1,84 @@
1
+ # frozen_string_literal: true
2
+
3
+ class WCC::Contentful::Middleman::Extension < ::Middleman::Extension
4
+ option :space,
5
+ ENV['CONTENTFUL_SPACE_ID'],
6
+ "Set the Contentful space ID (defaults to ENV['CONTENTFUL_SPACE_ID'])"
7
+ option :access_token,
8
+ ENV['CONTENTFUL_ACCESS_TOKEN'],
9
+ "Set the Contentful CDN access key (defaults to ENV['CONTENTFUL_ACCESS_TOKEN'])"
10
+ option :management_token,
11
+ ENV['CONTENTFUL_MANAGEMENT_TOKEN'],
12
+ "Set the Contentful API access token (defaults to ENV['CONTENTFUL_MANAGEMENT_TOKEN'])"
13
+ option :preview_token,
14
+ ENV['CONTENTFUL_PREVIEW_TOKEN'],
15
+ "Set the Contentful Preview access token (defaults to ENV['CONTENTFUL_PREVIEW_TOKEN'])"
16
+ option :environment,
17
+ ENV['CONTENTFUL_ENVIRONMENT'],
18
+ "Set the Contentful environment (defaults to ENV['CONTENTFUL_ENVIRONMENT'])"
19
+
20
+ def initialize(app, options_hash = {}, &block)
21
+ # don't pass block to super b/c we use it to configure WCC::Contentful
22
+ super(app, options_hash) {}
23
+
24
+ # Require libraries only when activated
25
+ require 'wcc/contentful'
26
+
27
+ # set up your extension
28
+ return if WCC::Contentful.initialized
29
+
30
+ WCC::Contentful.configure do |config|
31
+ config.store :eager_sync, :memory
32
+
33
+ options.to_h.each do |(k, v)|
34
+ config.public_send("#{k}=", v) if config.respond_to?("#{k}=")
35
+ end
36
+
37
+ instance_exec(config, &block) if block_given?
38
+ end
39
+
40
+ WCC::Contentful.init!
41
+ model_glob = File.join(Middleman::Application.root, 'lib/models/**/*.rb')
42
+ Dir[model_glob].sort.each { |f| require f }
43
+
44
+ # Sync the latest data from Contentful
45
+ WCC::Contentful::Services.instance.sync_engine&.next
46
+ end
47
+
48
+ # helpers do
49
+ # def a_helper
50
+ # end
51
+ # end
52
+
53
+ def ready
54
+ # resync every page load in development & test mode only
55
+ app.use ContentfulSyncUpdate if app.server?
56
+ end
57
+
58
+ # Rack app that advances the sync engine whenever we load a page
59
+ class ContentfulSyncUpdate
60
+ def initialize(app)
61
+ @app = app
62
+ end
63
+
64
+ def call(env)
65
+ if (Time.now - ContentfulSyncUpdate.last_sync) > 10.seconds
66
+ ::WCC::Contentful::Services.instance.sync_engine&.next
67
+ ContentfulSyncUpdate.last_sync = Time.now
68
+ end
69
+
70
+ @app.call(env)
71
+ end
72
+
73
+ class << self
74
+ def last_sync
75
+ @@last_sync ||= Time.at(0)
76
+ end
77
+
78
+ def last_sync=(time)
79
+ @@last_sync = time
80
+ end
81
+ end
82
+ end
83
+
84
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WCC
4
+ module Contentful
5
+ module Middleman
6
+ VERSION = '1.0.0-rc1'
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,4384 @@
1
+ {
2
+ "sys": {
3
+ "type": "Array"
4
+ },
5
+ "total": 17,
6
+ "skip": 0,
7
+ "limit": 100,
8
+ "items": [
9
+ {
10
+ "sys": {
11
+ "space": {
12
+ "sys": {
13
+ "type": "Link",
14
+ "linkType": "Space",
15
+ "id": "343qxys30lid"
16
+ }
17
+ },
18
+ "id": "testimonial",
19
+ "type": "ContentType",
20
+ "createdAt": "2018-02-12T19:47:57.690Z",
21
+ "updatedAt": "2018-02-12T19:47:57.856Z",
22
+ "createdBy": {
23
+ "sys": {
24
+ "type": "Link",
25
+ "linkType": "User",
26
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
27
+ }
28
+ },
29
+ "updatedBy": {
30
+ "sys": {
31
+ "type": "Link",
32
+ "linkType": "User",
33
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
34
+ }
35
+ },
36
+ "publishedCounter": 1,
37
+ "version": 2,
38
+ "publishedBy": {
39
+ "sys": {
40
+ "type": "Link",
41
+ "linkType": "User",
42
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
43
+ }
44
+ },
45
+ "publishedVersion": 1,
46
+ "firstPublishedAt": "2018-02-12T19:47:57.856Z",
47
+ "publishedAt": "2018-02-12T19:47:57.856Z"
48
+ },
49
+ "displayField": "name",
50
+ "name": "Testimonial",
51
+ "description": "A Testimonial contains a user's photo, a short bio, and their testimonial about the service",
52
+ "fields": [
53
+ {
54
+ "id": "name",
55
+ "name": "Name",
56
+ "type": "Symbol",
57
+ "localized": false,
58
+ "required": true,
59
+ "validations": [],
60
+ "disabled": false,
61
+ "omitted": false
62
+ },
63
+ {
64
+ "id": "photo",
65
+ "name": "Photo",
66
+ "type": "Link",
67
+ "localized": false,
68
+ "required": true,
69
+ "validations": [
70
+ {
71
+ "linkMimetypeGroup": [
72
+ "image"
73
+ ]
74
+ }
75
+ ],
76
+ "disabled": false,
77
+ "omitted": false,
78
+ "linkType": "Asset"
79
+ },
80
+ {
81
+ "id": "shortBio",
82
+ "name": "Short Bio",
83
+ "type": "Text",
84
+ "localized": false,
85
+ "required": false,
86
+ "validations": [
87
+ {
88
+ "size": {
89
+ "min": null,
90
+ "max": 100
91
+ },
92
+ "message": "The Short Bio is intended to be short. Please keep it under 100 characters."
93
+ }
94
+ ],
95
+ "disabled": false,
96
+ "omitted": false
97
+ },
98
+ {
99
+ "id": "testimonial",
100
+ "name": "Testimonial",
101
+ "type": "Text",
102
+ "localized": false,
103
+ "required": false,
104
+ "validations": [
105
+ {
106
+ "size": {
107
+ "max": 400
108
+ },
109
+ "message": "Please limit the Testimonial to no more than 400 characters"
110
+ }
111
+ ],
112
+ "disabled": false,
113
+ "omitted": false
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ "sys": {
119
+ "space": {
120
+ "sys": {
121
+ "type": "Link",
122
+ "linkType": "Space",
123
+ "id": "343qxys30lid"
124
+ }
125
+ },
126
+ "id": "menu",
127
+ "type": "ContentType",
128
+ "createdAt": "2018-02-12T17:39:58.461Z",
129
+ "updatedAt": "2018-02-14T18:33:19.888Z",
130
+ "createdBy": {
131
+ "sys": {
132
+ "type": "Link",
133
+ "linkType": "User",
134
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
135
+ }
136
+ },
137
+ "updatedBy": {
138
+ "sys": {
139
+ "type": "Link",
140
+ "linkType": "User",
141
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
142
+ }
143
+ },
144
+ "publishedCounter": 4,
145
+ "version": 8,
146
+ "publishedBy": {
147
+ "sys": {
148
+ "type": "Link",
149
+ "linkType": "User",
150
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
151
+ }
152
+ },
153
+ "publishedVersion": 7,
154
+ "firstPublishedAt": "2018-02-12T17:39:58.717Z",
155
+ "publishedAt": "2018-02-14T18:33:19.888Z"
156
+ },
157
+ "displayField": "name",
158
+ "name": "Menu",
159
+ "description": "A Menu contains a number of Menu Buttons or other Menus, grouped together horizontally or vertically.\n\nIf a Menu contains another Menu, the contained menu will become a drop-down.\n\nThe optional 'Hamburger' field is rendered as the hamburger button on the right side of the menu, and opens as a drop-down.",
160
+ "fields": [
161
+ {
162
+ "id": "name",
163
+ "name": "Name",
164
+ "type": "Symbol",
165
+ "localized": false,
166
+ "required": false,
167
+ "validations": [],
168
+ "disabled": false,
169
+ "omitted": false
170
+ },
171
+ {
172
+ "id": "items",
173
+ "name": "Items",
174
+ "type": "Array",
175
+ "localized": false,
176
+ "required": false,
177
+ "validations": [],
178
+ "disabled": false,
179
+ "omitted": false,
180
+ "items": {
181
+ "type": "Link",
182
+ "validations": [
183
+ {
184
+ "linkContentType": [
185
+ "dropdownMenu",
186
+ "menuButton"
187
+ ],
188
+ "message": "The Menu groups must contain only sub-Menus or MenuButtons"
189
+ }
190
+ ],
191
+ "linkType": "Entry"
192
+ }
193
+ }
194
+ ]
195
+ },
196
+ {
197
+ "sys": {
198
+ "space": {
199
+ "sys": {
200
+ "type": "Link",
201
+ "linkType": "Space",
202
+ "id": "7yx6ovlj39n5"
203
+ }
204
+ },
205
+ "id": "dropdownMenu",
206
+ "type": "ContentType",
207
+ "createdAt": "2018-05-01T21:48:25.933Z",
208
+ "updatedAt": "2018-05-01T21:48:26.137Z",
209
+ "environment": {
210
+ "sys": {
211
+ "id": "gburgett",
212
+ "type": "Link",
213
+ "linkType": "Environment"
214
+ }
215
+ },
216
+ "createdBy": {
217
+ "sys": {
218
+ "type": "Link",
219
+ "linkType": "User",
220
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
221
+ }
222
+ },
223
+ "updatedBy": {
224
+ "sys": {
225
+ "type": "Link",
226
+ "linkType": "User",
227
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
228
+ }
229
+ },
230
+ "publishedCounter": 1,
231
+ "version": 2,
232
+ "publishedBy": {
233
+ "sys": {
234
+ "type": "Link",
235
+ "linkType": "User",
236
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
237
+ }
238
+ },
239
+ "publishedVersion": 1,
240
+ "firstPublishedAt": "2018-05-01T21:48:26.137Z",
241
+ "publishedAt": "2018-05-01T21:48:26.137Z"
242
+ },
243
+ "displayField": "name",
244
+ "name": "Dropdown Menu",
245
+ "description": "A Dropdown Menu can be attached to a main menu to show additional menu items on click.",
246
+ "fields": [
247
+ {
248
+ "id": "name",
249
+ "name": "Menu Name",
250
+ "type": "Symbol",
251
+ "localized": false,
252
+ "required": false,
253
+ "validations": [],
254
+ "disabled": false,
255
+ "omitted": false
256
+ },
257
+ {
258
+ "id": "label",
259
+ "name": "Menu Label",
260
+ "type": "Link",
261
+ "localized": false,
262
+ "required": false,
263
+ "validations": [
264
+ {
265
+ "linkContentType": [
266
+ "menuButton"
267
+ ]
268
+ }
269
+ ],
270
+ "disabled": false,
271
+ "omitted": false,
272
+ "linkType": "Entry"
273
+ },
274
+ {
275
+ "id": "items",
276
+ "name": "Items",
277
+ "type": "Array",
278
+ "localized": false,
279
+ "required": false,
280
+ "validations": [],
281
+ "disabled": false,
282
+ "omitted": false,
283
+ "items": {
284
+ "type": "Link",
285
+ "validations": [
286
+ {
287
+ "linkContentType": [
288
+ "menuButton"
289
+ ]
290
+ }
291
+ ],
292
+ "linkType": "Entry"
293
+ }
294
+ }
295
+ ]
296
+ },
297
+ {
298
+ "sys": {
299
+ "space": {
300
+ "sys": {
301
+ "type": "Link",
302
+ "linkType": "Space",
303
+ "id": "343qxys30lid"
304
+ }
305
+ },
306
+ "id": "section-VideoHighlight",
307
+ "type": "ContentType",
308
+ "createdAt": "2018-02-12T19:41:52.641Z",
309
+ "updatedAt": "2018-02-14T18:29:57.501Z",
310
+ "createdBy": {
311
+ "sys": {
312
+ "type": "Link",
313
+ "linkType": "User",
314
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
315
+ }
316
+ },
317
+ "updatedBy": {
318
+ "sys": {
319
+ "type": "Link",
320
+ "linkType": "User",
321
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
322
+ }
323
+ },
324
+ "publishedCounter": 4,
325
+ "version": 8,
326
+ "publishedBy": {
327
+ "sys": {
328
+ "type": "Link",
329
+ "linkType": "User",
330
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
331
+ }
332
+ },
333
+ "publishedVersion": 7,
334
+ "firstPublishedAt": "2018-02-12T19:41:52.801Z",
335
+ "publishedAt": "2018-02-14T18:29:57.500Z"
336
+ },
337
+ "displayField": "text",
338
+ "name": "Section: Video Highlight",
339
+ "description": "The Video Highlight section includes a player for Youtube videos.",
340
+ "fields": [
341
+ {
342
+ "id": "text",
343
+ "name": "Text",
344
+ "type": "Text",
345
+ "localized": false,
346
+ "required": true,
347
+ "validations": [],
348
+ "disabled": false,
349
+ "omitted": false
350
+ },
351
+ {
352
+ "id": "youtubeLink",
353
+ "name": "youtubeLink",
354
+ "type": "Symbol",
355
+ "localized": false,
356
+ "required": false,
357
+ "validations": [],
358
+ "disabled": false,
359
+ "omitted": false
360
+ },
361
+ {
362
+ "id": "video",
363
+ "name": "Video",
364
+ "type": "Link",
365
+ "localized": false,
366
+ "required": false,
367
+ "validations": [
368
+ {
369
+ "linkMimetypeGroup": [
370
+ "video"
371
+ ]
372
+ }
373
+ ],
374
+ "disabled": false,
375
+ "omitted": false,
376
+ "linkType": "Asset"
377
+ },
378
+ {
379
+ "id": "theme",
380
+ "name": "Theme",
381
+ "type": "Link",
382
+ "localized": false,
383
+ "required": false,
384
+ "validations": [
385
+ {
386
+ "linkContentType": [
387
+ "theme"
388
+ ]
389
+ }
390
+ ],
391
+ "disabled": false,
392
+ "omitted": false,
393
+ "linkType": "Entry"
394
+ }
395
+ ]
396
+ },
397
+ {
398
+ "sys": {
399
+ "space": {
400
+ "sys": {
401
+ "type": "Link",
402
+ "linkType": "Space",
403
+ "id": "343qxys30lid"
404
+ }
405
+ },
406
+ "id": "faq",
407
+ "type": "ContentType",
408
+ "createdAt": "2018-02-14T18:32:15.872Z",
409
+ "updatedAt": "2018-02-23T16:36:13.245Z",
410
+ "createdBy": {
411
+ "sys": {
412
+ "type": "Link",
413
+ "linkType": "User",
414
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
415
+ }
416
+ },
417
+ "updatedBy": {
418
+ "sys": {
419
+ "type": "Link",
420
+ "linkType": "User",
421
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
422
+ }
423
+ },
424
+ "publishedCounter": 2,
425
+ "version": 4,
426
+ "publishedBy": {
427
+ "sys": {
428
+ "type": "Link",
429
+ "linkType": "User",
430
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
431
+ }
432
+ },
433
+ "publishedVersion": 3,
434
+ "firstPublishedAt": "2018-02-14T18:32:16.249Z",
435
+ "publishedAt": "2018-02-23T16:36:13.245Z"
436
+ },
437
+ "displayField": "question",
438
+ "name": "FAQ",
439
+ "description": "",
440
+ "fields": [
441
+ {
442
+ "id": "question",
443
+ "name": "Question",
444
+ "type": "Symbol",
445
+ "localized": false,
446
+ "required": true,
447
+ "validations": [],
448
+ "disabled": false,
449
+ "omitted": false
450
+ },
451
+ {
452
+ "id": "answer",
453
+ "name": "Answer",
454
+ "type": "Text",
455
+ "localized": false,
456
+ "required": true,
457
+ "validations": [],
458
+ "disabled": false,
459
+ "omitted": false
460
+ },
461
+ {
462
+ "id": "numFaqs",
463
+ "name": "numFaqs",
464
+ "type": "Integer",
465
+ "localized": false,
466
+ "required": false,
467
+ "validations": [],
468
+ "disabled": false,
469
+ "omitted": false
470
+ },
471
+ {
472
+ "id": "numFaqsFloat",
473
+ "name": "numFaqsFloat",
474
+ "type": "Number",
475
+ "localized": false,
476
+ "required": false,
477
+ "validations": [],
478
+ "disabled": false,
479
+ "omitted": false
480
+ },
481
+ {
482
+ "id": "dateOfFaq",
483
+ "name": "DateOfFaq",
484
+ "type": "Date",
485
+ "localized": false,
486
+ "required": false,
487
+ "validations": [],
488
+ "disabled": false,
489
+ "omitted": false
490
+ },
491
+ {
492
+ "id": "truthyOrFalsy",
493
+ "name": "TruthyOrFalsy",
494
+ "type": "Boolean",
495
+ "localized": false,
496
+ "required": false,
497
+ "validations": [],
498
+ "disabled": false,
499
+ "omitted": false
500
+ },
501
+ {
502
+ "id": "placeOfFaq",
503
+ "name": "PlaceOfFaq",
504
+ "type": "Location",
505
+ "localized": false,
506
+ "required": false,
507
+ "validations": [],
508
+ "disabled": false,
509
+ "omitted": false
510
+ }
511
+ ]
512
+ },
513
+ {
514
+ "sys": {
515
+ "space": {
516
+ "sys": {
517
+ "type": "Link",
518
+ "linkType": "Space",
519
+ "id": "343qxys30lid"
520
+ }
521
+ },
522
+ "id": "migrationHistory",
523
+ "type": "ContentType",
524
+ "createdAt": "2018-02-22T21:12:44.913Z",
525
+ "updatedAt": "2018-02-22T21:12:45.149Z",
526
+ "createdBy": {
527
+ "sys": {
528
+ "type": "Link",
529
+ "linkType": "User",
530
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
531
+ }
532
+ },
533
+ "updatedBy": {
534
+ "sys": {
535
+ "type": "Link",
536
+ "linkType": "User",
537
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
538
+ }
539
+ },
540
+ "publishedCounter": 1,
541
+ "version": 2,
542
+ "publishedBy": {
543
+ "sys": {
544
+ "type": "Link",
545
+ "linkType": "User",
546
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
547
+ }
548
+ },
549
+ "publishedVersion": 1,
550
+ "firstPublishedAt": "2018-02-22T21:12:45.149Z",
551
+ "publishedAt": "2018-02-22T21:12:45.149Z"
552
+ },
553
+ "displayField": "migrationName",
554
+ "name": "Migration History",
555
+ "description": "System Type - Do Not Modify",
556
+ "fields": [
557
+ {
558
+ "id": "migrationName",
559
+ "name": "Migration Name",
560
+ "type": "Symbol",
561
+ "localized": false,
562
+ "required": true,
563
+ "validations": [],
564
+ "disabled": false,
565
+ "omitted": false
566
+ },
567
+ {
568
+ "id": "started",
569
+ "name": "Started",
570
+ "type": "Date",
571
+ "localized": false,
572
+ "required": false,
573
+ "validations": [],
574
+ "disabled": false,
575
+ "omitted": false
576
+ },
577
+ {
578
+ "id": "completed",
579
+ "name": "Completed",
580
+ "type": "Date",
581
+ "localized": false,
582
+ "required": false,
583
+ "validations": [],
584
+ "disabled": false,
585
+ "omitted": false
586
+ },
587
+ {
588
+ "id": "detail",
589
+ "name": "Detail",
590
+ "type": "Object",
591
+ "localized": false,
592
+ "required": false,
593
+ "validations": [],
594
+ "disabled": false,
595
+ "omitted": false
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "sys": {
601
+ "space": {
602
+ "sys": {
603
+ "type": "Link",
604
+ "linkType": "Space",
605
+ "id": "343qxys30lid"
606
+ }
607
+ },
608
+ "id": "homepage",
609
+ "type": "ContentType",
610
+ "createdAt": "2018-02-12T18:34:23.822Z",
611
+ "updatedAt": "2018-03-01T21:45:53.105Z",
612
+ "createdBy": {
613
+ "sys": {
614
+ "type": "Link",
615
+ "linkType": "User",
616
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
617
+ }
618
+ },
619
+ "updatedBy": {
620
+ "sys": {
621
+ "type": "Link",
622
+ "linkType": "User",
623
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
624
+ }
625
+ },
626
+ "publishedCounter": 6,
627
+ "version": 12,
628
+ "publishedBy": {
629
+ "sys": {
630
+ "type": "Link",
631
+ "linkType": "User",
632
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
633
+ }
634
+ },
635
+ "publishedVersion": 11,
636
+ "firstPublishedAt": "2018-02-12T18:34:24.038Z",
637
+ "publishedAt": "2018-03-01T21:45:53.105Z"
638
+ },
639
+ "displayField": "siteTitle",
640
+ "name": "Homepage",
641
+ "description": "The Homepage is a special page - it contains some fields like the Top Menu and Site Footer which are set on all other Pages. This page is visible at the root of watermarkresources.org",
642
+ "fields": [
643
+ {
644
+ "id": "siteTitle",
645
+ "name": "Site Title",
646
+ "type": "Symbol",
647
+ "localized": false,
648
+ "required": false,
649
+ "validations": [],
650
+ "disabled": false,
651
+ "omitted": false
652
+ },
653
+ {
654
+ "id": "favicons",
655
+ "name": "Favicons",
656
+ "type": "Array",
657
+ "localized": false,
658
+ "required": true,
659
+ "validations": [],
660
+ "disabled": false,
661
+ "omitted": false,
662
+ "items": {
663
+ "type": "Link",
664
+ "validations": [
665
+ {
666
+ "linkMimetypeGroup": [
667
+ "image"
668
+ ]
669
+ },
670
+ {
671
+ "assetFileSize": {
672
+ "max": 102400
673
+ },
674
+ "message": "Favicons are supposed to be small. Please use an image less than 100kb in size."
675
+ }
676
+ ],
677
+ "linkType": "Asset"
678
+ }
679
+ },
680
+ {
681
+ "id": "mainMenu",
682
+ "name": "Main Menu",
683
+ "type": "Link",
684
+ "localized": false,
685
+ "required": false,
686
+ "validations": [
687
+ {
688
+ "linkContentType": [
689
+ "menu"
690
+ ]
691
+ }
692
+ ],
693
+ "disabled": false,
694
+ "omitted": false,
695
+ "linkType": "Entry"
696
+ },
697
+ {
698
+ "id": "heroImage",
699
+ "name": "Hero Image",
700
+ "type": "Link",
701
+ "localized": false,
702
+ "required": false,
703
+ "validations": [
704
+ {
705
+ "linkMimetypeGroup": [
706
+ "image"
707
+ ]
708
+ }
709
+ ],
710
+ "disabled": false,
711
+ "omitted": false,
712
+ "linkType": "Asset"
713
+ },
714
+ {
715
+ "id": "heroText",
716
+ "name": "Hero Text",
717
+ "type": "Text",
718
+ "localized": false,
719
+ "required": false,
720
+ "validations": [],
721
+ "disabled": false,
722
+ "omitted": false
723
+ },
724
+ {
725
+ "id": "heroButtons",
726
+ "name": "Hero Buttons",
727
+ "type": "Array",
728
+ "localized": false,
729
+ "required": false,
730
+ "validations": [],
731
+ "disabled": false,
732
+ "omitted": false,
733
+ "items": {
734
+ "type": "Link",
735
+ "validations": [
736
+ {
737
+ "linkContentType": [
738
+ "menuButton"
739
+ ]
740
+ }
741
+ ],
742
+ "linkType": "Entry"
743
+ }
744
+ },
745
+ {
746
+ "id": "callToAction",
747
+ "name": "Call To Action",
748
+ "type": "Link",
749
+ "localized": false,
750
+ "required": false,
751
+ "validations": [],
752
+ "disabled": false,
753
+ "omitted": false,
754
+ "linkType": "Entry"
755
+ },
756
+ {
757
+ "id": "sections",
758
+ "name": "Sections",
759
+ "type": "Array",
760
+ "localized": false,
761
+ "required": false,
762
+ "validations": [],
763
+ "disabled": false,
764
+ "omitted": false,
765
+ "items": {
766
+ "type": "Link",
767
+ "validations": [
768
+ {
769
+ "linkContentType": [
770
+ "section-CardSearch",
771
+ "section-Faq",
772
+ "section-Testimonials",
773
+ "section-VideoHighlight"
774
+ ]
775
+ }
776
+ ],
777
+ "linkType": "Entry"
778
+ }
779
+ },
780
+ {
781
+ "id": "siteFooter",
782
+ "name": "Site Footer",
783
+ "type": "Link",
784
+ "localized": false,
785
+ "required": false,
786
+ "validations": [],
787
+ "disabled": false,
788
+ "omitted": false,
789
+ "linkType": "Entry"
790
+ }
791
+ ]
792
+ },
793
+ {
794
+ "sys": {
795
+ "space": {
796
+ "sys": {
797
+ "type": "Link",
798
+ "linkType": "Space",
799
+ "id": "343qxys30lid"
800
+ }
801
+ },
802
+ "id": "theme",
803
+ "type": "ContentType",
804
+ "createdAt": "2018-02-14T18:23:43.051Z",
805
+ "updatedAt": "2018-02-14T18:28:37.615Z",
806
+ "createdBy": {
807
+ "sys": {
808
+ "type": "Link",
809
+ "linkType": "User",
810
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
811
+ }
812
+ },
813
+ "updatedBy": {
814
+ "sys": {
815
+ "type": "Link",
816
+ "linkType": "User",
817
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
818
+ }
819
+ },
820
+ "publishedCounter": 7,
821
+ "version": 14,
822
+ "publishedBy": {
823
+ "sys": {
824
+ "type": "Link",
825
+ "linkType": "User",
826
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
827
+ }
828
+ },
829
+ "publishedVersion": 13,
830
+ "firstPublishedAt": "2018-02-14T18:23:43.243Z",
831
+ "publishedAt": "2018-02-14T18:28:37.615Z"
832
+ },
833
+ "displayField": "name",
834
+ "name": "Theme",
835
+ "description": "A Theme can be applied to a section to give it a certain style, for example by changing colors or positioning certain elements",
836
+ "fields": [
837
+ {
838
+ "id": "name",
839
+ "name": "Name",
840
+ "type": "Symbol",
841
+ "localized": false,
842
+ "required": false,
843
+ "validations": [],
844
+ "disabled": false,
845
+ "omitted": false
846
+ },
847
+ {
848
+ "id": "foregroundColor",
849
+ "name": "Foreground Color",
850
+ "type": "Symbol",
851
+ "localized": false,
852
+ "required": false,
853
+ "validations": [
854
+ {
855
+ "regexp": {
856
+ "pattern": "^(\\w+|\\#[a-f0-9]+|(rgba?|hsla?)\\(\\s*\\d+,\\s*\\d+\\%?,\\s*\\d+\\%?(,\\s*[\\d\\.]+)?\\))$",
857
+ "flags": null
858
+ },
859
+ "message": "This must be a valid CSS color. Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value"
860
+ }
861
+ ],
862
+ "disabled": false,
863
+ "omitted": false
864
+ },
865
+ {
866
+ "id": "backgroundColor",
867
+ "name": "Background Color",
868
+ "type": "Symbol",
869
+ "localized": false,
870
+ "required": false,
871
+ "validations": [
872
+ {
873
+ "regexp": {
874
+ "pattern": "^(\\w+|\\#[a-f0-9]+|(rgba?|hsla?)\\(\\s*\\d+,\\s*\\d+\\%?,\\s*\\d+\\%?(,\\s*[\\d\\.]+)?\\))$",
875
+ "flags": null
876
+ },
877
+ "message": "This must be a valid CSS color. Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value"
878
+ }
879
+ ],
880
+ "disabled": false,
881
+ "omitted": false
882
+ },
883
+ {
884
+ "id": "highlightColor",
885
+ "name": "Highlight Color",
886
+ "type": "Symbol",
887
+ "localized": false,
888
+ "required": false,
889
+ "validations": [
890
+ {
891
+ "regexp": {
892
+ "pattern": "^(\\w+|\\#[a-f0-9]+|(rgba?|hsla?)\\(\\s*\\d+,\\s*\\d+\\%?,\\s*\\d+\\%?(,\\s*[\\d\\.]+)?\\))$",
893
+ "flags": null
894
+ },
895
+ "message": "This must be a valid CSS color. Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value"
896
+ }
897
+ ],
898
+ "disabled": false,
899
+ "omitted": false
900
+ },
901
+ {
902
+ "id": "borderColor",
903
+ "name": "Border Color",
904
+ "type": "Symbol",
905
+ "localized": false,
906
+ "required": false,
907
+ "validations": [
908
+ {
909
+ "regexp": {
910
+ "pattern": "^(\\w+|\\#[a-f0-9]+|(rgba?|hsla?)\\(\\s*\\d+,\\s*\\d+\\%?,\\s*\\d+\\%?(,\\s*[\\d\\.]+)?\\))$",
911
+ "flags": null
912
+ },
913
+ "message": "This must be a valid CSS color. Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value"
914
+ }
915
+ ],
916
+ "disabled": false,
917
+ "omitted": false
918
+ }
919
+ ]
920
+ },
921
+ {
922
+ "sys": {
923
+ "space": {
924
+ "sys": {
925
+ "type": "Link",
926
+ "linkType": "Space",
927
+ "id": "343qxys30lid"
928
+ }
929
+ },
930
+ "id": "section-CardSearch",
931
+ "type": "ContentType",
932
+ "createdAt": "2018-02-13T22:17:50.228Z",
933
+ "updatedAt": "2018-02-14T18:30:14.695Z",
934
+ "createdBy": {
935
+ "sys": {
936
+ "type": "Link",
937
+ "linkType": "User",
938
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
939
+ }
940
+ },
941
+ "updatedBy": {
942
+ "sys": {
943
+ "type": "Link",
944
+ "linkType": "User",
945
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
946
+ }
947
+ },
948
+ "publishedCounter": 2,
949
+ "version": 4,
950
+ "publishedBy": {
951
+ "sys": {
952
+ "type": "Link",
953
+ "linkType": "User",
954
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
955
+ }
956
+ },
957
+ "publishedVersion": 3,
958
+ "firstPublishedAt": "2018-02-13T22:17:50.643Z",
959
+ "publishedAt": "2018-02-14T18:30:14.695Z"
960
+ },
961
+ "displayField": "name",
962
+ "name": "Section: Card Search",
963
+ "description": "A group of cards & search functionality for those cards",
964
+ "fields": [
965
+ {
966
+ "id": "name",
967
+ "name": "name",
968
+ "type": "Symbol",
969
+ "localized": false,
970
+ "required": true,
971
+ "validations": [],
972
+ "disabled": false,
973
+ "omitted": false
974
+ },
975
+ {
976
+ "id": "cards",
977
+ "name": "Cards",
978
+ "type": "Array",
979
+ "localized": false,
980
+ "required": false,
981
+ "validations": [],
982
+ "disabled": false,
983
+ "omitted": false,
984
+ "items": {
985
+ "type": "Link",
986
+ "validations": [],
987
+ "linkType": "Entry"
988
+ }
989
+ },
990
+ {
991
+ "id": "theme",
992
+ "name": "Theme",
993
+ "type": "Link",
994
+ "localized": false,
995
+ "required": false,
996
+ "validations": [],
997
+ "disabled": false,
998
+ "omitted": false,
999
+ "linkType": "Entry"
1000
+ }
1001
+ ]
1002
+ },
1003
+ {
1004
+ "sys": {
1005
+ "space": {
1006
+ "sys": {
1007
+ "type": "Link",
1008
+ "linkType": "Space",
1009
+ "id": "343qxys30lid"
1010
+ }
1011
+ },
1012
+ "id": "ministry",
1013
+ "type": "ContentType",
1014
+ "createdAt": "2018-02-12T17:23:03.793Z",
1015
+ "updatedAt": "2018-02-12T17:23:03.968Z",
1016
+ "createdBy": {
1017
+ "sys": {
1018
+ "type": "Link",
1019
+ "linkType": "User",
1020
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1021
+ }
1022
+ },
1023
+ "updatedBy": {
1024
+ "sys": {
1025
+ "type": "Link",
1026
+ "linkType": "User",
1027
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1028
+ }
1029
+ },
1030
+ "publishedCounter": 1,
1031
+ "version": 2,
1032
+ "publishedBy": {
1033
+ "sys": {
1034
+ "type": "Link",
1035
+ "linkType": "User",
1036
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1037
+ }
1038
+ },
1039
+ "publishedVersion": 1,
1040
+ "firstPublishedAt": "2018-02-12T17:23:03.968Z",
1041
+ "publishedAt": "2018-02-12T17:23:03.968Z"
1042
+ },
1043
+ "displayField": "name",
1044
+ "name": "Ministry",
1045
+ "description": "Represents a ministry shown on the Ministry Gallery page.",
1046
+ "fields": [
1047
+ {
1048
+ "id": "name",
1049
+ "name": "Name",
1050
+ "type": "Symbol",
1051
+ "localized": false,
1052
+ "required": true,
1053
+ "validations": [
1054
+ {
1055
+ "unique": true
1056
+ }
1057
+ ],
1058
+ "disabled": false,
1059
+ "omitted": false
1060
+ },
1061
+ {
1062
+ "id": "cardImage",
1063
+ "name": "Card Image",
1064
+ "type": "Link",
1065
+ "localized": false,
1066
+ "required": true,
1067
+ "validations": [
1068
+ {
1069
+ "linkMimetypeGroup": [
1070
+ "image"
1071
+ ]
1072
+ }
1073
+ ],
1074
+ "disabled": false,
1075
+ "omitted": false,
1076
+ "linkType": "Asset"
1077
+ },
1078
+ {
1079
+ "id": "audiences",
1080
+ "name": "audiences",
1081
+ "type": "Array",
1082
+ "localized": false,
1083
+ "required": false,
1084
+ "validations": [],
1085
+ "disabled": false,
1086
+ "omitted": false,
1087
+ "items": {
1088
+ "type": "Symbol",
1089
+ "validations": []
1090
+ }
1091
+ },
1092
+ {
1093
+ "id": "categories",
1094
+ "name": "Categories",
1095
+ "type": "Array",
1096
+ "localized": false,
1097
+ "required": false,
1098
+ "validations": [],
1099
+ "disabled": false,
1100
+ "omitted": false,
1101
+ "items": {
1102
+ "type": "Symbol",
1103
+ "validations": []
1104
+ }
1105
+ }
1106
+ ]
1107
+ },
1108
+ {
1109
+ "sys": {
1110
+ "space": {
1111
+ "sys": {
1112
+ "type": "Link",
1113
+ "linkType": "Space",
1114
+ "id": "7yx6ovlj39n5"
1115
+ }
1116
+ },
1117
+ "id": "page",
1118
+ "type": "ContentType",
1119
+ "createdAt": "2018-04-16T18:36:22.087Z",
1120
+ "updatedAt": "2018-08-03T15:34:19.701Z",
1121
+ "environment": {
1122
+ "sys": {
1123
+ "id": "gburgett",
1124
+ "type": "Link",
1125
+ "linkType": "Environment"
1126
+ }
1127
+ },
1128
+ "createdBy": {
1129
+ "sys": {
1130
+ "type": "Link",
1131
+ "linkType": "User",
1132
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1133
+ }
1134
+ },
1135
+ "updatedBy": {
1136
+ "sys": {
1137
+ "type": "Link",
1138
+ "linkType": "User",
1139
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
1140
+ }
1141
+ },
1142
+ "publishedCounter": 10,
1143
+ "version": 20,
1144
+ "publishedBy": {
1145
+ "sys": {
1146
+ "type": "Link",
1147
+ "linkType": "User",
1148
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
1149
+ }
1150
+ },
1151
+ "publishedVersion": 19,
1152
+ "firstPublishedAt": "2018-04-16T18:36:22.291Z",
1153
+ "publishedAt": "2018-08-03T15:34:19.701Z"
1154
+ },
1155
+ "displayField": "internalTitle",
1156
+ "name": "Page",
1157
+ "description": "A page describes a collection of sections that correspondto a URL slug",
1158
+ "fields": [
1159
+ {
1160
+ "id": "internalTitle",
1161
+ "name": "Internal Title (Contentful Only)",
1162
+ "type": "Symbol",
1163
+ "localized": false,
1164
+ "required": true,
1165
+ "validations": [],
1166
+ "disabled": false,
1167
+ "omitted": true
1168
+ },
1169
+ {
1170
+ "id": "title",
1171
+ "name": "Title",
1172
+ "type": "Symbol",
1173
+ "localized": false,
1174
+ "required": true,
1175
+ "validations": [],
1176
+ "disabled": false,
1177
+ "omitted": false
1178
+ },
1179
+ {
1180
+ "id": "slug",
1181
+ "name": "Slug",
1182
+ "type": "Symbol",
1183
+ "localized": false,
1184
+ "required": true,
1185
+ "validations": [
1186
+ {
1187
+ "unique": true
1188
+ },
1189
+ {
1190
+ "regexp": {
1191
+ "pattern": "\\/(?:[\\w#!:.?+=&%@!\\-]\\/?)*$"
1192
+ },
1193
+ "message": "The slug must look like the path part of a URL and begin with a forward slash, example: '/my-page-slug'"
1194
+ }
1195
+ ],
1196
+ "disabled": false,
1197
+ "omitted": false
1198
+ },
1199
+ {
1200
+ "id": "header",
1201
+ "name": "Header",
1202
+ "type": "Link",
1203
+ "localized": false,
1204
+ "required": false,
1205
+ "validations": [
1206
+ {
1207
+ "linkContentType": [
1208
+ "section-hero",
1209
+ "section-domain-object-header"
1210
+ ]
1211
+ }
1212
+ ],
1213
+ "disabled": false,
1214
+ "omitted": false,
1215
+ "linkType": "Entry"
1216
+ },
1217
+ {
1218
+ "id": "sections",
1219
+ "name": "Sections",
1220
+ "type": "Array",
1221
+ "localized": false,
1222
+ "required": false,
1223
+ "validations": [],
1224
+ "disabled": false,
1225
+ "omitted": false,
1226
+ "items": {
1227
+ "type": "Link",
1228
+ "validations": [],
1229
+ "linkType": "Entry"
1230
+ }
1231
+ },
1232
+ {
1233
+ "id": "subpages",
1234
+ "name": "Subpages",
1235
+ "type": "Array",
1236
+ "localized": false,
1237
+ "required": false,
1238
+ "validations": [],
1239
+ "disabled": false,
1240
+ "omitted": false,
1241
+ "items": {
1242
+ "type": "Link",
1243
+ "validations": [
1244
+ {
1245
+ "linkContentType": [
1246
+ "page"
1247
+ ]
1248
+ }
1249
+ ],
1250
+ "linkType": "Entry"
1251
+ }
1252
+ },
1253
+ {
1254
+ "id": "domainObject",
1255
+ "name": "Associated Ministry or Conference",
1256
+ "type": "Link",
1257
+ "localized": false,
1258
+ "required": false,
1259
+ "validations": [
1260
+ {
1261
+ "linkContentType": [
1262
+ "ministry",
1263
+ "conference"
1264
+ ],
1265
+ "message": "This can be a Ministry or Conference."
1266
+ }
1267
+ ],
1268
+ "disabled": false,
1269
+ "omitted": false,
1270
+ "linkType": "Entry"
1271
+ },
1272
+ {
1273
+ "id": "minimumSecurityLevel",
1274
+ "name": "Minimum Required Security Level",
1275
+ "type": "Symbol",
1276
+ "localized": false,
1277
+ "required": false,
1278
+ "validations": [
1279
+ {
1280
+ "in": [
1281
+ "Anonymous",
1282
+ "Mentor",
1283
+ "Lay Leader",
1284
+ "Church Admin",
1285
+ "WMR Admin"
1286
+ ]
1287
+ }
1288
+ ],
1289
+ "disabled": false,
1290
+ "omitted": false
1291
+ }
1292
+ ]
1293
+ },
1294
+ {
1295
+ "sys": {
1296
+ "space": {
1297
+ "sys": {
1298
+ "type": "Link",
1299
+ "linkType": "Space",
1300
+ "id": "343qxys30lid"
1301
+ }
1302
+ },
1303
+ "id": "ministryCard",
1304
+ "type": "ContentType",
1305
+ "createdAt": "2018-02-13T22:19:20.379Z",
1306
+ "updatedAt": "2018-02-13T22:19:20.868Z",
1307
+ "createdBy": {
1308
+ "sys": {
1309
+ "type": "Link",
1310
+ "linkType": "User",
1311
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1312
+ }
1313
+ },
1314
+ "updatedBy": {
1315
+ "sys": {
1316
+ "type": "Link",
1317
+ "linkType": "User",
1318
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1319
+ }
1320
+ },
1321
+ "publishedCounter": 1,
1322
+ "version": 2,
1323
+ "publishedBy": {
1324
+ "sys": {
1325
+ "type": "Link",
1326
+ "linkType": "User",
1327
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1328
+ }
1329
+ },
1330
+ "publishedVersion": 1,
1331
+ "firstPublishedAt": "2018-02-13T22:19:20.868Z",
1332
+ "publishedAt": "2018-02-13T22:19:20.868Z"
1333
+ },
1334
+ "displayField": "name",
1335
+ "name": "Ministry/Conference Card",
1336
+ "description": "A card displaying a Ministry or Conference. Links to a page.",
1337
+ "fields": [
1338
+ {
1339
+ "id": "name",
1340
+ "name": "Name",
1341
+ "type": "Symbol",
1342
+ "localized": false,
1343
+ "required": true,
1344
+ "validations": [
1345
+ {
1346
+ "unique": true
1347
+ }
1348
+ ],
1349
+ "disabled": false,
1350
+ "omitted": false
1351
+ },
1352
+ {
1353
+ "id": "cardImage",
1354
+ "name": "Card Image",
1355
+ "type": "Link",
1356
+ "localized": false,
1357
+ "required": true,
1358
+ "validations": [
1359
+ {
1360
+ "linkMimetypeGroup": [
1361
+ "image"
1362
+ ]
1363
+ }
1364
+ ],
1365
+ "disabled": false,
1366
+ "omitted": false,
1367
+ "linkType": "Asset"
1368
+ },
1369
+ {
1370
+ "id": "page",
1371
+ "name": "Page",
1372
+ "type": "Link",
1373
+ "localized": false,
1374
+ "required": false,
1375
+ "validations": [],
1376
+ "disabled": false,
1377
+ "omitted": false,
1378
+ "linkType": "Entry"
1379
+ }
1380
+ ]
1381
+ },
1382
+ {
1383
+ "sys": {
1384
+ "space": {
1385
+ "sys": {
1386
+ "type": "Link",
1387
+ "linkType": "Space",
1388
+ "id": "343qxys30lid"
1389
+ }
1390
+ },
1391
+ "id": "section-Faq",
1392
+ "type": "ContentType",
1393
+ "createdAt": "2018-02-12T19:13:59.267Z",
1394
+ "updatedAt": "2018-02-14T18:32:40.782Z",
1395
+ "createdBy": {
1396
+ "sys": {
1397
+ "type": "Link",
1398
+ "linkType": "User",
1399
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1400
+ }
1401
+ },
1402
+ "updatedBy": {
1403
+ "sys": {
1404
+ "type": "Link",
1405
+ "linkType": "User",
1406
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1407
+ }
1408
+ },
1409
+ "publishedCounter": 8,
1410
+ "version": 16,
1411
+ "publishedBy": {
1412
+ "sys": {
1413
+ "type": "Link",
1414
+ "linkType": "User",
1415
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1416
+ }
1417
+ },
1418
+ "publishedVersion": 15,
1419
+ "firstPublishedAt": "2018-02-12T19:13:59.422Z",
1420
+ "publishedAt": "2018-02-14T18:32:40.782Z"
1421
+ },
1422
+ "displayField": "helpText",
1423
+ "name": "Section: FAQ",
1424
+ "description": "The Content Type for the FAQ section",
1425
+ "fields": [
1426
+ {
1427
+ "id": "helpText",
1428
+ "name": "Help Text",
1429
+ "type": "Text",
1430
+ "localized": false,
1431
+ "required": false,
1432
+ "validations": [],
1433
+ "disabled": false,
1434
+ "omitted": false
1435
+ },
1436
+ {
1437
+ "id": "contactButton",
1438
+ "name": "Contact Button",
1439
+ "type": "Link",
1440
+ "localized": false,
1441
+ "required": false,
1442
+ "validations": [
1443
+ {
1444
+ "linkContentType": [
1445
+ "menuButton"
1446
+ ]
1447
+ }
1448
+ ],
1449
+ "disabled": false,
1450
+ "omitted": false,
1451
+ "linkType": "Entry"
1452
+ },
1453
+ {
1454
+ "id": "faqs",
1455
+ "name": "FAQs",
1456
+ "type": "Array",
1457
+ "localized": false,
1458
+ "required": false,
1459
+ "validations": [],
1460
+ "disabled": false,
1461
+ "omitted": false,
1462
+ "items": {
1463
+ "type": "Link",
1464
+ "validations": [
1465
+ {
1466
+ "linkContentType": [
1467
+ "faq"
1468
+ ]
1469
+ }
1470
+ ],
1471
+ "linkType": "Entry"
1472
+ }
1473
+ },
1474
+ {
1475
+ "id": "theme",
1476
+ "name": "Theme",
1477
+ "type": "Link",
1478
+ "localized": false,
1479
+ "required": false,
1480
+ "validations": [
1481
+ {
1482
+ "linkContentType": [
1483
+ "theme"
1484
+ ]
1485
+ }
1486
+ ],
1487
+ "disabled": false,
1488
+ "omitted": false,
1489
+ "linkType": "Entry"
1490
+ }
1491
+ ]
1492
+ },
1493
+ {
1494
+ "sys": {
1495
+ "space": {
1496
+ "sys": {
1497
+ "type": "Link",
1498
+ "linkType": "Space",
1499
+ "id": "343qxys30lid"
1500
+ }
1501
+ },
1502
+ "id": "section-Testimonials",
1503
+ "type": "ContentType",
1504
+ "createdAt": "2018-02-12T19:17:55.075Z",
1505
+ "updatedAt": "2018-02-12T19:48:08.620Z",
1506
+ "createdBy": {
1507
+ "sys": {
1508
+ "type": "Link",
1509
+ "linkType": "User",
1510
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1511
+ }
1512
+ },
1513
+ "updatedBy": {
1514
+ "sys": {
1515
+ "type": "Link",
1516
+ "linkType": "User",
1517
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1518
+ }
1519
+ },
1520
+ "publishedCounter": 6,
1521
+ "version": 12,
1522
+ "publishedBy": {
1523
+ "sys": {
1524
+ "type": "Link",
1525
+ "linkType": "User",
1526
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1527
+ }
1528
+ },
1529
+ "publishedVersion": 11,
1530
+ "firstPublishedAt": "2018-02-12T19:17:55.556Z",
1531
+ "publishedAt": "2018-02-12T19:48:08.620Z"
1532
+ },
1533
+ "displayField": "title",
1534
+ "name": "Section: Testimonials",
1535
+ "description": "The Testimonials section shows a set of testimonials with associated photo and text.",
1536
+ "fields": [
1537
+ {
1538
+ "id": "title",
1539
+ "name": "Title",
1540
+ "type": "Symbol",
1541
+ "localized": false,
1542
+ "required": false,
1543
+ "validations": [],
1544
+ "disabled": false,
1545
+ "omitted": false
1546
+ },
1547
+ {
1548
+ "id": "testimonials",
1549
+ "name": "Testimonials",
1550
+ "type": "Array",
1551
+ "localized": false,
1552
+ "required": false,
1553
+ "validations": [],
1554
+ "disabled": false,
1555
+ "omitted": false,
1556
+ "items": {
1557
+ "type": "Link",
1558
+ "validations": [
1559
+ {
1560
+ "linkContentType": [
1561
+ "testimonial"
1562
+ ]
1563
+ }
1564
+ ],
1565
+ "linkType": "Entry"
1566
+ }
1567
+ }
1568
+ ]
1569
+ },
1570
+ {
1571
+ "sys": {
1572
+ "space": {
1573
+ "sys": {
1574
+ "type": "Link",
1575
+ "linkType": "Space",
1576
+ "id": "343qxys30lid"
1577
+ }
1578
+ },
1579
+ "id": "menuButton",
1580
+ "type": "ContentType",
1581
+ "createdAt": "2018-02-12T18:08:52.787Z",
1582
+ "updatedAt": "2018-02-14T18:33:02.426Z",
1583
+ "createdBy": {
1584
+ "sys": {
1585
+ "type": "Link",
1586
+ "linkType": "User",
1587
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1588
+ }
1589
+ },
1590
+ "updatedBy": {
1591
+ "sys": {
1592
+ "type": "Link",
1593
+ "linkType": "User",
1594
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1595
+ }
1596
+ },
1597
+ "publishedCounter": 8,
1598
+ "version": 16,
1599
+ "publishedBy": {
1600
+ "sys": {
1601
+ "type": "Link",
1602
+ "linkType": "User",
1603
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1604
+ }
1605
+ },
1606
+ "publishedVersion": 15,
1607
+ "firstPublishedAt": "2018-02-12T18:08:53.372Z",
1608
+ "publishedAt": "2018-02-14T18:33:02.426Z"
1609
+ },
1610
+ "displayField": "text",
1611
+ "name": "Menu Button",
1612
+ "description": "A Menu Button is a clickable button that goes on a Menu. It has a link to a path or a URL.",
1613
+ "fields": [
1614
+ {
1615
+ "id": "text",
1616
+ "name": "Text",
1617
+ "type": "Symbol",
1618
+ "localized": false,
1619
+ "required": true,
1620
+ "validations": [
1621
+ {
1622
+ "size": {
1623
+ "max": 60
1624
+ },
1625
+ "message": "a MenuButton's text field should be very short - ideally a single word. Please limit the text to 60 characters or less."
1626
+ }
1627
+ ],
1628
+ "disabled": false,
1629
+ "omitted": false
1630
+ },
1631
+ {
1632
+ "id": "icon",
1633
+ "name": "Icon",
1634
+ "type": "Link",
1635
+ "localized": false,
1636
+ "required": false,
1637
+ "validations": [],
1638
+ "disabled": false,
1639
+ "omitted": false,
1640
+ "linkType": "Asset"
1641
+ },
1642
+ {
1643
+ "id": "iconFA",
1644
+ "name": "Icon from Font Awesome",
1645
+ "type": "Symbol",
1646
+ "localized": false,
1647
+ "required": false,
1648
+ "validations": [
1649
+ {
1650
+ "regexp": {
1651
+ "pattern": "^fa\\-[\\w\\-]+$",
1652
+ "flags": null
1653
+ },
1654
+ "message": "The icon should be the name of a FontAwesome icon - example: 'fa-accessible-icon' which is this one: https://fontawesome.com/icons/accessible-icon"
1655
+ }
1656
+ ],
1657
+ "disabled": false,
1658
+ "omitted": false
1659
+ },
1660
+ {
1661
+ "id": "buttonStyle",
1662
+ "name": "Button Style",
1663
+ "type": "Array",
1664
+ "localized": false,
1665
+ "required": false,
1666
+ "validations": [],
1667
+ "disabled": false,
1668
+ "omitted": false,
1669
+ "items": {
1670
+ "type": "Symbol",
1671
+ "validations": [
1672
+ {
1673
+ "in": [
1674
+ "rounded",
1675
+ "faded when not active",
1676
+ "external",
1677
+ "custom"
1678
+ ]
1679
+ }
1680
+ ]
1681
+ }
1682
+ },
1683
+ {
1684
+ "id": "customButtonCss",
1685
+ "name": "Custom button CSS",
1686
+ "type": "Array",
1687
+ "localized": false,
1688
+ "required": false,
1689
+ "validations": [],
1690
+ "disabled": false,
1691
+ "omitted": false,
1692
+ "items": {
1693
+ "type": "Symbol",
1694
+ "validations": [
1695
+ {
1696
+ "regexp": {
1697
+ "pattern": "^\\s*([\\w\\-\\_]+):\\s+[^;]+;$",
1698
+ "flags": null
1699
+ },
1700
+ "message": "Each line must be a CSS rule, like 'background-color: blue;' 'width: 50% !important;' or 'border-color: rgba(91, 120, 05, .8);'. Did you forget a semilcolon at the end? Or a colon in the middle?"
1701
+ }
1702
+ ]
1703
+ }
1704
+ },
1705
+ {
1706
+ "id": "externalLink",
1707
+ "name": "External Link",
1708
+ "type": "Symbol",
1709
+ "localized": false,
1710
+ "required": false,
1711
+ "validations": [
1712
+ {
1713
+ "regexp": {
1714
+ "pattern": "^(ftp|http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?$"
1715
+ },
1716
+ "message": "The external link must be a URL like 'https://www.watermark.org/'"
1717
+ }
1718
+ ],
1719
+ "disabled": false,
1720
+ "omitted": false
1721
+ },
1722
+ {
1723
+ "id": "link",
1724
+ "name": "Link",
1725
+ "type": "Link",
1726
+ "localized": false,
1727
+ "required": false,
1728
+ "validations": [
1729
+ {
1730
+ "linkContentType": [
1731
+ "page"
1732
+ ],
1733
+ "message": "The Link must be a link to a Page which has a Slug. Example: '/ministries'"
1734
+ }
1735
+ ],
1736
+ "disabled": false,
1737
+ "omitted": false,
1738
+ "linkType": "Entry"
1739
+ }
1740
+ ]
1741
+ },
1742
+ {
1743
+ "sys": {
1744
+ "space": {
1745
+ "sys": {
1746
+ "type": "Link",
1747
+ "linkType": "Space",
1748
+ "id": "hw5pse7y1ojx"
1749
+ }
1750
+ },
1751
+ "id": "redirect",
1752
+ "type": "ContentType",
1753
+ "createdAt": "2018-11-02T19:09:05.568Z",
1754
+ "updatedAt": "2020-03-12T21:28:41.445Z",
1755
+ "environment": {
1756
+ "sys": {
1757
+ "id": "staging",
1758
+ "type": "Link",
1759
+ "linkType": "Environment"
1760
+ }
1761
+ },
1762
+ "publishedVersion": 15,
1763
+ "publishedAt": "2020-03-12T21:28:41.445Z",
1764
+ "firstPublishedAt": "2018-11-02T19:09:16.608Z",
1765
+ "createdBy": {
1766
+ "sys": {
1767
+ "type": "Link",
1768
+ "linkType": "User",
1769
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1770
+ }
1771
+ },
1772
+ "updatedBy": {
1773
+ "sys": {
1774
+ "type": "Link",
1775
+ "linkType": "User",
1776
+ "id": "2SGEbzNLW9vNhYefhYrx1w"
1777
+ }
1778
+ },
1779
+ "publishedCounter": 8,
1780
+ "version": 16,
1781
+ "publishedBy": {
1782
+ "sys": {
1783
+ "type": "Link",
1784
+ "linkType": "User",
1785
+ "id": "2SGEbzNLW9vNhYefhYrx1w"
1786
+ }
1787
+ }
1788
+ },
1789
+ "displayField": "internalTitle",
1790
+ "name": "Redirect",
1791
+ "description": "",
1792
+ "fields": [
1793
+ {
1794
+ "id": "internalTitle",
1795
+ "name": "Internal Title (Contentful Only)",
1796
+ "type": "Symbol",
1797
+ "localized": false,
1798
+ "required": true,
1799
+ "validations": [],
1800
+ "disabled": false,
1801
+ "omitted": true
1802
+ },
1803
+ {
1804
+ "id": "slug",
1805
+ "name": "Slug",
1806
+ "type": "Symbol",
1807
+ "localized": false,
1808
+ "required": true,
1809
+ "validations": [
1810
+ {
1811
+ "unique": true
1812
+ },
1813
+ {
1814
+ "regexp": {
1815
+ "pattern": "^(\\/|(?:\\/[a-z\\d](?:[a-z\\d_\\-]|(?:\\%[\\dA-Z]{2}))*)+)$",
1816
+ "flags": null
1817
+ },
1818
+ "message": "The slug must look like the path part of a URL and begin with a forward slash, example: '/my-page-slug'."
1819
+ },
1820
+ {
1821
+ "prohibitRegexp": {
1822
+ "pattern": "^\\/(api|assets)(\\/.+)?$",
1823
+ "flags": null
1824
+ },
1825
+ "message": "'/api' and '/assets' paths are reserved."
1826
+ }
1827
+ ],
1828
+ "disabled": false,
1829
+ "omitted": false
1830
+ },
1831
+ {
1832
+ "id": "externalLink",
1833
+ "name": "External Link",
1834
+ "type": "Symbol",
1835
+ "localized": false,
1836
+ "required": false,
1837
+ "validations": [
1838
+ {
1839
+ "regexp": {
1840
+ "pattern": "^([^\\s\\:]+):(\\/\\/)?(\\w+:{0,1}\\w*@)?(([^\\s\\/#]+\\.)+[^\\s\\/#]+)(:[0-9]+)?(\\/|(\\/|\\#)([\\w#!:.?+=&%@!\\-\\/]+))?$|^(\\/|(\\/|\\#)([\\w#!:.?+=&%@!\\-\\/]+))$",
1841
+ "flags": null
1842
+ },
1843
+ "message": "The external link must be a URL like 'https://www.watermark.org/', a mailto url like 'mailto:info@watermark.org', or a relative URL like '#location-on-page'"
1844
+ }
1845
+ ],
1846
+ "disabled": false,
1847
+ "omitted": false
1848
+ },
1849
+ {
1850
+ "id": "pageLink",
1851
+ "name": "Page Link",
1852
+ "type": "Link",
1853
+ "localized": false,
1854
+ "required": false,
1855
+ "validations": [
1856
+ {
1857
+ "linkContentType": [
1858
+ "page"
1859
+ ]
1860
+ }
1861
+ ],
1862
+ "disabled": false,
1863
+ "omitted": false,
1864
+ "linkType": "Entry"
1865
+ },
1866
+ {
1867
+ "id": "sectionLink",
1868
+ "name": "Section Link",
1869
+ "type": "Link",
1870
+ "localized": false,
1871
+ "required": false,
1872
+ "validations": [
1873
+ {
1874
+ "linkContentType": [
1875
+ "section-block-text",
1876
+ "section-campus-selector-header",
1877
+ "section-card-deck",
1878
+ "section-carousel",
1879
+ "sectionCodeWidget",
1880
+ "section-contact-form",
1881
+ "section-faq",
1882
+ "sectionFeaturedInitiative",
1883
+ "section-hero",
1884
+ "section-http-error",
1885
+ "section-marquee-text",
1886
+ "section-resources",
1887
+ "section-tab-container",
1888
+ "section-team-preview",
1889
+ "section-testimonials",
1890
+ "section-video",
1891
+ "section-video-highlight"
1892
+ ]
1893
+ }
1894
+ ],
1895
+ "disabled": false,
1896
+ "omitted": false,
1897
+ "linkType": "Entry"
1898
+ },
1899
+ {
1900
+ "id": "httpStatusCode",
1901
+ "name": "HTTP status code",
1902
+ "type": "Symbol",
1903
+ "localized": false,
1904
+ "required": false,
1905
+ "validations": [
1906
+ {
1907
+ "in": [
1908
+ "301",
1909
+ "302",
1910
+ "307",
1911
+ "308"
1912
+ ]
1913
+ }
1914
+ ],
1915
+ "disabled": false,
1916
+ "omitted": false
1917
+ }
1918
+ ]
1919
+ },
1920
+ {
1921
+ "sys": {
1922
+ "space": {
1923
+ "sys": {
1924
+ "type": "Link",
1925
+ "linkType": "Space",
1926
+ "id": "343qxys30lid"
1927
+ }
1928
+ },
1929
+ "id": "redirect2",
1930
+ "type": "ContentType",
1931
+ "createdAt": "2018-02-23T14:44:31.550Z",
1932
+ "updatedAt": "2018-02-23T14:44:32.240Z",
1933
+ "createdBy": {
1934
+ "sys": {
1935
+ "type": "Link",
1936
+ "linkType": "User",
1937
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1938
+ }
1939
+ },
1940
+ "updatedBy": {
1941
+ "sys": {
1942
+ "type": "Link",
1943
+ "linkType": "User",
1944
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1945
+ }
1946
+ },
1947
+ "publishedCounter": 1,
1948
+ "version": 2,
1949
+ "publishedBy": {
1950
+ "sys": {
1951
+ "type": "Link",
1952
+ "linkType": "User",
1953
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
1954
+ }
1955
+ },
1956
+ "publishedVersion": 1,
1957
+ "firstPublishedAt": "2018-02-23T14:44:32.240Z",
1958
+ "publishedAt": "2018-02-23T14:44:32.240Z"
1959
+ },
1960
+ "displayField": "slug",
1961
+ "name": "Redirect2",
1962
+ "description": "",
1963
+ "fields": [
1964
+ {
1965
+ "id": "slug",
1966
+ "name": "Slug",
1967
+ "type": "Symbol",
1968
+ "localized": false,
1969
+ "required": true,
1970
+ "validations": [
1971
+ {
1972
+ "regexp": {
1973
+ "pattern": "^[a-z][a-z0-9_-]*$",
1974
+ "flags": ""
1975
+ },
1976
+ "message": "The slug can only contain lower case letters, numbers, underscores and dashes."
1977
+ }
1978
+ ],
1979
+ "disabled": false,
1980
+ "omitted": false
1981
+ },
1982
+ {
1983
+ "id": "url",
1984
+ "name": "Url",
1985
+ "type": "Symbol",
1986
+ "localized": false,
1987
+ "required": false,
1988
+ "validations": [
1989
+ {
1990
+ "regexp": {
1991
+ "pattern": "^(ftp|http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?$"
1992
+ }
1993
+ }
1994
+ ],
1995
+ "disabled": false,
1996
+ "omitted": false
1997
+ },
1998
+ {
1999
+ "id": "pageReference",
2000
+ "name": "Page Reference",
2001
+ "type": "Link",
2002
+ "localized": false,
2003
+ "required": false,
2004
+ "validations": [
2005
+ {
2006
+ "linkContentType": [
2007
+ "page"
2008
+ ]
2009
+ }
2010
+ ],
2011
+ "disabled": false,
2012
+ "omitted": false,
2013
+ "linkType": "Entry"
2014
+ }
2015
+ ]
2016
+ },
2017
+ {
2018
+ "sys": {
2019
+ "space": {
2020
+ "sys": {
2021
+ "type": "Link",
2022
+ "linkType": "Space",
2023
+ "id": "343qxys30lid"
2024
+ }
2025
+ },
2026
+ "id": "redirect2",
2027
+ "type": "ContentType",
2028
+ "createdAt": "2018-02-23T14:44:31.550Z",
2029
+ "updatedAt": "2018-02-23T14:44:32.240Z",
2030
+ "createdBy": {
2031
+ "sys": {
2032
+ "type": "Link",
2033
+ "linkType": "User",
2034
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2035
+ }
2036
+ },
2037
+ "updatedBy": {
2038
+ "sys": {
2039
+ "type": "Link",
2040
+ "linkType": "User",
2041
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2042
+ }
2043
+ },
2044
+ "publishedCounter": 1,
2045
+ "version": 2,
2046
+ "publishedBy": {
2047
+ "sys": {
2048
+ "type": "Link",
2049
+ "linkType": "User",
2050
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2051
+ }
2052
+ },
2053
+ "publishedVersion": 1,
2054
+ "firstPublishedAt": "2018-02-23T14:44:32.240Z",
2055
+ "publishedAt": "2018-02-23T14:44:32.240Z"
2056
+ },
2057
+ "displayField": "slug",
2058
+ "name": "Redirect2",
2059
+ "description": "",
2060
+ "fields": [
2061
+ {
2062
+ "id": "slug",
2063
+ "name": "Slug",
2064
+ "type": "Symbol",
2065
+ "localized": false,
2066
+ "required": true,
2067
+ "validations": [
2068
+ {
2069
+ "regexp": {
2070
+ "pattern": "^[a-z][a-z0-9_-]*$",
2071
+ "flags": ""
2072
+ },
2073
+ "message": "The slug can only contain lower case letters, numbers, underscores and dashes."
2074
+ }
2075
+ ],
2076
+ "disabled": false,
2077
+ "omitted": false
2078
+ },
2079
+ {
2080
+ "id": "url",
2081
+ "name": "Url",
2082
+ "type": "Symbol",
2083
+ "localized": false,
2084
+ "required": false,
2085
+ "validations": [
2086
+ {
2087
+ "regexp": {
2088
+ "pattern": "^(ftp|http|https):\\/\\/(\\w+:{0,1}\\w*@)?(\\S+)(:[0-9]+)?(\\/|\\/([\\w#!:.?+=&%@!\\-\\/]))?$"
2089
+ }
2090
+ }
2091
+ ],
2092
+ "disabled": false,
2093
+ "omitted": false
2094
+ },
2095
+ {
2096
+ "id": "pageReference",
2097
+ "name": "Page Reference",
2098
+ "type": "Link",
2099
+ "localized": false,
2100
+ "required": false,
2101
+ "validations": [
2102
+ {
2103
+ "linkContentType": [
2104
+ "page"
2105
+ ]
2106
+ }
2107
+ ],
2108
+ "disabled": false,
2109
+ "omitted": false,
2110
+ "linkType": "Entry"
2111
+ }
2112
+ ]
2113
+ },
2114
+ {
2115
+ "sys": {
2116
+ "space": {
2117
+ "sys": {
2118
+ "type": "Link",
2119
+ "linkType": "Space",
2120
+ "id": "343qxys30lid"
2121
+ }
2122
+ },
2123
+ "id": "dog",
2124
+ "type": "ContentType",
2125
+ "createdAt": "2018-02-22T21:12:46.243Z",
2126
+ "updatedAt": "2018-02-22T21:12:46.484Z",
2127
+ "createdBy": {
2128
+ "sys": {
2129
+ "type": "Link",
2130
+ "linkType": "User",
2131
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2132
+ }
2133
+ },
2134
+ "updatedBy": {
2135
+ "sys": {
2136
+ "type": "Link",
2137
+ "linkType": "User",
2138
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2139
+ }
2140
+ },
2141
+ "publishedCounter": 1,
2142
+ "version": 2,
2143
+ "publishedBy": {
2144
+ "sys": {
2145
+ "type": "Link",
2146
+ "linkType": "User",
2147
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2148
+ }
2149
+ },
2150
+ "publishedVersion": 1,
2151
+ "firstPublishedAt": "2018-02-22T21:12:46.484Z",
2152
+ "publishedAt": "2018-02-22T21:12:46.484Z"
2153
+ },
2154
+ "displayField": null,
2155
+ "name": "Dog",
2156
+ "description": null,
2157
+ "fields": [
2158
+ {
2159
+ "id": "name",
2160
+ "name": "Name",
2161
+ "type": "Symbol",
2162
+ "localized": false,
2163
+ "required": true,
2164
+ "validations": [],
2165
+ "disabled": false,
2166
+ "omitted": false
2167
+ }
2168
+ ]
2169
+ },
2170
+ {
2171
+ "sys": {
2172
+ "space": {
2173
+ "sys": {
2174
+ "type": "Link",
2175
+ "linkType": "Space",
2176
+ "id": "343qxys30lid"
2177
+ }
2178
+ },
2179
+ "id": "section-hero",
2180
+ "type": "ContentType",
2181
+ "createdAt": "2018-02-12T19:17:55.075Z",
2182
+ "updatedAt": "2018-02-12T19:48:08.620Z",
2183
+ "createdBy": {
2184
+ "sys": {
2185
+ "type": "Link",
2186
+ "linkType": "User",
2187
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2188
+ }
2189
+ },
2190
+ "updatedBy": {
2191
+ "sys": {
2192
+ "type": "Link",
2193
+ "linkType": "User",
2194
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2195
+ }
2196
+ },
2197
+ "publishedCounter": 6,
2198
+ "version": 12,
2199
+ "publishedBy": {
2200
+ "sys": {
2201
+ "type": "Link",
2202
+ "linkType": "User",
2203
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2204
+ }
2205
+ },
2206
+ "publishedVersion": 11,
2207
+ "firstPublishedAt": "2018-02-12T19:17:55.556Z",
2208
+ "publishedAt": "2018-02-12T19:48:08.620Z"
2209
+ },
2210
+ "displayField": "text",
2211
+ "name": "Section: Hero",
2212
+ "description": "",
2213
+ "fields": [
2214
+ {
2215
+ "id": "backgroundImage",
2216
+ "name": "Background Image",
2217
+ "type": "Link",
2218
+ "linkType": "Asset",
2219
+ "localized": false,
2220
+ "required": false,
2221
+ "validations": [],
2222
+ "disabled": false,
2223
+ "omitted": false
2224
+ },
2225
+ {
2226
+ "id": "text",
2227
+ "name": "Text",
2228
+ "type": "Symbol",
2229
+ "localized": false,
2230
+ "required": false,
2231
+ "validations": [],
2232
+ "disabled": false,
2233
+ "omitted": false
2234
+ },
2235
+ {
2236
+ "id": "primaryButton",
2237
+ "name": "Primary Button",
2238
+ "type": "Link",
2239
+ "validations": [
2240
+ {
2241
+ "linkContentType": [
2242
+ "menuButton"
2243
+ ]
2244
+ }
2245
+ ],
2246
+ "linkType": "Entry",
2247
+ "localized": false,
2248
+ "required": false,
2249
+ "disabled": false,
2250
+ "omitted": false
2251
+ },
2252
+ {
2253
+ "id": "secondaryButton",
2254
+ "name": "Secondary Button",
2255
+ "type": "Link",
2256
+ "validations": [
2257
+ {
2258
+ "linkContentType": [
2259
+ "menuButton"
2260
+ ]
2261
+ }
2262
+ ],
2263
+ "linkType": "Entry",
2264
+ "localized": false,
2265
+ "required": false,
2266
+ "disabled": false,
2267
+ "omitted": false
2268
+ },
2269
+ {
2270
+ "id": "style",
2271
+ "name": "Text",
2272
+ "type": "Symbol",
2273
+ "localized": false,
2274
+ "required": false,
2275
+ "validations": [],
2276
+ "disabled": false,
2277
+ "omitted": false
2278
+ }
2279
+ ]
2280
+ },
2281
+ {
2282
+ "sys": {
2283
+ "space": {
2284
+ "sys": {
2285
+ "type": "Link",
2286
+ "linkType": "Space",
2287
+ "id": "343qxys30lid"
2288
+ }
2289
+ },
2290
+ "id": "section-video-highlight",
2291
+ "type": "ContentType",
2292
+ "createdAt": "2018-02-12T19:17:55.075Z",
2293
+ "updatedAt": "2018-02-12T19:48:08.620Z",
2294
+ "createdBy": {
2295
+ "sys": {
2296
+ "type": "Link",
2297
+ "linkType": "User",
2298
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2299
+ }
2300
+ },
2301
+ "updatedBy": {
2302
+ "sys": {
2303
+ "type": "Link",
2304
+ "linkType": "User",
2305
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2306
+ }
2307
+ },
2308
+ "publishedCounter": 6,
2309
+ "version": 12,
2310
+ "publishedBy": {
2311
+ "sys": {
2312
+ "type": "Link",
2313
+ "linkType": "User",
2314
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2315
+ }
2316
+ },
2317
+ "publishedVersion": 11,
2318
+ "firstPublishedAt": "2018-02-12T19:17:55.556Z",
2319
+ "publishedAt": "2018-02-12T19:48:08.620Z"
2320
+ },
2321
+ "displayField": "title",
2322
+ "name": "Section: Video Highlight",
2323
+ "description": "",
2324
+ "fields": [
2325
+ {
2326
+ "id": "backgroundImage",
2327
+ "name": "Background Image",
2328
+ "type": "Link",
2329
+ "linkType": "Asset",
2330
+ "localized": false,
2331
+ "required": false,
2332
+ "validations": [],
2333
+ "disabled": false,
2334
+ "omitted": false
2335
+ },
2336
+ {
2337
+ "id": "tag",
2338
+ "name": "Tag",
2339
+ "type": "Symbol",
2340
+ "localized": false,
2341
+ "required": false,
2342
+ "validations": [],
2343
+ "disabled": false,
2344
+ "omitted": false
2345
+ },
2346
+ {
2347
+ "id": "title",
2348
+ "name": "Title",
2349
+ "type": "Symbol",
2350
+ "localized": false,
2351
+ "required": false,
2352
+ "validations": [],
2353
+ "disabled": false,
2354
+ "omitted": false
2355
+ },
2356
+ {
2357
+ "id": "subtext",
2358
+ "name": "subtext",
2359
+ "type": "Text",
2360
+ "localized": false,
2361
+ "required": false,
2362
+ "validations": [],
2363
+ "disabled": false,
2364
+ "omitted": false
2365
+ },
2366
+ {
2367
+ "id": "embedCode",
2368
+ "name": "Embed Code",
2369
+ "type": "Text",
2370
+ "localized": false,
2371
+ "required": false,
2372
+ "validations": [],
2373
+ "disabled": false,
2374
+ "omitted": false
2375
+ }
2376
+ ]
2377
+ },
2378
+ {
2379
+ "sys": {
2380
+ "space": {
2381
+ "sys": {
2382
+ "type": "Link",
2383
+ "linkType": "Space",
2384
+ "id": "7yx6ovlj39n5"
2385
+ }
2386
+ },
2387
+ "id": "section-featured-items",
2388
+ "type": "ContentType",
2389
+ "createdAt": "2018-04-16T18:37:19.820Z",
2390
+ "updatedAt": "2018-06-29T21:21:31.969Z",
2391
+ "environment": {
2392
+ "sys": {
2393
+ "id": "gburgett",
2394
+ "type": "Link",
2395
+ "linkType": "Environment"
2396
+ }
2397
+ },
2398
+ "createdBy": {
2399
+ "sys": {
2400
+ "type": "Link",
2401
+ "linkType": "User",
2402
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2403
+ }
2404
+ },
2405
+ "updatedBy": {
2406
+ "sys": {
2407
+ "type": "Link",
2408
+ "linkType": "User",
2409
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2410
+ }
2411
+ },
2412
+ "publishedCounter": 7,
2413
+ "version": 14,
2414
+ "publishedBy": {
2415
+ "sys": {
2416
+ "type": "Link",
2417
+ "linkType": "User",
2418
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2419
+ }
2420
+ },
2421
+ "publishedVersion": 13,
2422
+ "firstPublishedAt": "2018-04-16T18:37:20.134Z",
2423
+ "publishedAt": "2018-06-29T21:21:31.969Z"
2424
+ },
2425
+ "displayField": "internalTitle",
2426
+ "name": "Section: Featured Items",
2427
+ "description": "Display a row of cards",
2428
+ "fields": [
2429
+ {
2430
+ "id": "internalTitle",
2431
+ "name": "Internal Title (Contentful Only)",
2432
+ "type": "Symbol",
2433
+ "localized": false,
2434
+ "required": true,
2435
+ "validations": [],
2436
+ "disabled": false,
2437
+ "omitted": true
2438
+ },
2439
+ {
2440
+ "id": "title",
2441
+ "name": "Title",
2442
+ "type": "Symbol",
2443
+ "localized": true,
2444
+ "required": true,
2445
+ "validations": [
2446
+ {
2447
+ "size": {
2448
+ "max": 150
2449
+ }
2450
+ }
2451
+ ],
2452
+ "disabled": false,
2453
+ "omitted": false
2454
+ },
2455
+ {
2456
+ "id": "link",
2457
+ "name": "Link",
2458
+ "type": "Link",
2459
+ "localized": false,
2460
+ "required": true,
2461
+ "validations": [
2462
+ {
2463
+ "linkContentType": [
2464
+ "menuButton"
2465
+ ]
2466
+ }
2467
+ ],
2468
+ "disabled": false,
2469
+ "omitted": false,
2470
+ "linkType": "Entry"
2471
+ },
2472
+ {
2473
+ "id": "items",
2474
+ "name": "Items",
2475
+ "type": "Array",
2476
+ "localized": false,
2477
+ "required": false,
2478
+ "validations": [
2479
+ {
2480
+ "size": {
2481
+ "max": 4
2482
+ },
2483
+ "message": "Exceeded max number of items (4)."
2484
+ }
2485
+ ],
2486
+ "disabled": false,
2487
+ "omitted": false,
2488
+ "items": {
2489
+ "type": "Link",
2490
+ "validations": [
2491
+ {
2492
+ "linkContentType": [
2493
+ "page"
2494
+ ]
2495
+ }
2496
+ ],
2497
+ "linkType": "Entry"
2498
+ }
2499
+ }
2500
+ ]
2501
+ },
2502
+ {
2503
+ "sys": {
2504
+ "space": {
2505
+ "sys": {
2506
+ "type": "Link",
2507
+ "linkType": "Space",
2508
+ "id": "7yx6ovlj39n5"
2509
+ }
2510
+ },
2511
+ "id": "section-faq",
2512
+ "type": "ContentType",
2513
+ "createdAt": "2018-04-16T18:36:29.044Z",
2514
+ "updatedAt": "2018-06-29T21:20:38.916Z",
2515
+ "environment": {
2516
+ "sys": {
2517
+ "id": "gburgett",
2518
+ "type": "Link",
2519
+ "linkType": "Environment"
2520
+ }
2521
+ },
2522
+ "createdBy": {
2523
+ "sys": {
2524
+ "type": "Link",
2525
+ "linkType": "User",
2526
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2527
+ }
2528
+ },
2529
+ "updatedBy": {
2530
+ "sys": {
2531
+ "type": "Link",
2532
+ "linkType": "User",
2533
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2534
+ }
2535
+ },
2536
+ "publishedCounter": 7,
2537
+ "version": 14,
2538
+ "publishedBy": {
2539
+ "sys": {
2540
+ "type": "Link",
2541
+ "linkType": "User",
2542
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2543
+ }
2544
+ },
2545
+ "publishedVersion": 13,
2546
+ "firstPublishedAt": "2018-04-16T18:36:29.331Z",
2547
+ "publishedAt": "2018-06-29T21:20:38.916Z"
2548
+ },
2549
+ "displayField": "internalTitle",
2550
+ "name": "Section: FAQ",
2551
+ "description": "A FAQ Section contains a number of question and answer pairs (FAQs) curated by the administrator.",
2552
+ "fields": [
2553
+ {
2554
+ "id": "internalTitle",
2555
+ "name": "Internal Title (Contentful Only)",
2556
+ "type": "Symbol",
2557
+ "localized": false,
2558
+ "required": true,
2559
+ "validations": [],
2560
+ "disabled": false,
2561
+ "omitted": true
2562
+ },
2563
+ {
2564
+ "id": "name",
2565
+ "name": "Name",
2566
+ "type": "Symbol",
2567
+ "localized": false,
2568
+ "required": true,
2569
+ "validations": [
2570
+ {
2571
+ "unique": true
2572
+ }
2573
+ ],
2574
+ "disabled": false,
2575
+ "omitted": false
2576
+ },
2577
+ {
2578
+ "id": "text",
2579
+ "name": "Text",
2580
+ "type": "Text",
2581
+ "localized": false,
2582
+ "required": false,
2583
+ "validations": [],
2584
+ "disabled": false,
2585
+ "omitted": false
2586
+ },
2587
+ {
2588
+ "id": "actionButton",
2589
+ "name": "Action Button",
2590
+ "type": "Link",
2591
+ "localized": false,
2592
+ "required": false,
2593
+ "validations": [
2594
+ {
2595
+ "linkContentType": [
2596
+ "menuButton"
2597
+ ]
2598
+ }
2599
+ ],
2600
+ "disabled": false,
2601
+ "omitted": false,
2602
+ "linkType": "Entry"
2603
+ },
2604
+ {
2605
+ "id": "faqs",
2606
+ "name": "FAQs",
2607
+ "type": "Array",
2608
+ "localized": false,
2609
+ "required": false,
2610
+ "validations": [],
2611
+ "disabled": false,
2612
+ "omitted": false,
2613
+ "items": {
2614
+ "type": "Link",
2615
+ "validations": [
2616
+ {
2617
+ "linkContentType": [
2618
+ "faq"
2619
+ ]
2620
+ }
2621
+ ],
2622
+ "linkType": "Entry"
2623
+ }
2624
+ },
2625
+ {
2626
+ "id": "style",
2627
+ "name": "Style",
2628
+ "type": "Symbol",
2629
+ "localized": false,
2630
+ "required": false,
2631
+ "validations": [
2632
+ {
2633
+ "in": [
2634
+ "default",
2635
+ "no-overlap"
2636
+ ]
2637
+ }
2638
+ ],
2639
+ "disabled": false,
2640
+ "omitted": false
2641
+ }
2642
+ ]
2643
+ },
2644
+ {
2645
+ "sys": {
2646
+ "space": {
2647
+ "sys": {
2648
+ "type": "Link",
2649
+ "linkType": "Space",
2650
+ "id": "7yx6ovlj39n5"
2651
+ }
2652
+ },
2653
+ "id": "section-domain-object-header",
2654
+ "type": "ContentType",
2655
+ "createdAt": "2018-04-16T18:36:58.834Z",
2656
+ "updatedAt": "2018-06-29T21:20:46.989Z",
2657
+ "environment": {
2658
+ "sys": {
2659
+ "id": "gburgett",
2660
+ "type": "Link",
2661
+ "linkType": "Environment"
2662
+ }
2663
+ },
2664
+ "createdBy": {
2665
+ "sys": {
2666
+ "type": "Link",
2667
+ "linkType": "User",
2668
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2669
+ }
2670
+ },
2671
+ "updatedBy": {
2672
+ "sys": {
2673
+ "type": "Link",
2674
+ "linkType": "User",
2675
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2676
+ }
2677
+ },
2678
+ "publishedCounter": 3,
2679
+ "version": 6,
2680
+ "publishedBy": {
2681
+ "sys": {
2682
+ "type": "Link",
2683
+ "linkType": "User",
2684
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2685
+ }
2686
+ },
2687
+ "publishedVersion": 5,
2688
+ "firstPublishedAt": "2018-04-16T18:36:59.220Z",
2689
+ "publishedAt": "2018-06-29T21:20:46.989Z"
2690
+ },
2691
+ "displayField": "internalTitle",
2692
+ "name": "Section: Ministry or Conference Header",
2693
+ "description": "A Ministry or Conference Header section includes the Ministry or Conference's colors and logo, to be displayed at the top of a page related to that Ministry or Conference.",
2694
+ "fields": [
2695
+ {
2696
+ "id": "internalTitle",
2697
+ "name": "Internal Title (Contentful Only)",
2698
+ "type": "Symbol",
2699
+ "localized": false,
2700
+ "required": true,
2701
+ "validations": [],
2702
+ "disabled": false,
2703
+ "omitted": true
2704
+ },
2705
+ {
2706
+ "id": "name",
2707
+ "name": "Name",
2708
+ "type": "Symbol",
2709
+ "localized": false,
2710
+ "required": false,
2711
+ "validations": [],
2712
+ "disabled": false,
2713
+ "omitted": false
2714
+ },
2715
+ {
2716
+ "id": "domainObject",
2717
+ "name": "Ministry or Conference",
2718
+ "type": "Link",
2719
+ "localized": false,
2720
+ "required": true,
2721
+ "validations": [
2722
+ {
2723
+ "linkContentType": [
2724
+ "conference",
2725
+ "ministry"
2726
+ ]
2727
+ }
2728
+ ],
2729
+ "disabled": false,
2730
+ "omitted": false,
2731
+ "linkType": "Entry"
2732
+ },
2733
+ {
2734
+ "id": "secondaryNav",
2735
+ "name": "Secondary Menu",
2736
+ "type": "Link",
2737
+ "localized": false,
2738
+ "required": false,
2739
+ "validations": [
2740
+ {
2741
+ "linkContentType": [
2742
+ "menu"
2743
+ ]
2744
+ }
2745
+ ],
2746
+ "disabled": false,
2747
+ "omitted": false,
2748
+ "linkType": "Entry"
2749
+ }
2750
+ ]
2751
+ },
2752
+ {
2753
+ "sys": {
2754
+ "space": {
2755
+ "sys": {
2756
+ "type": "Link",
2757
+ "linkType": "Space",
2758
+ "id": "7yx6ovlj39n5"
2759
+ }
2760
+ },
2761
+ "id": "section-block-text",
2762
+ "type": "ContentType",
2763
+ "createdAt": "2018-04-16T18:36:52.993Z",
2764
+ "updatedAt": "2018-11-14T22:44:05.746Z",
2765
+ "environment": {
2766
+ "sys": {
2767
+ "id": "gburgett",
2768
+ "type": "Link",
2769
+ "linkType": "Environment"
2770
+ }
2771
+ },
2772
+ "createdBy": {
2773
+ "sys": {
2774
+ "type": "Link",
2775
+ "linkType": "User",
2776
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2777
+ }
2778
+ },
2779
+ "updatedBy": {
2780
+ "sys": {
2781
+ "type": "Link",
2782
+ "linkType": "User",
2783
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2784
+ }
2785
+ },
2786
+ "publishedCounter": 14,
2787
+ "version": 28,
2788
+ "publishedBy": {
2789
+ "sys": {
2790
+ "type": "Link",
2791
+ "linkType": "User",
2792
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2793
+ }
2794
+ },
2795
+ "publishedVersion": 27,
2796
+ "firstPublishedAt": "2018-04-16T18:36:53.212Z",
2797
+ "publishedAt": "2018-11-14T22:44:05.746Z"
2798
+ },
2799
+ "displayField": "internalTitle",
2800
+ "name": "Section: Block Text",
2801
+ "description": "Markdown free-text block",
2802
+ "fields": [
2803
+ {
2804
+ "id": "internalTitle",
2805
+ "name": "Internal Title",
2806
+ "type": "Symbol",
2807
+ "localized": false,
2808
+ "required": true,
2809
+ "validations": [],
2810
+ "disabled": false,
2811
+ "omitted": false
2812
+ },
2813
+ {
2814
+ "id": "bookmarkTitle",
2815
+ "name": "Bookmark Title",
2816
+ "type": "Symbol",
2817
+ "localized": false,
2818
+ "required": false,
2819
+ "validations": [],
2820
+ "disabled": false,
2821
+ "omitted": false
2822
+ },
2823
+ {
2824
+ "id": "body",
2825
+ "name": "Body",
2826
+ "type": "Text",
2827
+ "localized": false,
2828
+ "required": true,
2829
+ "validations": [],
2830
+ "disabled": false,
2831
+ "omitted": false
2832
+ }
2833
+ ]
2834
+ },
2835
+ {
2836
+ "sys": {
2837
+ "space": {
2838
+ "sys": {
2839
+ "type": "Link",
2840
+ "linkType": "Space",
2841
+ "id": "7yx6ovlj39n5"
2842
+ }
2843
+ },
2844
+ "id": "section-video",
2845
+ "type": "ContentType",
2846
+ "createdAt": "2018-05-18T19:51:12.942Z",
2847
+ "updatedAt": "2018-10-04T22:03:15.959Z",
2848
+ "environment": {
2849
+ "sys": {
2850
+ "id": "gburgett",
2851
+ "type": "Link",
2852
+ "linkType": "Environment"
2853
+ }
2854
+ },
2855
+ "createdBy": {
2856
+ "sys": {
2857
+ "type": "Link",
2858
+ "linkType": "User",
2859
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2860
+ }
2861
+ },
2862
+ "updatedBy": {
2863
+ "sys": {
2864
+ "type": "Link",
2865
+ "linkType": "User",
2866
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2867
+ }
2868
+ },
2869
+ "publishedCounter": 4,
2870
+ "version": 8,
2871
+ "publishedBy": {
2872
+ "sys": {
2873
+ "type": "Link",
2874
+ "linkType": "User",
2875
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2876
+ }
2877
+ },
2878
+ "publishedVersion": 7,
2879
+ "firstPublishedAt": "2018-05-18T19:51:13.083Z",
2880
+ "publishedAt": "2018-10-04T22:03:15.959Z"
2881
+ },
2882
+ "displayField": "internalTitle",
2883
+ "name": "Section: Video",
2884
+ "description": "Full width video with a title",
2885
+ "fields": [
2886
+ {
2887
+ "id": "internalTitle",
2888
+ "name": "Internal Title (Contentful Only)",
2889
+ "type": "Symbol",
2890
+ "localized": false,
2891
+ "required": true,
2892
+ "validations": [],
2893
+ "disabled": false,
2894
+ "omitted": true
2895
+ },
2896
+ {
2897
+ "id": "title",
2898
+ "name": "Title",
2899
+ "type": "Symbol",
2900
+ "localized": true,
2901
+ "required": false,
2902
+ "validations": [
2903
+ {
2904
+ "size": {
2905
+ "max": 255,
2906
+ "min": 0
2907
+ }
2908
+ }
2909
+ ],
2910
+ "disabled": false,
2911
+ "omitted": false
2912
+ },
2913
+ {
2914
+ "id": "embedCode",
2915
+ "name": "Embed Code",
2916
+ "type": "Text",
2917
+ "localized": false,
2918
+ "required": true,
2919
+ "validations": [],
2920
+ "disabled": false,
2921
+ "omitted": false
2922
+ },
2923
+ {
2924
+ "id": "style",
2925
+ "name": "Style",
2926
+ "type": "Symbol",
2927
+ "localized": false,
2928
+ "required": false,
2929
+ "validations": [
2930
+ {
2931
+ "in": [
2932
+ "off white",
2933
+ "default",
2934
+ "gray"
2935
+ ]
2936
+ }
2937
+ ],
2938
+ "disabled": false,
2939
+ "omitted": false
2940
+ }
2941
+ ]
2942
+ },
2943
+ {
2944
+ "sys": {
2945
+ "space": {
2946
+ "sys": {
2947
+ "type": "Link",
2948
+ "linkType": "Space",
2949
+ "id": "7yx6ovlj39n5"
2950
+ }
2951
+ },
2952
+ "id": "section-intro",
2953
+ "type": "ContentType",
2954
+ "createdAt": "2018-05-24T21:17:14.013Z",
2955
+ "updatedAt": "2018-06-29T21:21:48.323Z",
2956
+ "environment": {
2957
+ "sys": {
2958
+ "id": "gburgett",
2959
+ "type": "Link",
2960
+ "linkType": "Environment"
2961
+ }
2962
+ },
2963
+ "createdBy": {
2964
+ "sys": {
2965
+ "type": "Link",
2966
+ "linkType": "User",
2967
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
2968
+ }
2969
+ },
2970
+ "updatedBy": {
2971
+ "sys": {
2972
+ "type": "Link",
2973
+ "linkType": "User",
2974
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2975
+ }
2976
+ },
2977
+ "publishedCounter": 3,
2978
+ "version": 6,
2979
+ "publishedBy": {
2980
+ "sys": {
2981
+ "type": "Link",
2982
+ "linkType": "User",
2983
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
2984
+ }
2985
+ },
2986
+ "publishedVersion": 5,
2987
+ "firstPublishedAt": "2018-05-24T21:17:14.173Z",
2988
+ "publishedAt": "2018-06-29T21:21:48.323Z"
2989
+ },
2990
+ "displayField": "internalTitle",
2991
+ "name": "Section: Intro",
2992
+ "description": "",
2993
+ "fields": [
2994
+ {
2995
+ "id": "internalTitle",
2996
+ "name": "Internal Title (Contentful Only)",
2997
+ "type": "Symbol",
2998
+ "localized": false,
2999
+ "required": true,
3000
+ "validations": [],
3001
+ "disabled": false,
3002
+ "omitted": true
3003
+ },
3004
+ {
3005
+ "id": "intro",
3006
+ "name": "Intro",
3007
+ "type": "Text",
3008
+ "localized": false,
3009
+ "required": false,
3010
+ "validations": [],
3011
+ "disabled": false,
3012
+ "omitted": false
3013
+ },
3014
+ {
3015
+ "id": "testimonial",
3016
+ "name": "Testimonial",
3017
+ "type": "Link",
3018
+ "localized": false,
3019
+ "required": false,
3020
+ "validations": [
3021
+ {
3022
+ "linkContentType": [
3023
+ "testimonial"
3024
+ ]
3025
+ }
3026
+ ],
3027
+ "disabled": false,
3028
+ "omitted": false,
3029
+ "linkType": "Entry"
3030
+ },
3031
+ {
3032
+ "id": "testimonialStyle",
3033
+ "name": "Testimonial Style",
3034
+ "type": "Symbol",
3035
+ "localized": false,
3036
+ "required": false,
3037
+ "validations": [
3038
+ {
3039
+ "in": [
3040
+ "default",
3041
+ "dark"
3042
+ ]
3043
+ }
3044
+ ],
3045
+ "disabled": false,
3046
+ "omitted": false
3047
+ },
3048
+ {
3049
+ "id": "callToAction",
3050
+ "name": "Call To Action",
3051
+ "type": "Link",
3052
+ "localized": false,
3053
+ "required": false,
3054
+ "validations": [
3055
+ {
3056
+ "linkContentType": [
3057
+ "callToAction"
3058
+ ]
3059
+ }
3060
+ ],
3061
+ "disabled": false,
3062
+ "omitted": false,
3063
+ "linkType": "Entry"
3064
+ }
3065
+ ]
3066
+ },
3067
+ {
3068
+ "sys": {
3069
+ "space": {
3070
+ "sys": {
3071
+ "type": "Link",
3072
+ "linkType": "Space",
3073
+ "id": "7yx6ovlj39n5"
3074
+ }
3075
+ },
3076
+ "id": "callToAction",
3077
+ "type": "ContentType",
3078
+ "createdAt": "2018-04-16T18:36:31.886Z",
3079
+ "updatedAt": "2018-06-29T21:21:38.151Z",
3080
+ "environment": {
3081
+ "sys": {
3082
+ "id": "gburgett",
3083
+ "type": "Link",
3084
+ "linkType": "Environment"
3085
+ }
3086
+ },
3087
+ "createdBy": {
3088
+ "sys": {
3089
+ "type": "Link",
3090
+ "linkType": "User",
3091
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3092
+ }
3093
+ },
3094
+ "updatedBy": {
3095
+ "sys": {
3096
+ "type": "Link",
3097
+ "linkType": "User",
3098
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3099
+ }
3100
+ },
3101
+ "publishedCounter": 4,
3102
+ "version": 8,
3103
+ "publishedBy": {
3104
+ "sys": {
3105
+ "type": "Link",
3106
+ "linkType": "User",
3107
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3108
+ }
3109
+ },
3110
+ "publishedVersion": 7,
3111
+ "firstPublishedAt": "2018-04-16T18:36:32.126Z",
3112
+ "publishedAt": "2018-06-29T21:21:38.151Z"
3113
+ },
3114
+ "displayField": "internalTitle",
3115
+ "name": "Call To Action",
3116
+ "description": "A Call To Action draws the user's attention to a particular button that you want them to click on.",
3117
+ "fields": [
3118
+ {
3119
+ "id": "internalTitle",
3120
+ "name": "Internal Title (Contentful Only)",
3121
+ "type": "Symbol",
3122
+ "localized": false,
3123
+ "required": true,
3124
+ "validations": [],
3125
+ "disabled": false,
3126
+ "omitted": true
3127
+ },
3128
+ {
3129
+ "id": "title",
3130
+ "name": "Title",
3131
+ "type": "Symbol",
3132
+ "localized": false,
3133
+ "required": true,
3134
+ "validations": [],
3135
+ "disabled": false,
3136
+ "omitted": false
3137
+ },
3138
+ {
3139
+ "id": "text",
3140
+ "name": "Text",
3141
+ "type": "Text",
3142
+ "localized": false,
3143
+ "required": false,
3144
+ "validations": [],
3145
+ "disabled": false,
3146
+ "omitted": false
3147
+ },
3148
+ {
3149
+ "id": "style",
3150
+ "name": "Style",
3151
+ "type": "Symbol",
3152
+ "localized": false,
3153
+ "required": false,
3154
+ "validations": [
3155
+ {
3156
+ "in": [
3157
+ "default",
3158
+ "notification"
3159
+ ]
3160
+ }
3161
+ ],
3162
+ "disabled": false,
3163
+ "omitted": false
3164
+ },
3165
+ {
3166
+ "id": "actionButtons",
3167
+ "name": "Action Buttons",
3168
+ "type": "Array",
3169
+ "localized": false,
3170
+ "required": false,
3171
+ "validations": [],
3172
+ "disabled": false,
3173
+ "omitted": false,
3174
+ "items": {
3175
+ "type": "Link",
3176
+ "validations": [
3177
+ {
3178
+ "linkContentType": [
3179
+ "menuButton"
3180
+ ]
3181
+ }
3182
+ ],
3183
+ "linkType": "Entry"
3184
+ }
3185
+ }
3186
+ ]
3187
+ },
3188
+ {
3189
+ "sys": {
3190
+ "space": {
3191
+ "sys": {
3192
+ "type": "Link",
3193
+ "linkType": "Space",
3194
+ "id": "7yx6ovlj39n5"
3195
+ }
3196
+ },
3197
+ "id": "section-ministry-details",
3198
+ "type": "ContentType",
3199
+ "createdAt": "2018-04-16T18:37:43.385Z",
3200
+ "updatedAt": "2018-06-29T21:21:54.234Z",
3201
+ "environment": {
3202
+ "sys": {
3203
+ "id": "gburgett",
3204
+ "type": "Link",
3205
+ "linkType": "Environment"
3206
+ }
3207
+ },
3208
+ "createdBy": {
3209
+ "sys": {
3210
+ "type": "Link",
3211
+ "linkType": "User",
3212
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3213
+ }
3214
+ },
3215
+ "updatedBy": {
3216
+ "sys": {
3217
+ "type": "Link",
3218
+ "linkType": "User",
3219
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3220
+ }
3221
+ },
3222
+ "publishedCounter": 13,
3223
+ "version": 26,
3224
+ "publishedBy": {
3225
+ "sys": {
3226
+ "type": "Link",
3227
+ "linkType": "User",
3228
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3229
+ }
3230
+ },
3231
+ "publishedVersion": 25,
3232
+ "firstPublishedAt": "2018-04-16T18:37:43.712Z",
3233
+ "publishedAt": "2018-06-29T21:21:54.234Z"
3234
+ },
3235
+ "displayField": "internalTitle",
3236
+ "name": "Section: Ministry Details",
3237
+ "description": "A Ministry Details section provides additional information about the ministry, in long-form text and tabular format. Typically this appears directly following the Ministry Or Conference Header. An optional testimonial callout or call to action can be attached.",
3238
+ "fields": [
3239
+ {
3240
+ "id": "internalTitle",
3241
+ "name": "Internal Title (Contentful Only)",
3242
+ "type": "Symbol",
3243
+ "localized": false,
3244
+ "required": true,
3245
+ "validations": [],
3246
+ "disabled": false,
3247
+ "omitted": true
3248
+ },
3249
+ {
3250
+ "id": "detailedDescription",
3251
+ "name": "Detailed Description",
3252
+ "type": "Text",
3253
+ "localized": false,
3254
+ "required": false,
3255
+ "validations": [],
3256
+ "disabled": false,
3257
+ "omitted": false
3258
+ },
3259
+ {
3260
+ "id": "sampleMaterialsButton",
3261
+ "name": "Sample Materials Button",
3262
+ "type": "Link",
3263
+ "localized": false,
3264
+ "required": false,
3265
+ "validations": [
3266
+ {
3267
+ "linkContentType": [
3268
+ "menuButton"
3269
+ ]
3270
+ }
3271
+ ],
3272
+ "disabled": false,
3273
+ "omitted": false,
3274
+ "linkType": "Entry"
3275
+ },
3276
+ {
3277
+ "id": "message",
3278
+ "name": "Message",
3279
+ "type": "Link",
3280
+ "localized": false,
3281
+ "required": false,
3282
+ "validations": [
3283
+ {
3284
+ "linkContentType": [
3285
+ "callToAction"
3286
+ ]
3287
+ }
3288
+ ],
3289
+ "disabled": false,
3290
+ "omitted": false,
3291
+ "linkType": "Entry"
3292
+ },
3293
+ {
3294
+ "id": "domainObject",
3295
+ "name": "Ministry",
3296
+ "type": "Link",
3297
+ "localized": false,
3298
+ "required": true,
3299
+ "validations": [
3300
+ {
3301
+ "linkContentType": [
3302
+ "ministry"
3303
+ ]
3304
+ }
3305
+ ],
3306
+ "disabled": false,
3307
+ "omitted": false,
3308
+ "linkType": "Entry"
3309
+ }
3310
+ ]
3311
+ },
3312
+ {
3313
+ "sys": {
3314
+ "space": {
3315
+ "sys": {
3316
+ "type": "Link",
3317
+ "linkType": "Space",
3318
+ "id": "7yx6ovlj39n5"
3319
+ }
3320
+ },
3321
+ "id": "section-testimonials",
3322
+ "type": "ContentType",
3323
+ "createdAt": "2018-04-16T18:37:10.413Z",
3324
+ "updatedAt": "2018-06-29T21:20:51.338Z",
3325
+ "environment": {
3326
+ "sys": {
3327
+ "id": "gburgett",
3328
+ "type": "Link",
3329
+ "linkType": "Environment"
3330
+ }
3331
+ },
3332
+ "createdBy": {
3333
+ "sys": {
3334
+ "type": "Link",
3335
+ "linkType": "User",
3336
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3337
+ }
3338
+ },
3339
+ "updatedBy": {
3340
+ "sys": {
3341
+ "type": "Link",
3342
+ "linkType": "User",
3343
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3344
+ }
3345
+ },
3346
+ "publishedCounter": 4,
3347
+ "version": 8,
3348
+ "publishedBy": {
3349
+ "sys": {
3350
+ "type": "Link",
3351
+ "linkType": "User",
3352
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3353
+ }
3354
+ },
3355
+ "publishedVersion": 7,
3356
+ "firstPublishedAt": "2018-04-16T18:37:10.680Z",
3357
+ "publishedAt": "2018-06-29T21:20:51.338Z"
3358
+ },
3359
+ "displayField": "internalTitle",
3360
+ "name": "Section: Testimonials",
3361
+ "description": "A Testimonials section can show one or many Testimonials written by leaders, partners, or members who have participated in the Ministry or Conference.",
3362
+ "fields": [
3363
+ {
3364
+ "id": "internalTitle",
3365
+ "name": "Internal Title (Contentful Only)",
3366
+ "type": "Symbol",
3367
+ "localized": false,
3368
+ "required": true,
3369
+ "validations": [],
3370
+ "disabled": false,
3371
+ "omitted": true
3372
+ },
3373
+ {
3374
+ "id": "name",
3375
+ "name": "Section Name (contentful only)",
3376
+ "type": "Symbol",
3377
+ "localized": false,
3378
+ "required": true,
3379
+ "validations": [],
3380
+ "disabled": false,
3381
+ "omitted": false
3382
+ },
3383
+ {
3384
+ "id": "testimonials",
3385
+ "name": "Testimonials",
3386
+ "type": "Array",
3387
+ "localized": false,
3388
+ "required": true,
3389
+ "validations": [],
3390
+ "disabled": false,
3391
+ "omitted": false,
3392
+ "items": {
3393
+ "type": "Link",
3394
+ "validations": [
3395
+ {
3396
+ "linkContentType": [
3397
+ "testimonial"
3398
+ ]
3399
+ }
3400
+ ],
3401
+ "linkType": "Entry"
3402
+ }
3403
+ },
3404
+ {
3405
+ "id": "style",
3406
+ "name": "Style",
3407
+ "type": "Symbol",
3408
+ "localized": false,
3409
+ "required": false,
3410
+ "validations": [
3411
+ {
3412
+ "in": [
3413
+ "default",
3414
+ "jumbo"
3415
+ ]
3416
+ }
3417
+ ],
3418
+ "disabled": false,
3419
+ "omitted": false
3420
+ }
3421
+ ]
3422
+ },
3423
+ {
3424
+ "sys": {
3425
+ "space": {
3426
+ "sys": {
3427
+ "type": "Link",
3428
+ "linkType": "Space",
3429
+ "id": "7yx6ovlj39n5"
3430
+ }
3431
+ },
3432
+ "id": "section-partner-churches",
3433
+ "type": "ContentType",
3434
+ "createdAt": "2018-04-16T18:37:07.237Z",
3435
+ "updatedAt": "2018-06-29T21:19:54.179Z",
3436
+ "environment": {
3437
+ "sys": {
3438
+ "id": "gburgett",
3439
+ "type": "Link",
3440
+ "linkType": "Environment"
3441
+ }
3442
+ },
3443
+ "createdBy": {
3444
+ "sys": {
3445
+ "type": "Link",
3446
+ "linkType": "User",
3447
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3448
+ }
3449
+ },
3450
+ "updatedBy": {
3451
+ "sys": {
3452
+ "type": "Link",
3453
+ "linkType": "User",
3454
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3455
+ }
3456
+ },
3457
+ "publishedCounter": 3,
3458
+ "version": 6,
3459
+ "publishedBy": {
3460
+ "sys": {
3461
+ "type": "Link",
3462
+ "linkType": "User",
3463
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3464
+ }
3465
+ },
3466
+ "publishedVersion": 5,
3467
+ "firstPublishedAt": "2018-04-16T18:37:07.528Z",
3468
+ "publishedAt": "2018-06-29T21:19:54.179Z"
3469
+ },
3470
+ "displayField": "internalTitle",
3471
+ "name": "Section: Partner Churches",
3472
+ "description": "A Partner Churches section is used to display the logos of the partner churches participating in a particular Watermark ministry.",
3473
+ "fields": [
3474
+ {
3475
+ "id": "internalTitle",
3476
+ "name": "Internal Title (Contentful Only)",
3477
+ "type": "Symbol",
3478
+ "localized": false,
3479
+ "required": true,
3480
+ "validations": [],
3481
+ "disabled": false,
3482
+ "omitted": true
3483
+ },
3484
+ {
3485
+ "id": "tag",
3486
+ "name": "Tag",
3487
+ "type": "Symbol",
3488
+ "localized": false,
3489
+ "required": false,
3490
+ "validations": [],
3491
+ "disabled": false,
3492
+ "omitted": false
3493
+ },
3494
+ {
3495
+ "id": "text",
3496
+ "name": "Text",
3497
+ "type": "Text",
3498
+ "localized": false,
3499
+ "required": false,
3500
+ "validations": [],
3501
+ "disabled": false,
3502
+ "omitted": false
3503
+ },
3504
+ {
3505
+ "id": "featuredChurches",
3506
+ "name": "Featured Partner Churches",
3507
+ "type": "Array",
3508
+ "localized": false,
3509
+ "required": false,
3510
+ "validations": [],
3511
+ "disabled": false,
3512
+ "omitted": false,
3513
+ "items": {
3514
+ "type": "Link",
3515
+ "validations": [
3516
+ {
3517
+ "linkContentType": [
3518
+ "partnerChurch"
3519
+ ]
3520
+ }
3521
+ ],
3522
+ "linkType": "Entry"
3523
+ }
3524
+ }
3525
+ ]
3526
+ },
3527
+ {
3528
+ "sys": {
3529
+ "space": {
3530
+ "sys": {
3531
+ "type": "Link",
3532
+ "linkType": "Space",
3533
+ "id": "7yx6ovlj39n5"
3534
+ }
3535
+ },
3536
+ "id": "section-location-map",
3537
+ "type": "ContentType",
3538
+ "createdAt": "2018-06-06T21:00:27.182Z",
3539
+ "updatedAt": "2018-06-06T21:00:27.656Z",
3540
+ "environment": {
3541
+ "sys": {
3542
+ "id": "gburgett",
3543
+ "type": "Link",
3544
+ "linkType": "Environment"
3545
+ }
3546
+ },
3547
+ "createdBy": {
3548
+ "sys": {
3549
+ "type": "Link",
3550
+ "linkType": "User",
3551
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3552
+ }
3553
+ },
3554
+ "updatedBy": {
3555
+ "sys": {
3556
+ "type": "Link",
3557
+ "linkType": "User",
3558
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3559
+ }
3560
+ },
3561
+ "publishedCounter": 1,
3562
+ "version": 2,
3563
+ "publishedBy": {
3564
+ "sys": {
3565
+ "type": "Link",
3566
+ "linkType": "User",
3567
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3568
+ }
3569
+ },
3570
+ "publishedVersion": 1,
3571
+ "firstPublishedAt": "2018-06-06T21:00:27.656Z",
3572
+ "publishedAt": "2018-06-06T21:00:27.656Z"
3573
+ },
3574
+ "displayField": "internalTitle",
3575
+ "name": "Section: Location Map",
3576
+ "description": "List ministry locations and plot them on a map",
3577
+ "fields": [
3578
+ {
3579
+ "id": "internalTitle",
3580
+ "name": "Internal Title",
3581
+ "type": "Symbol",
3582
+ "localized": false,
3583
+ "required": true,
3584
+ "validations": [
3585
+ {
3586
+ "unique": true
3587
+ }
3588
+ ],
3589
+ "disabled": false,
3590
+ "omitted": false
3591
+ },
3592
+ {
3593
+ "id": "domainObject",
3594
+ "name": "Domain Object",
3595
+ "type": "Link",
3596
+ "localized": false,
3597
+ "required": true,
3598
+ "validations": [
3599
+ {
3600
+ "linkContentType": [
3601
+ "ministry"
3602
+ ]
3603
+ }
3604
+ ],
3605
+ "disabled": false,
3606
+ "omitted": false,
3607
+ "linkType": "Entry"
3608
+ }
3609
+ ]
3610
+ },
3611
+ {
3612
+ "sys": {
3613
+ "space": {
3614
+ "sys": {
3615
+ "type": "Link",
3616
+ "linkType": "Space",
3617
+ "id": "7yx6ovlj39n5"
3618
+ }
3619
+ },
3620
+ "id": "section-contact-us",
3621
+ "type": "ContentType",
3622
+ "createdAt": "2018-04-16T18:36:55.867Z",
3623
+ "updatedAt": "2018-09-20T21:44:10.239Z",
3624
+ "environment": {
3625
+ "sys": {
3626
+ "id": "gburgett",
3627
+ "type": "Link",
3628
+ "linkType": "Environment"
3629
+ }
3630
+ },
3631
+ "createdBy": {
3632
+ "sys": {
3633
+ "type": "Link",
3634
+ "linkType": "User",
3635
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3636
+ }
3637
+ },
3638
+ "updatedBy": {
3639
+ "sys": {
3640
+ "type": "Link",
3641
+ "linkType": "User",
3642
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3643
+ }
3644
+ },
3645
+ "publishedCounter": 7,
3646
+ "version": 14,
3647
+ "publishedBy": {
3648
+ "sys": {
3649
+ "type": "Link",
3650
+ "linkType": "User",
3651
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3652
+ }
3653
+ },
3654
+ "publishedVersion": 13,
3655
+ "firstPublishedAt": "2018-04-16T18:36:56.095Z",
3656
+ "publishedAt": "2018-09-20T21:44:10.239Z"
3657
+ },
3658
+ "displayField": "internalTitle",
3659
+ "name": "Section: Contact Us",
3660
+ "description": "A Contact Us section contains a Form with several Form Fields. The responses to the form will be collected and provided to the appropriate administrator.",
3661
+ "fields": [
3662
+ {
3663
+ "id": "internalTitle",
3664
+ "name": "Internal Title (Contentful Only)",
3665
+ "type": "Symbol",
3666
+ "localized": false,
3667
+ "required": true,
3668
+ "validations": [],
3669
+ "disabled": false,
3670
+ "omitted": true
3671
+ },
3672
+ {
3673
+ "id": "text",
3674
+ "name": "Text",
3675
+ "type": "Text",
3676
+ "localized": false,
3677
+ "required": true,
3678
+ "validations": [],
3679
+ "disabled": false,
3680
+ "omitted": false
3681
+ },
3682
+ {
3683
+ "id": "fields",
3684
+ "name": "Fields",
3685
+ "type": "Array",
3686
+ "localized": false,
3687
+ "required": true,
3688
+ "validations": [],
3689
+ "disabled": false,
3690
+ "omitted": false,
3691
+ "items": {
3692
+ "type": "Link",
3693
+ "validations": [
3694
+ {
3695
+ "linkContentType": [
3696
+ "formField"
3697
+ ]
3698
+ }
3699
+ ],
3700
+ "linkType": "Entry"
3701
+ }
3702
+ },
3703
+ {
3704
+ "id": "submitButtonText",
3705
+ "name": "Submit Button Text",
3706
+ "type": "Symbol",
3707
+ "localized": false,
3708
+ "required": false,
3709
+ "validations": [],
3710
+ "disabled": false,
3711
+ "omitted": false
3712
+ },
3713
+ {
3714
+ "id": "notificationEmail",
3715
+ "name": "NotificationEmail",
3716
+ "type": "Symbol",
3717
+ "localized": false,
3718
+ "required": true,
3719
+ "validations": [
3720
+ {
3721
+ "regexp": {
3722
+ "pattern": "^([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5})$",
3723
+ "flags": null
3724
+ },
3725
+ "message": "Must be a valid email address."
3726
+ }
3727
+ ],
3728
+ "disabled": false,
3729
+ "omitted": false
3730
+ }
3731
+ ]
3732
+ },
3733
+ {
3734
+ "sys": {
3735
+ "space": {
3736
+ "sys": {
3737
+ "type": "Link",
3738
+ "linkType": "Space",
3739
+ "id": "7yx6ovlj39n5"
3740
+ }
3741
+ },
3742
+ "id": "section-resource-list",
3743
+ "type": "ContentType",
3744
+ "createdAt": "2018-05-18T20:31:46.321Z",
3745
+ "updatedAt": "2018-06-29T21:20:56.249Z",
3746
+ "environment": {
3747
+ "sys": {
3748
+ "id": "gburgett",
3749
+ "type": "Link",
3750
+ "linkType": "Environment"
3751
+ }
3752
+ },
3753
+ "createdBy": {
3754
+ "sys": {
3755
+ "type": "Link",
3756
+ "linkType": "User",
3757
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3758
+ }
3759
+ },
3760
+ "updatedBy": {
3761
+ "sys": {
3762
+ "type": "Link",
3763
+ "linkType": "User",
3764
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3765
+ }
3766
+ },
3767
+ "publishedCounter": 3,
3768
+ "version": 6,
3769
+ "publishedBy": {
3770
+ "sys": {
3771
+ "type": "Link",
3772
+ "linkType": "User",
3773
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3774
+ }
3775
+ },
3776
+ "publishedVersion": 5,
3777
+ "firstPublishedAt": "2018-05-18T20:31:46.427Z",
3778
+ "publishedAt": "2018-06-29T21:20:56.249Z"
3779
+ },
3780
+ "displayField": "internalTitle",
3781
+ "name": "Section: Resource List",
3782
+ "description": "",
3783
+ "fields": [
3784
+ {
3785
+ "id": "internalTitle",
3786
+ "name": "Internal Title (Contentful Only)",
3787
+ "type": "Symbol",
3788
+ "localized": false,
3789
+ "required": true,
3790
+ "validations": [],
3791
+ "disabled": false,
3792
+ "omitted": true
3793
+ },
3794
+ {
3795
+ "id": "name",
3796
+ "name": "Name (contentful only)",
3797
+ "type": "Symbol",
3798
+ "localized": false,
3799
+ "required": true,
3800
+ "validations": [],
3801
+ "disabled": false,
3802
+ "omitted": false
3803
+ },
3804
+ {
3805
+ "id": "domainObject",
3806
+ "name": "Ministry Or Conference",
3807
+ "type": "Link",
3808
+ "localized": false,
3809
+ "required": false,
3810
+ "validations": [
3811
+ {
3812
+ "linkContentType": [
3813
+ "conference",
3814
+ "ministry"
3815
+ ]
3816
+ }
3817
+ ],
3818
+ "disabled": false,
3819
+ "omitted": false,
3820
+ "linkType": "Entry"
3821
+ }
3822
+ ]
3823
+ },
3824
+ {
3825
+ "sys": {
3826
+ "space": {
3827
+ "sys": {
3828
+ "type": "Link",
3829
+ "linkType": "Space",
3830
+ "id": "7yx6ovlj39n5"
3831
+ }
3832
+ },
3833
+ "id": "section-product-list",
3834
+ "type": "ContentType",
3835
+ "createdAt": "2018-05-24T19:33:27.211Z",
3836
+ "updatedAt": "2018-06-29T21:21:47.388Z",
3837
+ "environment": {
3838
+ "sys": {
3839
+ "id": "gburgett",
3840
+ "type": "Link",
3841
+ "linkType": "Environment"
3842
+ }
3843
+ },
3844
+ "createdBy": {
3845
+ "sys": {
3846
+ "type": "Link",
3847
+ "linkType": "User",
3848
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3849
+ }
3850
+ },
3851
+ "updatedBy": {
3852
+ "sys": {
3853
+ "type": "Link",
3854
+ "linkType": "User",
3855
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3856
+ }
3857
+ },
3858
+ "publishedCounter": 3,
3859
+ "version": 6,
3860
+ "publishedBy": {
3861
+ "sys": {
3862
+ "type": "Link",
3863
+ "linkType": "User",
3864
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3865
+ }
3866
+ },
3867
+ "publishedVersion": 5,
3868
+ "firstPublishedAt": "2018-05-24T19:33:27.427Z",
3869
+ "publishedAt": "2018-06-29T21:21:47.388Z"
3870
+ },
3871
+ "displayField": "internalTitle",
3872
+ "name": "Section: Shopify Product List",
3873
+ "description": "The Shopify Product List displays products that are available for purchase via Shopify.",
3874
+ "fields": [
3875
+ {
3876
+ "id": "internalTitle",
3877
+ "name": "Internal Title (Contentful Only)",
3878
+ "type": "Symbol",
3879
+ "localized": false,
3880
+ "required": true,
3881
+ "validations": [],
3882
+ "disabled": false,
3883
+ "omitted": true
3884
+ },
3885
+ {
3886
+ "id": "collectionId",
3887
+ "name": "Shopify Collection ID",
3888
+ "type": "Symbol",
3889
+ "localized": false,
3890
+ "required": true,
3891
+ "validations": [],
3892
+ "disabled": false,
3893
+ "omitted": false
3894
+ }
3895
+ ]
3896
+ },
3897
+ {
3898
+ "sys": {
3899
+ "space": {
3900
+ "sys": {
3901
+ "type": "Link",
3902
+ "linkType": "Space",
3903
+ "id": "7yx6ovlj39n5"
3904
+ }
3905
+ },
3906
+ "id": "conference",
3907
+ "type": "ContentType",
3908
+ "createdAt": "2018-04-16T18:36:18.741Z",
3909
+ "updatedAt": "2018-06-29T21:49:32.561Z",
3910
+ "environment": {
3911
+ "sys": {
3912
+ "id": "gburgett",
3913
+ "type": "Link",
3914
+ "linkType": "Environment"
3915
+ }
3916
+ },
3917
+ "createdBy": {
3918
+ "sys": {
3919
+ "type": "Link",
3920
+ "linkType": "User",
3921
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
3922
+ }
3923
+ },
3924
+ "updatedBy": {
3925
+ "sys": {
3926
+ "type": "Link",
3927
+ "linkType": "User",
3928
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3929
+ }
3930
+ },
3931
+ "publishedCounter": 11,
3932
+ "version": 22,
3933
+ "publishedBy": {
3934
+ "sys": {
3935
+ "type": "Link",
3936
+ "linkType": "User",
3937
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
3938
+ }
3939
+ },
3940
+ "publishedVersion": 21,
3941
+ "firstPublishedAt": "2018-04-16T18:36:19.089Z",
3942
+ "publishedAt": "2018-06-29T21:49:32.561Z"
3943
+ },
3944
+ "displayField": "internalTitle",
3945
+ "name": "Conference",
3946
+ "description": null,
3947
+ "fields": [
3948
+ {
3949
+ "id": "internalTitle",
3950
+ "name": "Internal Title (Contentful Only)",
3951
+ "type": "Symbol",
3952
+ "localized": false,
3953
+ "required": true,
3954
+ "validations": [],
3955
+ "disabled": false,
3956
+ "omitted": true
3957
+ },
3958
+ {
3959
+ "id": "title",
3960
+ "name": "Title",
3961
+ "type": "Symbol",
3962
+ "localized": false,
3963
+ "required": true,
3964
+ "validations": [
3965
+ {
3966
+ "unique": true
3967
+ }
3968
+ ],
3969
+ "disabled": false,
3970
+ "omitted": false
3971
+ },
3972
+ {
3973
+ "id": "abstractTitle",
3974
+ "name": "Short Description",
3975
+ "type": "Symbol",
3976
+ "localized": false,
3977
+ "required": true,
3978
+ "validations": [],
3979
+ "disabled": false,
3980
+ "omitted": false
3981
+ },
3982
+ {
3983
+ "id": "thumbnail",
3984
+ "name": "Logo Only (Thumbnail)",
3985
+ "type": "Link",
3986
+ "localized": false,
3987
+ "required": false,
3988
+ "validations": [
3989
+ {
3990
+ "linkMimetypeGroup": [
3991
+ "image"
3992
+ ]
3993
+ },
3994
+ {
3995
+ "assetImageDimensions": {
3996
+ "width": {
3997
+ "min": 400,
3998
+ "max": 400
3999
+ },
4000
+ "height": {
4001
+ "min": 400,
4002
+ "max": 400
4003
+ }
4004
+ },
4005
+ "message": "The thumbnail image must be exactly 400 by 400 pixels."
4006
+ }
4007
+ ],
4008
+ "disabled": false,
4009
+ "omitted": false,
4010
+ "linkType": "Asset"
4011
+ },
4012
+ {
4013
+ "id": "logo",
4014
+ "name": "Logo with Name",
4015
+ "type": "Link",
4016
+ "localized": false,
4017
+ "required": false,
4018
+ "validations": [
4019
+ {
4020
+ "linkMimetypeGroup": [
4021
+ "image"
4022
+ ]
4023
+ },
4024
+ {
4025
+ "assetImageDimensions": {
4026
+ "width": {
4027
+ "min": 400,
4028
+ "max": 400
4029
+ },
4030
+ "height": {
4031
+ "min": 400,
4032
+ "max": 400
4033
+ }
4034
+ },
4035
+ "message": "The logo image must be exactly 400 by 400 pixels."
4036
+ }
4037
+ ],
4038
+ "disabled": false,
4039
+ "omitted": false,
4040
+ "linkType": "Asset"
4041
+ },
4042
+ {
4043
+ "id": "backgroundColor",
4044
+ "name": "Background Color",
4045
+ "type": "Symbol",
4046
+ "localized": false,
4047
+ "required": true,
4048
+ "validations": [
4049
+ {
4050
+ "regexp": {
4051
+ "pattern": "#([a-f]|[A-F]|[0-9]){3}(([a-f]|[A-F]|[0-9]){3})?\\b"
4052
+ },
4053
+ "message": "Must be a hex value (ex: '#EEE' or '#FFAA55')"
4054
+ }
4055
+ ],
4056
+ "disabled": false,
4057
+ "omitted": false
4058
+ },
4059
+ {
4060
+ "id": "foregroundColor",
4061
+ "name": "Foreground Color",
4062
+ "type": "Symbol",
4063
+ "localized": false,
4064
+ "required": true,
4065
+ "validations": [
4066
+ {
4067
+ "regexp": {
4068
+ "pattern": "#([a-f]|[A-F]|[0-9]){3}(([a-f]|[A-F]|[0-9]){3})?\\b",
4069
+ "flags": ""
4070
+ },
4071
+ "message": "Must be a Hex value (ex: '#EEE' or '#FFAA55')"
4072
+ }
4073
+ ],
4074
+ "disabled": false,
4075
+ "omitted": false
4076
+ },
4077
+ {
4078
+ "id": "homepage",
4079
+ "name": "Homepage",
4080
+ "type": "Link",
4081
+ "localized": false,
4082
+ "required": true,
4083
+ "validations": [
4084
+ {
4085
+ "linkContentType": [
4086
+ "page"
4087
+ ]
4088
+ }
4089
+ ],
4090
+ "disabled": false,
4091
+ "omitted": false,
4092
+ "linkType": "Entry"
4093
+ },
4094
+ {
4095
+ "id": "tags",
4096
+ "name": "Tags",
4097
+ "type": "Array",
4098
+ "localized": false,
4099
+ "required": false,
4100
+ "validations": [],
4101
+ "disabled": false,
4102
+ "omitted": false,
4103
+ "items": {
4104
+ "type": "Symbol",
4105
+ "validations": []
4106
+ }
4107
+ }
4108
+ ]
4109
+ },
4110
+ {
4111
+ "sys": {
4112
+ "space": {
4113
+ "sys": {
4114
+ "type": "Link",
4115
+ "linkType": "Space",
4116
+ "id": "7yx6ovlj39n5"
4117
+ }
4118
+ },
4119
+ "id": "section-image-gallery",
4120
+ "type": "ContentType",
4121
+ "createdAt": "2018-04-16T18:37:02.151Z",
4122
+ "updatedAt": "2018-06-29T21:21:53.328Z",
4123
+ "environment": {
4124
+ "sys": {
4125
+ "id": "gburgett",
4126
+ "type": "Link",
4127
+ "linkType": "Environment"
4128
+ }
4129
+ },
4130
+ "createdBy": {
4131
+ "sys": {
4132
+ "type": "Link",
4133
+ "linkType": "User",
4134
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
4135
+ }
4136
+ },
4137
+ "updatedBy": {
4138
+ "sys": {
4139
+ "type": "Link",
4140
+ "linkType": "User",
4141
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
4142
+ }
4143
+ },
4144
+ "publishedCounter": 5,
4145
+ "version": 10,
4146
+ "publishedBy": {
4147
+ "sys": {
4148
+ "type": "Link",
4149
+ "linkType": "User",
4150
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
4151
+ }
4152
+ },
4153
+ "publishedVersion": 9,
4154
+ "firstPublishedAt": "2018-04-16T18:37:02.428Z",
4155
+ "publishedAt": "2018-06-29T21:21:53.328Z"
4156
+ },
4157
+ "displayField": "internalTitle",
4158
+ "name": "Section: Image Gallery",
4159
+ "description": "An Image Gallery Section displays a rotating gallery of severalimages in a horizontal row on the page.",
4160
+ "fields": [
4161
+ {
4162
+ "id": "internalTitle",
4163
+ "name": "Internal Title (Contentful Only)",
4164
+ "type": "Symbol",
4165
+ "localized": false,
4166
+ "required": true,
4167
+ "validations": [],
4168
+ "disabled": false,
4169
+ "omitted": true
4170
+ },
4171
+ {
4172
+ "id": "images",
4173
+ "name": "Images",
4174
+ "type": "Array",
4175
+ "localized": false,
4176
+ "required": false,
4177
+ "validations": [],
4178
+ "disabled": false,
4179
+ "omitted": false,
4180
+ "items": {
4181
+ "type": "Link",
4182
+ "validations": [
4183
+ {
4184
+ "linkMimetypeGroup": [
4185
+ "image"
4186
+ ]
4187
+ },
4188
+ {
4189
+ "assetImageDimensions": {
4190
+ "width": {
4191
+ "min": 1000
4192
+ },
4193
+ "height": {}
4194
+ }
4195
+ }
4196
+ ],
4197
+ "linkType": "Asset"
4198
+ }
4199
+ }
4200
+ ]
4201
+ },
4202
+ {
4203
+ "sys": {
4204
+ "space": {
4205
+ "sys": {
4206
+ "type": "Link",
4207
+ "linkType": "Space",
4208
+ "id": "7yx6ovlj39n5"
4209
+ }
4210
+ },
4211
+ "id": "partnerChurch",
4212
+ "type": "ContentType",
4213
+ "createdAt": "2018-04-16T18:36:48.783Z",
4214
+ "updatedAt": "2018-06-29T21:20:36.237Z",
4215
+ "environment": {
4216
+ "sys": {
4217
+ "id": "gburgett",
4218
+ "type": "Link",
4219
+ "linkType": "Environment"
4220
+ }
4221
+ },
4222
+ "createdBy": {
4223
+ "sys": {
4224
+ "type": "Link",
4225
+ "linkType": "User",
4226
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
4227
+ }
4228
+ },
4229
+ "updatedBy": {
4230
+ "sys": {
4231
+ "type": "Link",
4232
+ "linkType": "User",
4233
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
4234
+ }
4235
+ },
4236
+ "publishedCounter": 3,
4237
+ "version": 6,
4238
+ "publishedBy": {
4239
+ "sys": {
4240
+ "type": "Link",
4241
+ "linkType": "User",
4242
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
4243
+ }
4244
+ },
4245
+ "publishedVersion": 5,
4246
+ "firstPublishedAt": "2018-04-16T18:36:50.310Z",
4247
+ "publishedAt": "2018-06-29T21:20:36.237Z"
4248
+ },
4249
+ "displayField": "internalTitle",
4250
+ "name": "Partner Church",
4251
+ "description": "A Partner Church represents a church which offers one or more Watermark ministries or classes.",
4252
+ "fields": [
4253
+ {
4254
+ "id": "internalTitle",
4255
+ "name": "Internal Title (Contentful Only)",
4256
+ "type": "Symbol",
4257
+ "localized": false,
4258
+ "required": true,
4259
+ "validations": [],
4260
+ "disabled": false,
4261
+ "omitted": true
4262
+ },
4263
+ {
4264
+ "id": "name",
4265
+ "name": "Name",
4266
+ "type": "Symbol",
4267
+ "localized": false,
4268
+ "required": true,
4269
+ "validations": [],
4270
+ "disabled": false,
4271
+ "omitted": false
4272
+ },
4273
+ {
4274
+ "id": "logo",
4275
+ "name": "Logo",
4276
+ "type": "Link",
4277
+ "localized": false,
4278
+ "required": false,
4279
+ "validations": [
4280
+ {
4281
+ "linkMimetypeGroup": [
4282
+ "image"
4283
+ ]
4284
+ }
4285
+ ],
4286
+ "disabled": false,
4287
+ "omitted": false,
4288
+ "linkType": "Asset"
4289
+ }
4290
+ ]
4291
+ },
4292
+ {
4293
+ "sys": {
4294
+ "space": {
4295
+ "sys": {
4296
+ "type": "Link",
4297
+ "linkType": "Space",
4298
+ "id": "7yx6ovlj39n5"
4299
+ }
4300
+ },
4301
+ "id": "formField",
4302
+ "type": "ContentType",
4303
+ "createdAt": "2018-04-16T18:36:38.985Z",
4304
+ "updatedAt": "2018-06-29T21:21:26.394Z",
4305
+ "environment": {
4306
+ "sys": {
4307
+ "id": "gburgett",
4308
+ "type": "Link",
4309
+ "linkType": "Environment"
4310
+ }
4311
+ },
4312
+ "createdBy": {
4313
+ "sys": {
4314
+ "type": "Link",
4315
+ "linkType": "User",
4316
+ "id": "0SUbYs2vZlXjVR6bH6o83O"
4317
+ }
4318
+ },
4319
+ "updatedBy": {
4320
+ "sys": {
4321
+ "type": "Link",
4322
+ "linkType": "User",
4323
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
4324
+ }
4325
+ },
4326
+ "publishedCounter": 4,
4327
+ "version": 8,
4328
+ "publishedBy": {
4329
+ "sys": {
4330
+ "type": "Link",
4331
+ "linkType": "User",
4332
+ "id": "2Rw3pZANDXJEtKNoPuE40I"
4333
+ }
4334
+ },
4335
+ "publishedVersion": 7,
4336
+ "firstPublishedAt": "2018-04-16T18:36:39.606Z",
4337
+ "publishedAt": "2018-06-29T21:21:26.394Z"
4338
+ },
4339
+ "displayField": "internalTitle",
4340
+ "name": "Form Field",
4341
+ "description": "A Form Field represents a piece of information you want to collect from a user via a Form.",
4342
+ "fields": [
4343
+ {
4344
+ "id": "internalTitle",
4345
+ "name": "Internal Title (Contentful Only)",
4346
+ "type": "Symbol",
4347
+ "localized": false,
4348
+ "required": true,
4349
+ "validations": [],
4350
+ "disabled": false,
4351
+ "omitted": true
4352
+ },
4353
+ {
4354
+ "id": "title",
4355
+ "name": "Title",
4356
+ "type": "Symbol",
4357
+ "localized": false,
4358
+ "required": false,
4359
+ "validations": [],
4360
+ "disabled": false,
4361
+ "omitted": false
4362
+ },
4363
+ {
4364
+ "id": "inputType",
4365
+ "name": "Input Type",
4366
+ "type": "Symbol",
4367
+ "localized": false,
4368
+ "required": true,
4369
+ "validations": [
4370
+ {
4371
+ "in": [
4372
+ "text",
4373
+ "email",
4374
+ "textarea"
4375
+ ]
4376
+ }
4377
+ ],
4378
+ "disabled": false,
4379
+ "omitted": false
4380
+ }
4381
+ ]
4382
+ }
4383
+ ]
4384
+ }