-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathschemas.yaml
More file actions
7483 lines (7355 loc) · 208 KB
/
schemas.yaml
File metadata and controls
7483 lines (7355 loc) · 208 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
BrandProfile:
type: object
description: The brand voice profile generated by the brand-profile agent. Note this schema contains a representative subset; additional fields may be added over time.
properties:
version:
type: integer
description: Incrementing version whenever the profile changes
example: 3
updatedAt:
$ref: '#/DateTime'
description: ISO timestamp for the last update
contentHash:
type: string
description: Deterministic hash of the profile content used for change detection
summary:
type: string
description: Short description of the profile or summary text
discovery:
type: object
additionalProperties: true
description: Discovery data such as site coverage, URL structure, analyzed sections, etc.
example:
url_structure:
main_sections:
- '/'
- '/products'
clustering:
type: object
additionalProperties: true
description: Voice clustering output.
competitiveContext:
type: object
additionalProperties: true
description: Competitive positioning and comparative insights.
mainProfile:
type: object
additionalProperties: true
description: Primary brand voice profile (tone, vocabulary, guidelines, etc.).
subBrands:
type: array
description: Optional sub-brand voice profiles.
items:
type: object
additionalProperties: true
metadata:
type: object
additionalProperties: true
description: Free-form metadata bucket for future extensions.
BotBlockerResult:
type: object
description: Result of bot blocker detection for a site. Indicates whether the site is crawlable by bots, what type of blocking was detected (if any), and the confidence level of the detection.
properties:
crawlable:
type: boolean
description: Whether the site can be crawled by bots
example: false
type:
type: string
description: The type of bot blocker detected or infrastructure present
enum:
- 'cloudflare'
- 'imperva'
- 'akamai'
- 'fastly'
- 'cloudfront'
- 'cloudflare-allowed'
- 'imperva-allowed'
- 'akamai-allowed'
- 'fastly-allowed'
- 'cloudfront-allowed'
- 'http2-block'
- 'none'
- 'unknown'
example: 'cloudflare'
confidence:
type: number
format: float
minimum: 0
maximum: 1
description: Confidence level of the detection (0.0 to 1.0). Values >= 0.95 indicate reliable detection. Lower values suggest uncertain situations.
example: 0.99
reason:
type: string
description: Optional reason or additional context for the detection result
example: 'HTTP 403 Forbidden - access denied'
required:
- crawlable
- type
- confidence
Id:
type: string
format: uuid
readOnly: true
example: '123e4567-e89b-12d3-a456-426614174000'
BrandId:
type: string
format: urn
readOnly: true
example: 'urn:aaid:sc:VA6C2:e64205e7-13ca-51e8-8b83-8d8ef1ebf911'
DateTime:
type: string
format: date-time
example: '2024-01-19T14:20:30Z'
DeliveryType:
type: string
enum:
- 'aem_edge'
- 'aem_cs'
- 'other'
example: 'aem_edge'
DeliveryConfig:
type: object
properties:
programId:
description: The program ID
type: string
example: '12652'
environmentId:
description: The environment ID
type: string
example: '16854'
authorURL:
description: The author URL
type: string
format: url
example: 'https://author-p12652-e16854-cmstg.adobeaemcloud.com/'
siteId:
description: The site ID
type: string
example: '1234'
additionalProperties: true
AuditType:
type: string
enum:
- '404'
- 'apex'
- 'cwv'
- 'lhs'
- 'lhs-desktop'
- 'lhs-mobile'
- 'broken-backlinks'
- 'canonical'
- 'sitemap'
- 'structured-data'
- 'costs'
- 'meta-tags'
- 'product-metatags'
- 'commerce-product-enrichments'
- 'broken-internal-links'
- 'experimentation-opportunities'
- 'llm-error-pages'
- 'prerender'
- 'related-urls'
- 'summarization'
- 'faqs'
example: 'cwv'
URL:
type: string
format: url
example: 'https://www.example.com'
Domain:
type: string
format: domain
example: 'www.example.com'
ScopeName:
type: string
enum:
- 'imports.write'
- 'imports.read'
ImsOrganizationId:
type: string
example: '1234567890ABCDEF12345678@AdobeOrg'
ImsUserAccessToken:
type: string
example: 'eyJhbGciOiJIUzI1NiJ9.eyJpZCI6IjEyMzQ1IiwidHlwZSI6ImFjY2Vzc190b2tlbiIsImNsaWVudF9pZCI6ImV4YW1wbGVfYXBwIiwidXNlcl9pZCI6Ijk4NzY1NDc4OTBBQkNERUYxMjM0NTY3OEBhYmNkZWYxMjM0NTY3ODkuZSIsImFzIjoiaW1zLW5hMSIsImFhX2lkIjoiMTIzNDU2Nzg5MEFCQ0RFRjEyMzQ1Njc4QGFkb2JlLmNvbSIsImNyZWF0ZWRfYXQiOiIxNzEwMjQ3MDAwMDAwIn0.MRDpxgxSHDj4DmA182hPnjMAnKkly-VUJ_bXpQ-J8EQ'
SlackMentionConfig:
type: object
properties:
slack:
type: array
items:
type: string
HandlerConfig:
type: object
additionalProperties: false
properties:
mentions:
$ref: '#/SlackMentionConfig'
excludedURLs:
description: URLs to be excluded from the handler's processing
type: array
items:
type: string
format: uri
groupedURLs:
description: List of grouped URL patterns for categorization. Each entry should include a name and a URL pattern. If empty, previously grouped URLs will be removed
type: array
items:
type: object
properties:
name:
description: Name of the URL group
type: string
pattern:
description: Pattern representing the URL path structure to group
type: string
patternProperties:
'^(404|broken-backlinks)$':
type: object
properties:
mentions:
$ref: '#/SlackMentionConfig'
# Define other properties specific to the alert type here
example:
excludedURLs:
- 'https://www.adobe.com/excluded-page'
- 'https://www.adobe.com/another-excluded-page'
groupedURLs:
- name: 'catalog'
pattern: '/products/'
- name: 'blog'
pattern: '/post/'
SlackConfig:
type: object
additionalProperties: true
properties:
channel:
description: The Slack channel ID to send notifications to
type: string
example: 'C1234567890'
workspace:
description: The Slack workspace name to send notifications to
type: string
example: 'example-workspace'
invitedUserCount:
description: The number of external users invited to the Slack channel
type: integer
example: 5
channel-url:
description: Slack URL of the channel to send notifications to
type: string
example: 'https://example-workspace.slack.com/archives/C1234567890'
Config:
type: object
additionalProperties: true
properties:
slack:
description: Optional. The Slack configuration
$ref: '#/SlackConfig'
handlers:
description: Optional. The Alert configuration
$ref: '#/HandlerConfig'
contentAiConfig:
description: Optional. The ContentAi configuration
$ref: '#/ContentAiConfig'
cdnLogsConfig:
description: Optional. The CDN logs configuration
$ref: '#/CdnLogsConfig'
brandProfile:
description: Optional. The Brand Profile determined during on-boarding.
type: object
additionalProperties: true
edgeOptimizeConfig:
description: Optional. The edge optimize configuration for the site.
$ref: '#/EdgeOptimizeConfig'
EdgeOptimizeConfig:
type: object
description: Edge optimize configuration for a site
properties:
enabled:
description: Indicates when edge optimization was enabled for the site
oneOf:
- type: boolean
deprecated: true
example: true
description: Deprecated. Use timestamp format instead.
- type: number
example: 1772531669121
description: Timestamp (milliseconds since epoch) indicating when edge optimization was enabled for the site.
opted:
description: Timestamp (milliseconds since epoch) when the site opted into edge optimize
type: number
example: 1772531669121
stagingDomains:
description: Staging domains associated with this site for edge optimize
type: array
items:
type: object
required:
- domain
- id
properties:
domain:
type: string
description: Staging domain hostname
example: 'staging.example.com'
id:
type: string
format: uuid
description: Spacecat site ID for the stage site
additionalProperties: true
ContentAiConfig:
type: object
properties:
index:
description: Optional. The index name for website in the content AI service
type: string
CdnLogsConfig:
type: object
properties:
bucketName:
description: The name of the S3 bucket to store CDN logs
type: string
outputLocation:
description: The output location for sharepoint folder
type: string
filters:
description: The filters for CDN logs
type: array
items:
type: object
properties:
key:
description: The key to filter
type: string
value:
description: The value to filter
type: array
items:
type: string
example:
bucketName: 'test-bucket'
filters: [{ key: 'test-key', value: ['test-value'] }]
outputLocation: 'test-output-location'
OrganizationConfig:
allOf:
- $ref: '#/Config'
SiteConfig:
allOf:
- $ref: '#/Config'
Organization:
type: object
properties:
id:
description: The organization ID in uuid format
$ref: '#/Id'
name:
description: The name of the organization
type: string
imsOrgId:
description: Optional. The ID of the Adobe IMS organization
$ref: '#/ImsOrganizationId'
config:
description: Optional. The configuration of the organization
$ref: '#/OrganizationConfig'
createdAt:
description: The date and time when the organization was created
$ref: '#/DateTime'
updatedAt:
description: The date and time when the organization was last updated
$ref: '#/DateTime'
example:
id: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
name: 'Example Organization'
imsOrgId: '1234567890ABCDEF12345678@AdobeOrg'
config:
slack:
channel: '#example-channel'
workspace: 'example-workspace'
invitedUserCount: 5
handlers:
'404':
byOrg: true
mentions:
slack:
- '@user1'
- '@user2'
'cwv':
byOrg: false
mentions:
slack:
- '@user5'
- '@user6'
contentAiConfig:
index: 'example-index-name'
createdAt: '2023-12-15T09:30:00Z'
updatedAt: '2024-01-19T11:20:00Z'
OrganizationList:
type: array
items:
$ref: './schemas.yaml#/Organization'
OrganizationCreate:
type: object
required:
- name
properties:
name:
description: The name of the organization
type: string
imsOrgId:
description: Optional. The ID of the Adobe IMS organization
$ref: '#/ImsOrganizationId'
config:
description: Optional. The configuration of the organization
$ref: '#/OrganizationConfig'
example:
name: 'Example Organization'
imsOrgId: '1234567890ABCDEF12345678@AdobeOrg'
config:
slack:
channel: '#example-channel'
workspace: 'example-workspace'
handlers:
'404':
mentions:
slack:
- '@user3'
- '@user4'
'cwv':
byOrg: false
mentions:
slack:
- '@user5'
- '@user6'
contentAiConfig:
index: 'example-index-name'
OrganizationUpdate:
type: object
properties:
name:
description: The name of the organization
type: string
imsOrgId:
description: Optional. The ID of the Adobe IMS organization
$ref: '#/ImsOrganizationId'
config:
description: Optional. The configuration of the organization
$ref: '#/OrganizationConfig'
example:
name: 'Example Organization'
imsOrgId: '1234567890ABCDEF12345678@AdobeOrg'
config:
slack:
channel: '#example-channel'
workspace: 'example-workspace'
handlers:
'404':
mentions:
slack:
- '@user3'
- '@user4'
'cwv':
mentions:
slack:
- '@user5'
- '@user6'
contentAiConfig:
index: 'example-index-name'
Project:
type: object
properties:
id:
description: The project ID in uuid format
$ref: '#/Id'
name:
description: The name of the project
type: string
organizationId:
description: The ID of the organization this project belongs to
$ref: '#/Id'
createdAt:
description: The date and time when the project was created
$ref: '#/DateTime'
updatedAt:
description: The date and time when the project was last updated
$ref: '#/DateTime'
example:
id: 'p1r2o3j4-e5c6-t7i8-d9a0-b11c12d13e14'
name: 'Example Project'
organizationId: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
createdAt: '2023-12-15T09:30:00Z'
updatedAt: '2024-01-19T11:20:00Z'
ProjectList:
type: array
items:
$ref: './schemas.yaml#/Project'
ProjectCreate:
type: object
required:
- name
- organizationId
properties:
name:
description: The name of the project
type: string
organizationId:
description: The ID of the organization this project belongs to
$ref: '#/Id'
example:
name: 'New Project'
organizationId: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
ProjectUpdate:
type: object
properties:
name:
description: The name of the project
type: string
organizationId:
description: The ID of the organization this project belongs to
$ref: '#/Id'
example:
name: 'Updated Project Name'
organizationId: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
Site:
type: object
properties:
id:
description: The site ID in uuid format
$ref: '#/Id'
organizationId:
description: The optional ID of the organization this site belongs to
$ref: '#/Id'
projectId:
description: The optional ID of the project this site belongs to
$ref: '#/Id'
isPrimaryLocale:
description: Whether this site is the primary locale for the project
type: boolean
language:
description: The language code in ISO 639-1 format (2 lowercase letters)
type: string
pattern: '^[a-z]{2}$'
example: 'en'
region:
description: The region code in ISO 3166-1 alpha-2 format (2 uppercase letters)
type: string
pattern: '^[A-Z]{2}$'
example: 'US'
baseURL:
description: The base URL of the site
$ref: '#/URL'
name:
description: The name of the site
type: string
deliveryType:
description: The type of the delivery this site is using
$ref: '#/DeliveryType'
deliveryConfig:
description: The delivery configuration of the site
$ref: '#/DeliveryConfig'
gitHubURL:
description: The optional GitHub URL of the site
$ref: '#/URL'
goLiveDate:
description: The date and time when the site went live on AEM Edge
nullable: true
$ref: '#/DateTime'
config:
description: Optional. The configuration of the site. May override the organization configuration.
$ref: '#/SiteConfig'
createdAt:
description: The date and time when the site was created
$ref: '#/DateTime'
updatedAt:
description: The date and time when the site was last updated
$ref: '#/DateTime'
example:
id: 'a1b2c3d4-e5f6-7g8h-9i0j-k11l12m13n14'
organizationId: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
baseURL: 'https://example-site.com'
name: 'Example Site'
deliveryType: 'aem_edge'
deliveryConfig:
programId: '12652'
environmentId: '16854'
authorURL: 'https://author-p12652-e16854-cmstg.adobeaemcloud.com/'
siteId: '1234'
gitHubURL: 'https://github.com/example/repo'
goLiveDate: '2024-01-20T10:00:00Z'
config:
slack:
channel: 'C1234567890'
workspace: 'example-workspace'
handlers:
'404':
mentions:
slack:
- '@user1'
- '@user2'
'broken-backlinks':
mentions:
slack:
- '@user5'
- '@user6'
excludedURLs:
description: URLs to be excluded from the alert
type: array
items:
type: string
format: uri'
groupedURLs:
description: List of grouped URL patterns for categorization. Each entry should include a name and a URL pattern. If empty, previously grouped URLs will be removed
type: array
items:
type: object
properties:
name:
description: Name of the URL group
type: string
pattern:
description: Pattern representing the URL path structure to group
type: string
contentAiConfig:
index: 'example-index-name'
cdnLogsConfig:
bucketName: 'test-bucket'
filters: [{ key: 'test-key', value: ['test-value'] }]
outputLocation: 'test-output-location'
createdAt: '2023-12-15T09:30:00Z'
updatedAt: '2024-01-19T11:20:00Z'
SiteWithLatestAudit:
allOf:
- $ref: '#/Site'
- type: object
properties:
audits:
description: An array with the latest audit for the given audit type
type: array
items:
$ref: '#/Audit'
example:
id: 'a1b2c3d4-e5f6-7g8h-9i0j-k11l12m13n14'
organizationId: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
baseURL: 'https://example-site.com'
name: 'Example Site'
deliveryType: 'aem_edge'
gitHubURL: 'https://github.com/example/repo'
goLiveDate: '2024-01-20T10:00:00Z'
createdAt: '2023-12-15T09:30:00Z'
updatedAt: '2024-01-19T11:20:00Z'
audits:
- siteId: 'a1b2c3d4-e5f6-7g8h-9i0j-k11l12m13n14'
auditedAt: '2024-01-20T12:00:00Z'
expiresAt: '2024-07-20T12:00:00Z'
auditType: 'cwv'
isError: false
deliveryType: 'aem_edge'
fullAuditRef: 'https://some-audit-system/full-report/1234'
auditResult:
someProperty: 'someValue'
previousAuditResult:
someProperty: 'somePreviousValue'
SiteList:
type: array
items:
$ref: './schemas.yaml#/Site'
SiteWithLatestAuditList:
type: array
items:
$ref: './schemas.yaml#/SiteWithLatestAudit'
SiteCreate:
type: object
required:
- baseURL
- deliveryType
properties:
organizationId:
description: The optional ID of the organization this site belongs to
default: null
$ref: '#/Id'
projectId:
description: The optional ID of the project this site belongs to
$ref: '#/Id'
isPrimaryLocale:
description: Whether this site is the primary locale for the project
type: boolean
language:
description: The language code in ISO 639-1 format (2 lowercase letters)
type: string
pattern: '^[a-z]{2}$'
example: 'en'
region:
description: The region code in ISO 3166-1 alpha-2 format (2 uppercase letters)
type: string
pattern: '^[A-Z]{2}$'
example: 'US'
name:
description: The name of the site
type: string
baseURL:
description: The base URL of the site
$ref: '#/URL'
deliveryType:
description: The type of the delivery this site is using
$ref: '#/DeliveryType'
gitHubURL:
description: The optional GitHub URL of the site
$ref: '#/URL'
goLiveDate:
description: The date and time when the site went live on AEM Edge
nullable: true
$ref: '#/DateTime'
example:
organizationId: 'o1p2q3r4-s5t6-u7v8-w9x0-yz12x34y56z'
baseURL: 'https://www.newsite.com'
deliveryType: 'aem_cs'
name: 'New Site'
SiteUpdate:
type: object
properties:
organizationId:
description: The optional ID of the organization this site belongs to
$ref: '#/Id'
projectId:
description: The optional ID of the project this site belongs to
$ref: '#/Id'
isPrimaryLocale:
description: Whether this site is the primary locale for the project
type: boolean
language:
description: The language code in ISO 639-1 format (2 lowercase letters)
type: string
pattern: '^[a-z]{2}$'
example: 'en'
region:
description: The region code in ISO 3166-1 alpha-2 format (2 uppercase letters)
type: string
pattern: '^[A-Z]{2}$'
example: 'US'
name:
description: The name of the site
type: string
deliveryType:
description: The type of the delivery this site is using
$ref: '#/DeliveryType'
deliveryConfig:
description: The delivery configuration of the site
$ref: '#/DeliveryConfig'
goLiveDate:
description: The date and time when the site went live on AEM Edge
nullable: true
$ref: '#/DateTime'
config:
description: Optional. The configuration of the site
$ref: '#/SiteConfig'
example:
organizationId: 'u7y6t5r4-e3w2-x1z0-z9y8-x7v6w5u4t3s2'
deliveryType: 'other'
name: 'New Site'
deliveryConfig:
programId: '12652'
environmentId: '16854'
authorURL: 'https://author-p12652-e16854-cmstg.adobeaemcloud.com/'
siteId: '1234'
goLiveDate: '2024-01-20T10:00:00Z'
CdnLogsConfigUpdate:
type: object
required:
- cdnLogsConfig
properties:
cdnLogsConfig:
description: The CDN logs configuration to update
$ref: '#/CdnLogsConfig'
example:
cdnLogsConfig:
bucketName: 'test-bucket'
outputLocation: 'test-output-location'
filters: [{ key: 'test-key', value: ['test-value'] }]
UpdateHandlerTypeConfig:
type: object
properties:
excludedURLs:
description: Set of URLs to exclude. If empty, previously excluded URLs will be removed
type: array
items:
type: string
groupedURLs:
description: List of grouped URL patterns for categorization. Each entry should include a name and a URL pattern. If empty, previously grouped URLs will be removed
type: array
items:
type: object
properties:
name:
description: Name of the URL group
type: string
pattern:
description: Pattern representing the URL path structure to group
type: string
example:
excludedURLs:
- 'https://www.adobe.com/some-page'
- 'https://www.adobe.com/another-page'
groupedURLs:
- name: 'catalog'
pattern: '/products/'
- name: 'blog'
pattern: '/post/'
ConfigurationSitesAuditsUpdateResult:
type: object
properties:
status:
type: integer
description: The HTTP status code of the operation (e.g., 200 for success)
message:
type: string
description: A message indicating the result of the operation
required:
- status
- message
Audit:
type: object
readOnly: true
properties:
siteId:
description: The ID of the site this audit belongs to
$ref: '#/Id'
auditedAt:
description: The date and time of the audit in ISO 8601 format
$ref: '#/DateTime'
expiresAt:
description: The date and time when the audit expires in ISO 8601 format
$ref: '#/DateTime'
deliveryType:
description: The type of the delivery this site is using
$ref: '#/DeliveryType'
fullAuditRef:
description: |
A reference by which the full external result of an audit can be accessed, which is dependent on the audit type.
type: string
auditResult:
$ref: '#/AuditResult'
previousAuditResult:
$ref: '#/AuditResult'
example:
siteId: 'a1b2c3d4-e5f6-7g8h-9i0j-k11l12m13n14'
auditedAt: '2024-01-20T12:00:00Z'
expiresAt: '2024-07-20T12:00:00Z'
auditType: 'cwv'
isError: false
deliveryType: 'aem_edge'
fullAuditRef: 'https://some-audit-system/full-report/1234'
auditResult:
someProperty: 'someValue'
previousAuditResult:
someProperty: 'somePreviousValue'
AuditResult:
description: The result of an audit, which is dependent on the audit type.
oneOf:
- type: object
additionalProperties: true
- type: object
properties:
experimentationOpportunities:
type: array
description: A list of experimentation opportunities
items:
$ref: './schemas.yaml#/ExperimentationOpportunity'
- type: object
description: |
The result of broken-backlinks audit.
properties:
brokenBacklinks:
type: array
description: A list of broken backlinks.
items:
$ref: './schemas.yaml#/BrokenBacklink'
fullAuditRef:
description: |
A reference by which the full external result of an audit can be accessed, which is dependent on the audit type.
type: string
- type: object
description: |
The result of broken-internal-links audit.
properties:
brokenInternalLinks:
type: array
description: A list of broken internal links.
items:
$ref: './schemas.yaml#/BrokenInternalLink'
fullAuditRef:
description: |
A reference by which the full external result of an audit can be accessed, which is dependent on the audit type.
type: string
finalUrl:
description: The final URL for the audited page.
type: string
- type: array
description: Information about the provided URLs in the Google index.
items:
$ref: './schemas.yaml#/StructuredData'
- type: object
description: |
The result of costs audit.
properties:
ahrefs:
type: object
properties:
usedApiUnits:
description: |
API units used so far in the current month.
type: integer
limitApiUnits:
description: |
Limit of API units for the current month.
type: integer
fullAuditRef:
description: |
A reference by which the full external result of an audit can be accessed, which is dependent on the audit type.
type: string
- type: object
description: |
The result of a meta-tags audit.
properties:
auditResult:
type: object
properties:
detectedTags:
description: |
A mapping of URLs to their detected meta-tags issues and recommendations.
type: object
additionalProperties:
type: object
properties:
title:
type: object
properties:
seoRecommendation:
description: |
SEO recommendation for the title tag.
type: string
issue:
description: |
The issue detected in the title tag.
type: string
issueDetails:
description: |
Detailed explanation of the issue detected in the title tag.
type: string
seoImpact:
description: |
The impact of the detected issue on SEO.
type: string
finalUrl:
description: |
The final URL for the audited page.
type: string
- type: object
description: |
The result of a product-metatags audit targeting Product Detail Pages (PDP) of commerce sites.
This audit specifically analyzes product pages for e-commerce optimization, scraping SKU,
thumbnail images, and catalog/store view codes for later autofixing capabilities.
properties:
auditResult:
type: object
properties:
productDetailPages:
description: |
A mapping of product page URLs to their analysis results, including product metadata
and meta tag recommendations for commerce optimization.
type: object
additionalProperties:
type: object
properties:
productMetadata:
type: object
description: |
Commerce-specific metadata scraped from the product page for autofixing.
properties:
sku:
description: |
Product SKU (Stock Keeping Unit) identifier.
type: string
thumbnail:
description: |
URL to the product thumbnail image.
type: string
catalogViewCode:
description: |
Catalog view code for multi-catalog e-commerce sites.
type: string
storeViewCode:
description: |
Store view code for multi-store e-commerce sites.
type: string
metaTagAnalysis:
type: object
description: |
Analysis of product-specific meta tags and SEO elements.
additionalProperties:
type: object
properties:
current:
description: |
Current value of the meta tag or element.
type: string
seoRecommendation:
description: |
SEO recommendation for this product meta element.
type: string
issue: