doc-detective-common 3.6.0-dev.1 → 3.6.0-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/dist/schemas/config_v3.schema.json +249 -0
  2. package/dist/schemas/report_v3.schema.json +200 -0
  3. package/dist/schemas/resolvedTests_v3.schema.json +449 -0
  4. package/dist/schemas/screenshot_v3.schema.json +100 -0
  5. package/dist/schemas/sourceIntegration_v3.schema.json +50 -0
  6. package/dist/schemas/spec_v3.schema.json +200 -0
  7. package/dist/schemas/step_v3.schema.json +100 -0
  8. package/dist/schemas/test_v3.schema.json +200 -0
  9. package/package.json +3 -3
  10. package/src/resolvePaths.js +5 -4
  11. package/src/schemas/build/config_v3.schema.json +49 -0
  12. package/src/schemas/build/screenshot_v3.schema.json +4 -0
  13. package/src/schemas/build/sourceIntegration_v3.schema.json +51 -0
  14. package/src/schemas/dereferenceSchemas.js +1 -0
  15. package/src/schemas/output_schemas/config_v3.schema.json +249 -0
  16. package/src/schemas/output_schemas/report_v3.schema.json +200 -0
  17. package/src/schemas/output_schemas/resolvedTests_v3.schema.json +449 -0
  18. package/src/schemas/output_schemas/screenshot_v3.schema.json +100 -0
  19. package/src/schemas/output_schemas/sourceIntegration_v3.schema.json +50 -0
  20. package/src/schemas/output_schemas/spec_v3.schema.json +200 -0
  21. package/src/schemas/output_schemas/step_v3.schema.json +100 -0
  22. package/src/schemas/output_schemas/test_v3.schema.json +200 -0
  23. package/src/schemas/schemas.json +1548 -0
  24. package/src/schemas/src_schemas/config_v3.schema.json +49 -0
  25. package/src/schemas/src_schemas/screenshot_v3.schema.json +4 -0
  26. package/src/schemas/src_schemas/sourceIntegration_v3.schema.json +45 -0
@@ -5982,6 +5982,56 @@
5982
5982
  }
5983
5983
  }
5984
5984
  ]
5985
+ },
5986
+ "sourceIntegration": {
5987
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
5988
+ "$schema": "http://json-schema.org/draft-07/schema#",
5989
+ "title": "sourceIntegration",
5990
+ "type": "object",
5991
+ "additionalProperties": false,
5992
+ "required": [
5993
+ "type",
5994
+ "integrationName"
5995
+ ],
5996
+ "properties": {
5997
+ "type": {
5998
+ "type": "string",
5999
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
6000
+ "enum": [
6001
+ "heretto"
6002
+ ]
6003
+ },
6004
+ "integrationName": {
6005
+ "type": "string",
6006
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
6007
+ },
6008
+ "fileId": {
6009
+ "type": "string",
6010
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
6011
+ },
6012
+ "filePath": {
6013
+ "type": "string",
6014
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
6015
+ },
6016
+ "contentPath": {
6017
+ "type": "string",
6018
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
6019
+ }
6020
+ },
6021
+ "examples": [
6022
+ {
6023
+ "type": "heretto",
6024
+ "integrationName": "my-heretto",
6025
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
6026
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
6027
+ },
6028
+ {
6029
+ "type": "heretto",
6030
+ "integrationName": "my-heretto",
6031
+ "filePath": "images/screenshot.png",
6032
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
6033
+ }
6034
+ ]
5985
6035
  }
5986
6036
  },
5987
6037
  "title": "Capture screenshot (detailed)"
@@ -6178,6 +6228,56 @@
6178
6228
  }
6179
6229
  }
6180
6230
  ]
6231
+ },
6232
+ "sourceIntegration": {
6233
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
6234
+ "$schema": "http://json-schema.org/draft-07/schema#",
6235
+ "title": "sourceIntegration",
6236
+ "type": "object",
6237
+ "additionalProperties": false,
6238
+ "required": [
6239
+ "type",
6240
+ "integrationName"
6241
+ ],
6242
+ "properties": {
6243
+ "type": {
6244
+ "type": "string",
6245
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
6246
+ "enum": [
6247
+ "heretto"
6248
+ ]
6249
+ },
6250
+ "integrationName": {
6251
+ "type": "string",
6252
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
6253
+ },
6254
+ "fileId": {
6255
+ "type": "string",
6256
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
6257
+ },
6258
+ "filePath": {
6259
+ "type": "string",
6260
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
6261
+ },
6262
+ "contentPath": {
6263
+ "type": "string",
6264
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
6265
+ }
6266
+ },
6267
+ "examples": [
6268
+ {
6269
+ "type": "heretto",
6270
+ "integrationName": "my-heretto",
6271
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
6272
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
6273
+ },
6274
+ {
6275
+ "type": "heretto",
6276
+ "integrationName": "my-heretto",
6277
+ "filePath": "images/screenshot.png",
6278
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
6279
+ }
6280
+ ]
6181
6281
  }
6182
6282
  },
6183
6283
  "title": "Capture screenshot (detailed)"
@@ -8925,6 +9025,55 @@
8925
9025
  "type": "string",
8926
9026
  "description": "Local path where Heretto content was downloaded. Set automatically during processing.",
8927
9027
  "readOnly": true
9028
+ },
9029
+ "fileMapping": {
9030
+ "type": "object",
9031
+ "description": "Mapping of local file paths to Heretto file metadata. Set automatically during content loading.",
9032
+ "readOnly": true,
9033
+ "additionalProperties": {
9034
+ "type": "object",
9035
+ "properties": {
9036
+ "fileId": {
9037
+ "type": "string",
9038
+ "description": "The UUID of the file in Heretto."
9039
+ },
9040
+ "filePath": {
9041
+ "type": "string",
9042
+ "description": "The path of the file in Heretto."
9043
+ }
9044
+ }
9045
+ }
9046
+ },
9047
+ "uploadOnChange": {
9048
+ "type": "boolean",
9049
+ "description": "If `true`, uploads changed screenshots and other media files back to Heretto CMS after test execution.",
9050
+ "default": false
9051
+ },
9052
+ "resourceDependencies": {
9053
+ "type": "object",
9054
+ "description": "Mapping of Heretto file paths to their UUIDs and metadata. Set automatically during content loading by fetching ditamap resource dependencies.",
9055
+ "readOnly": true,
9056
+ "additionalProperties": {
9057
+ "type": "object",
9058
+ "properties": {
9059
+ "uuid": {
9060
+ "type": "string",
9061
+ "description": "The UUID of the file in Heretto."
9062
+ },
9063
+ "fullPath": {
9064
+ "type": "string",
9065
+ "description": "The full xmldb path of the file in Heretto."
9066
+ },
9067
+ "name": {
9068
+ "type": "string",
9069
+ "description": "The file name."
9070
+ },
9071
+ "parentFolderId": {
9072
+ "type": "string",
9073
+ "description": "The UUID of the parent folder in Heretto."
9074
+ }
9075
+ }
9076
+ }
8928
9077
  }
8929
9078
  },
8930
9079
  "title": "Heretto CMS integration"
@@ -13936,6 +14085,56 @@
13936
14085
  }
13937
14086
  }
13938
14087
  ]
14088
+ },
14089
+ "sourceIntegration": {
14090
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
14091
+ "$schema": "http://json-schema.org/draft-07/schema#",
14092
+ "title": "sourceIntegration",
14093
+ "type": "object",
14094
+ "additionalProperties": false,
14095
+ "required": [
14096
+ "type",
14097
+ "integrationName"
14098
+ ],
14099
+ "properties": {
14100
+ "type": {
14101
+ "type": "string",
14102
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
14103
+ "enum": [
14104
+ "heretto"
14105
+ ]
14106
+ },
14107
+ "integrationName": {
14108
+ "type": "string",
14109
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
14110
+ },
14111
+ "fileId": {
14112
+ "type": "string",
14113
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
14114
+ },
14115
+ "filePath": {
14116
+ "type": "string",
14117
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
14118
+ },
14119
+ "contentPath": {
14120
+ "type": "string",
14121
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
14122
+ }
14123
+ },
14124
+ "examples": [
14125
+ {
14126
+ "type": "heretto",
14127
+ "integrationName": "my-heretto",
14128
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
14129
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
14130
+ },
14131
+ {
14132
+ "type": "heretto",
14133
+ "integrationName": "my-heretto",
14134
+ "filePath": "images/screenshot.png",
14135
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
14136
+ }
14137
+ ]
13939
14138
  }
13940
14139
  },
13941
14140
  "title": "Capture screenshot (detailed)"
@@ -14132,6 +14331,56 @@
14132
14331
  }
14133
14332
  }
14134
14333
  ]
14334
+ },
14335
+ "sourceIntegration": {
14336
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
14337
+ "$schema": "http://json-schema.org/draft-07/schema#",
14338
+ "title": "sourceIntegration",
14339
+ "type": "object",
14340
+ "additionalProperties": false,
14341
+ "required": [
14342
+ "type",
14343
+ "integrationName"
14344
+ ],
14345
+ "properties": {
14346
+ "type": {
14347
+ "type": "string",
14348
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
14349
+ "enum": [
14350
+ "heretto"
14351
+ ]
14352
+ },
14353
+ "integrationName": {
14354
+ "type": "string",
14355
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
14356
+ },
14357
+ "fileId": {
14358
+ "type": "string",
14359
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
14360
+ },
14361
+ "filePath": {
14362
+ "type": "string",
14363
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
14364
+ },
14365
+ "contentPath": {
14366
+ "type": "string",
14367
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
14368
+ }
14369
+ },
14370
+ "examples": [
14371
+ {
14372
+ "type": "heretto",
14373
+ "integrationName": "my-heretto",
14374
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
14375
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
14376
+ },
14377
+ {
14378
+ "type": "heretto",
14379
+ "integrationName": "my-heretto",
14380
+ "filePath": "images/screenshot.png",
14381
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
14382
+ }
14383
+ ]
14135
14384
  }
14136
14385
  },
14137
14386
  "title": "Capture screenshot (detailed)"
@@ -26352,6 +26601,56 @@
26352
26601
  }
26353
26602
  }
26354
26603
  ]
26604
+ },
26605
+ "sourceIntegration": {
26606
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
26607
+ "$schema": "http://json-schema.org/draft-07/schema#",
26608
+ "title": "sourceIntegration",
26609
+ "type": "object",
26610
+ "additionalProperties": false,
26611
+ "required": [
26612
+ "type",
26613
+ "integrationName"
26614
+ ],
26615
+ "properties": {
26616
+ "type": {
26617
+ "type": "string",
26618
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
26619
+ "enum": [
26620
+ "heretto"
26621
+ ]
26622
+ },
26623
+ "integrationName": {
26624
+ "type": "string",
26625
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
26626
+ },
26627
+ "fileId": {
26628
+ "type": "string",
26629
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
26630
+ },
26631
+ "filePath": {
26632
+ "type": "string",
26633
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
26634
+ },
26635
+ "contentPath": {
26636
+ "type": "string",
26637
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
26638
+ }
26639
+ },
26640
+ "examples": [
26641
+ {
26642
+ "type": "heretto",
26643
+ "integrationName": "my-heretto",
26644
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
26645
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
26646
+ },
26647
+ {
26648
+ "type": "heretto",
26649
+ "integrationName": "my-heretto",
26650
+ "filePath": "images/screenshot.png",
26651
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
26652
+ }
26653
+ ]
26355
26654
  }
26356
26655
  },
26357
26656
  "title": "Capture screenshot (detailed)"
@@ -26548,6 +26847,56 @@
26548
26847
  }
26549
26848
  }
26550
26849
  ]
26850
+ },
26851
+ "sourceIntegration": {
26852
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
26853
+ "$schema": "http://json-schema.org/draft-07/schema#",
26854
+ "title": "sourceIntegration",
26855
+ "type": "object",
26856
+ "additionalProperties": false,
26857
+ "required": [
26858
+ "type",
26859
+ "integrationName"
26860
+ ],
26861
+ "properties": {
26862
+ "type": {
26863
+ "type": "string",
26864
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
26865
+ "enum": [
26866
+ "heretto"
26867
+ ]
26868
+ },
26869
+ "integrationName": {
26870
+ "type": "string",
26871
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
26872
+ },
26873
+ "fileId": {
26874
+ "type": "string",
26875
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
26876
+ },
26877
+ "filePath": {
26878
+ "type": "string",
26879
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
26880
+ },
26881
+ "contentPath": {
26882
+ "type": "string",
26883
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
26884
+ }
26885
+ },
26886
+ "examples": [
26887
+ {
26888
+ "type": "heretto",
26889
+ "integrationName": "my-heretto",
26890
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
26891
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
26892
+ },
26893
+ {
26894
+ "type": "heretto",
26895
+ "integrationName": "my-heretto",
26896
+ "filePath": "images/screenshot.png",
26897
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
26898
+ }
26899
+ ]
26551
26900
  }
26552
26901
  },
26553
26902
  "title": "Capture screenshot (detailed)"
@@ -29295,6 +29644,55 @@
29295
29644
  "type": "string",
29296
29645
  "description": "Local path where Heretto content was downloaded. Set automatically during processing.",
29297
29646
  "readOnly": true
29647
+ },
29648
+ "fileMapping": {
29649
+ "type": "object",
29650
+ "description": "Mapping of local file paths to Heretto file metadata. Set automatically during content loading.",
29651
+ "readOnly": true,
29652
+ "additionalProperties": {
29653
+ "type": "object",
29654
+ "properties": {
29655
+ "fileId": {
29656
+ "type": "string",
29657
+ "description": "The UUID of the file in Heretto."
29658
+ },
29659
+ "filePath": {
29660
+ "type": "string",
29661
+ "description": "The path of the file in Heretto."
29662
+ }
29663
+ }
29664
+ }
29665
+ },
29666
+ "uploadOnChange": {
29667
+ "type": "boolean",
29668
+ "description": "If `true`, uploads changed screenshots and other media files back to Heretto CMS after test execution.",
29669
+ "default": false
29670
+ },
29671
+ "resourceDependencies": {
29672
+ "type": "object",
29673
+ "description": "Mapping of Heretto file paths to their UUIDs and metadata. Set automatically during content loading by fetching ditamap resource dependencies.",
29674
+ "readOnly": true,
29675
+ "additionalProperties": {
29676
+ "type": "object",
29677
+ "properties": {
29678
+ "uuid": {
29679
+ "type": "string",
29680
+ "description": "The UUID of the file in Heretto."
29681
+ },
29682
+ "fullPath": {
29683
+ "type": "string",
29684
+ "description": "The full xmldb path of the file in Heretto."
29685
+ },
29686
+ "name": {
29687
+ "type": "string",
29688
+ "description": "The file name."
29689
+ },
29690
+ "parentFolderId": {
29691
+ "type": "string",
29692
+ "description": "The UUID of the parent folder in Heretto."
29693
+ }
29694
+ }
29695
+ }
29298
29696
  }
29299
29697
  },
29300
29698
  "title": "Heretto CMS integration"
@@ -34306,6 +34704,56 @@
34306
34704
  }
34307
34705
  }
34308
34706
  ]
34707
+ },
34708
+ "sourceIntegration": {
34709
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
34710
+ "$schema": "http://json-schema.org/draft-07/schema#",
34711
+ "title": "sourceIntegration",
34712
+ "type": "object",
34713
+ "additionalProperties": false,
34714
+ "required": [
34715
+ "type",
34716
+ "integrationName"
34717
+ ],
34718
+ "properties": {
34719
+ "type": {
34720
+ "type": "string",
34721
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
34722
+ "enum": [
34723
+ "heretto"
34724
+ ]
34725
+ },
34726
+ "integrationName": {
34727
+ "type": "string",
34728
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
34729
+ },
34730
+ "fileId": {
34731
+ "type": "string",
34732
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
34733
+ },
34734
+ "filePath": {
34735
+ "type": "string",
34736
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
34737
+ },
34738
+ "contentPath": {
34739
+ "type": "string",
34740
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
34741
+ }
34742
+ },
34743
+ "examples": [
34744
+ {
34745
+ "type": "heretto",
34746
+ "integrationName": "my-heretto",
34747
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
34748
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
34749
+ },
34750
+ {
34751
+ "type": "heretto",
34752
+ "integrationName": "my-heretto",
34753
+ "filePath": "images/screenshot.png",
34754
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
34755
+ }
34756
+ ]
34309
34757
  }
34310
34758
  },
34311
34759
  "title": "Capture screenshot (detailed)"
@@ -34502,6 +34950,56 @@
34502
34950
  }
34503
34951
  }
34504
34952
  ]
34953
+ },
34954
+ "sourceIntegration": {
34955
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
34956
+ "$schema": "http://json-schema.org/draft-07/schema#",
34957
+ "title": "sourceIntegration",
34958
+ "type": "object",
34959
+ "additionalProperties": false,
34960
+ "required": [
34961
+ "type",
34962
+ "integrationName"
34963
+ ],
34964
+ "properties": {
34965
+ "type": {
34966
+ "type": "string",
34967
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
34968
+ "enum": [
34969
+ "heretto"
34970
+ ]
34971
+ },
34972
+ "integrationName": {
34973
+ "type": "string",
34974
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
34975
+ },
34976
+ "fileId": {
34977
+ "type": "string",
34978
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
34979
+ },
34980
+ "filePath": {
34981
+ "type": "string",
34982
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
34983
+ },
34984
+ "contentPath": {
34985
+ "type": "string",
34986
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
34987
+ }
34988
+ },
34989
+ "examples": [
34990
+ {
34991
+ "type": "heretto",
34992
+ "integrationName": "my-heretto",
34993
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
34994
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
34995
+ },
34996
+ {
34997
+ "type": "heretto",
34998
+ "integrationName": "my-heretto",
34999
+ "filePath": "images/screenshot.png",
35000
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
35001
+ }
35002
+ ]
34505
35003
  }
34506
35004
  },
34507
35005
  "title": "Capture screenshot (detailed)"
@@ -42998,6 +43496,56 @@
42998
43496
  }
42999
43497
  }
43000
43498
  ]
43499
+ },
43500
+ "sourceIntegration": {
43501
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
43502
+ "$schema": "http://json-schema.org/draft-07/schema#",
43503
+ "title": "sourceIntegration",
43504
+ "type": "object",
43505
+ "additionalProperties": false,
43506
+ "required": [
43507
+ "type",
43508
+ "integrationName"
43509
+ ],
43510
+ "properties": {
43511
+ "type": {
43512
+ "type": "string",
43513
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
43514
+ "enum": [
43515
+ "heretto"
43516
+ ]
43517
+ },
43518
+ "integrationName": {
43519
+ "type": "string",
43520
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
43521
+ },
43522
+ "fileId": {
43523
+ "type": "string",
43524
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
43525
+ },
43526
+ "filePath": {
43527
+ "type": "string",
43528
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
43529
+ },
43530
+ "contentPath": {
43531
+ "type": "string",
43532
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
43533
+ }
43534
+ },
43535
+ "examples": [
43536
+ {
43537
+ "type": "heretto",
43538
+ "integrationName": "my-heretto",
43539
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
43540
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
43541
+ },
43542
+ {
43543
+ "type": "heretto",
43544
+ "integrationName": "my-heretto",
43545
+ "filePath": "images/screenshot.png",
43546
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
43547
+ }
43548
+ ]
43001
43549
  }
43002
43550
  },
43003
43551
  "title": "Capture screenshot (detailed)"
@@ -43194,6 +43742,56 @@
43194
43742
  }
43195
43743
  }
43196
43744
  ]
43745
+ },
43746
+ "sourceIntegration": {
43747
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
43748
+ "$schema": "http://json-schema.org/draft-07/schema#",
43749
+ "title": "sourceIntegration",
43750
+ "type": "object",
43751
+ "additionalProperties": false,
43752
+ "required": [
43753
+ "type",
43754
+ "integrationName"
43755
+ ],
43756
+ "properties": {
43757
+ "type": {
43758
+ "type": "string",
43759
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
43760
+ "enum": [
43761
+ "heretto"
43762
+ ]
43763
+ },
43764
+ "integrationName": {
43765
+ "type": "string",
43766
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
43767
+ },
43768
+ "fileId": {
43769
+ "type": "string",
43770
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
43771
+ },
43772
+ "filePath": {
43773
+ "type": "string",
43774
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
43775
+ },
43776
+ "contentPath": {
43777
+ "type": "string",
43778
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
43779
+ }
43780
+ },
43781
+ "examples": [
43782
+ {
43783
+ "type": "heretto",
43784
+ "integrationName": "my-heretto",
43785
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
43786
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
43787
+ },
43788
+ {
43789
+ "type": "heretto",
43790
+ "integrationName": "my-heretto",
43791
+ "filePath": "images/screenshot.png",
43792
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
43793
+ }
43794
+ ]
43197
43795
  }
43198
43796
  },
43199
43797
  "title": "Capture screenshot (detailed)"
@@ -50475,6 +51073,56 @@
50475
51073
  }
50476
51074
  }
50477
51075
  ]
51076
+ },
51077
+ "sourceIntegration": {
51078
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
51079
+ "$schema": "http://json-schema.org/draft-07/schema#",
51080
+ "title": "sourceIntegration",
51081
+ "type": "object",
51082
+ "additionalProperties": false,
51083
+ "required": [
51084
+ "type",
51085
+ "integrationName"
51086
+ ],
51087
+ "properties": {
51088
+ "type": {
51089
+ "type": "string",
51090
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
51091
+ "enum": [
51092
+ "heretto"
51093
+ ]
51094
+ },
51095
+ "integrationName": {
51096
+ "type": "string",
51097
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
51098
+ },
51099
+ "fileId": {
51100
+ "type": "string",
51101
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
51102
+ },
51103
+ "filePath": {
51104
+ "type": "string",
51105
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
51106
+ },
51107
+ "contentPath": {
51108
+ "type": "string",
51109
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
51110
+ }
51111
+ },
51112
+ "examples": [
51113
+ {
51114
+ "type": "heretto",
51115
+ "integrationName": "my-heretto",
51116
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
51117
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
51118
+ },
51119
+ {
51120
+ "type": "heretto",
51121
+ "integrationName": "my-heretto",
51122
+ "filePath": "images/screenshot.png",
51123
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
51124
+ }
51125
+ ]
50478
51126
  }
50479
51127
  },
50480
51128
  "title": "Capture screenshot (detailed)"
@@ -50671,6 +51319,56 @@
50671
51319
  }
50672
51320
  }
50673
51321
  ]
51322
+ },
51323
+ "sourceIntegration": {
51324
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
51325
+ "$schema": "http://json-schema.org/draft-07/schema#",
51326
+ "title": "sourceIntegration",
51327
+ "type": "object",
51328
+ "additionalProperties": false,
51329
+ "required": [
51330
+ "type",
51331
+ "integrationName"
51332
+ ],
51333
+ "properties": {
51334
+ "type": {
51335
+ "type": "string",
51336
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
51337
+ "enum": [
51338
+ "heretto"
51339
+ ]
51340
+ },
51341
+ "integrationName": {
51342
+ "type": "string",
51343
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
51344
+ },
51345
+ "fileId": {
51346
+ "type": "string",
51347
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
51348
+ },
51349
+ "filePath": {
51350
+ "type": "string",
51351
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
51352
+ },
51353
+ "contentPath": {
51354
+ "type": "string",
51355
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
51356
+ }
51357
+ },
51358
+ "examples": [
51359
+ {
51360
+ "type": "heretto",
51361
+ "integrationName": "my-heretto",
51362
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
51363
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
51364
+ },
51365
+ {
51366
+ "type": "heretto",
51367
+ "integrationName": "my-heretto",
51368
+ "filePath": "images/screenshot.png",
51369
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
51370
+ }
51371
+ ]
50674
51372
  }
50675
51373
  },
50676
51374
  "title": "Capture screenshot (detailed)"
@@ -59662,6 +60360,56 @@
59662
60360
  }
59663
60361
  }
59664
60362
  ]
60363
+ },
60364
+ "sourceIntegration": {
60365
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
60366
+ "$schema": "http://json-schema.org/draft-07/schema#",
60367
+ "title": "sourceIntegration",
60368
+ "type": "object",
60369
+ "additionalProperties": false,
60370
+ "required": [
60371
+ "type",
60372
+ "integrationName"
60373
+ ],
60374
+ "properties": {
60375
+ "type": {
60376
+ "type": "string",
60377
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
60378
+ "enum": [
60379
+ "heretto"
60380
+ ]
60381
+ },
60382
+ "integrationName": {
60383
+ "type": "string",
60384
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
60385
+ },
60386
+ "fileId": {
60387
+ "type": "string",
60388
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
60389
+ },
60390
+ "filePath": {
60391
+ "type": "string",
60392
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
60393
+ },
60394
+ "contentPath": {
60395
+ "type": "string",
60396
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
60397
+ }
60398
+ },
60399
+ "examples": [
60400
+ {
60401
+ "type": "heretto",
60402
+ "integrationName": "my-heretto",
60403
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
60404
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
60405
+ },
60406
+ {
60407
+ "type": "heretto",
60408
+ "integrationName": "my-heretto",
60409
+ "filePath": "images/screenshot.png",
60410
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
60411
+ }
60412
+ ]
59665
60413
  }
59666
60414
  },
59667
60415
  "title": "Capture screenshot (detailed)"
@@ -59858,6 +60606,56 @@
59858
60606
  }
59859
60607
  }
59860
60608
  ]
60609
+ },
60610
+ "sourceIntegration": {
60611
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
60612
+ "$schema": "http://json-schema.org/draft-07/schema#",
60613
+ "title": "sourceIntegration",
60614
+ "type": "object",
60615
+ "additionalProperties": false,
60616
+ "required": [
60617
+ "type",
60618
+ "integrationName"
60619
+ ],
60620
+ "properties": {
60621
+ "type": {
60622
+ "type": "string",
60623
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
60624
+ "enum": [
60625
+ "heretto"
60626
+ ]
60627
+ },
60628
+ "integrationName": {
60629
+ "type": "string",
60630
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
60631
+ },
60632
+ "fileId": {
60633
+ "type": "string",
60634
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
60635
+ },
60636
+ "filePath": {
60637
+ "type": "string",
60638
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
60639
+ },
60640
+ "contentPath": {
60641
+ "type": "string",
60642
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
60643
+ }
60644
+ },
60645
+ "examples": [
60646
+ {
60647
+ "type": "heretto",
60648
+ "integrationName": "my-heretto",
60649
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
60650
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
60651
+ },
60652
+ {
60653
+ "type": "heretto",
60654
+ "integrationName": "my-heretto",
60655
+ "filePath": "images/screenshot.png",
60656
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
60657
+ }
60658
+ ]
59861
60659
  }
59862
60660
  },
59863
60661
  "title": "Capture screenshot (detailed)"
@@ -67139,6 +67937,56 @@
67139
67937
  }
67140
67938
  }
67141
67939
  ]
67940
+ },
67941
+ "sourceIntegration": {
67942
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
67943
+ "$schema": "http://json-schema.org/draft-07/schema#",
67944
+ "title": "sourceIntegration",
67945
+ "type": "object",
67946
+ "additionalProperties": false,
67947
+ "required": [
67948
+ "type",
67949
+ "integrationName"
67950
+ ],
67951
+ "properties": {
67952
+ "type": {
67953
+ "type": "string",
67954
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
67955
+ "enum": [
67956
+ "heretto"
67957
+ ]
67958
+ },
67959
+ "integrationName": {
67960
+ "type": "string",
67961
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
67962
+ },
67963
+ "fileId": {
67964
+ "type": "string",
67965
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
67966
+ },
67967
+ "filePath": {
67968
+ "type": "string",
67969
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
67970
+ },
67971
+ "contentPath": {
67972
+ "type": "string",
67973
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
67974
+ }
67975
+ },
67976
+ "examples": [
67977
+ {
67978
+ "type": "heretto",
67979
+ "integrationName": "my-heretto",
67980
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
67981
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
67982
+ },
67983
+ {
67984
+ "type": "heretto",
67985
+ "integrationName": "my-heretto",
67986
+ "filePath": "images/screenshot.png",
67987
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
67988
+ }
67989
+ ]
67142
67990
  }
67143
67991
  },
67144
67992
  "title": "Capture screenshot (detailed)"
@@ -67335,6 +68183,56 @@
67335
68183
  }
67336
68184
  }
67337
68185
  ]
68186
+ },
68187
+ "sourceIntegration": {
68188
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
68189
+ "$schema": "http://json-schema.org/draft-07/schema#",
68190
+ "title": "sourceIntegration",
68191
+ "type": "object",
68192
+ "additionalProperties": false,
68193
+ "required": [
68194
+ "type",
68195
+ "integrationName"
68196
+ ],
68197
+ "properties": {
68198
+ "type": {
68199
+ "type": "string",
68200
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
68201
+ "enum": [
68202
+ "heretto"
68203
+ ]
68204
+ },
68205
+ "integrationName": {
68206
+ "type": "string",
68207
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
68208
+ },
68209
+ "fileId": {
68210
+ "type": "string",
68211
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
68212
+ },
68213
+ "filePath": {
68214
+ "type": "string",
68215
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
68216
+ },
68217
+ "contentPath": {
68218
+ "type": "string",
68219
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
68220
+ }
68221
+ },
68222
+ "examples": [
68223
+ {
68224
+ "type": "heretto",
68225
+ "integrationName": "my-heretto",
68226
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
68227
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
68228
+ },
68229
+ {
68230
+ "type": "heretto",
68231
+ "integrationName": "my-heretto",
68232
+ "filePath": "images/screenshot.png",
68233
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
68234
+ }
68235
+ ]
67338
68236
  }
67339
68237
  },
67340
68238
  "title": "Capture screenshot (detailed)"
@@ -71165,6 +72063,56 @@
71165
72063
  }
71166
72064
  }
71167
72065
  ]
72066
+ },
72067
+ "sourceIntegration": {
72068
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
72069
+ "$schema": "http://json-schema.org/draft-07/schema#",
72070
+ "title": "sourceIntegration",
72071
+ "type": "object",
72072
+ "additionalProperties": false,
72073
+ "required": [
72074
+ "type",
72075
+ "integrationName"
72076
+ ],
72077
+ "properties": {
72078
+ "type": {
72079
+ "type": "string",
72080
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
72081
+ "enum": [
72082
+ "heretto"
72083
+ ]
72084
+ },
72085
+ "integrationName": {
72086
+ "type": "string",
72087
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
72088
+ },
72089
+ "fileId": {
72090
+ "type": "string",
72091
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
72092
+ },
72093
+ "filePath": {
72094
+ "type": "string",
72095
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
72096
+ },
72097
+ "contentPath": {
72098
+ "type": "string",
72099
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
72100
+ }
72101
+ },
72102
+ "examples": [
72103
+ {
72104
+ "type": "heretto",
72105
+ "integrationName": "my-heretto",
72106
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
72107
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
72108
+ },
72109
+ {
72110
+ "type": "heretto",
72111
+ "integrationName": "my-heretto",
72112
+ "filePath": "images/screenshot.png",
72113
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
72114
+ }
72115
+ ]
71168
72116
  }
71169
72117
  },
71170
72118
  "title": "Capture screenshot (detailed)"
@@ -71361,6 +72309,56 @@
71361
72309
  }
71362
72310
  }
71363
72311
  ]
72312
+ },
72313
+ "sourceIntegration": {
72314
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
72315
+ "$schema": "http://json-schema.org/draft-07/schema#",
72316
+ "title": "sourceIntegration",
72317
+ "type": "object",
72318
+ "additionalProperties": false,
72319
+ "required": [
72320
+ "type",
72321
+ "integrationName"
72322
+ ],
72323
+ "properties": {
72324
+ "type": {
72325
+ "type": "string",
72326
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
72327
+ "enum": [
72328
+ "heretto"
72329
+ ]
72330
+ },
72331
+ "integrationName": {
72332
+ "type": "string",
72333
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
72334
+ },
72335
+ "fileId": {
72336
+ "type": "string",
72337
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
72338
+ },
72339
+ "filePath": {
72340
+ "type": "string",
72341
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
72342
+ },
72343
+ "contentPath": {
72344
+ "type": "string",
72345
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
72346
+ }
72347
+ },
72348
+ "examples": [
72349
+ {
72350
+ "type": "heretto",
72351
+ "integrationName": "my-heretto",
72352
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
72353
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
72354
+ },
72355
+ {
72356
+ "type": "heretto",
72357
+ "integrationName": "my-heretto",
72358
+ "filePath": "images/screenshot.png",
72359
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
72360
+ }
72361
+ ]
71364
72362
  }
71365
72363
  },
71366
72364
  "title": "Capture screenshot (detailed)"
@@ -71557,6 +72555,56 @@
71557
72555
  }
71558
72556
  ]
71559
72557
  },
72558
+ "sourceIntegration_v3": {
72559
+ "$schema": "http://json-schema.org/draft-07/schema#",
72560
+ "title": "sourceIntegration",
72561
+ "description": "Information about the source integration for a file, enabling upload of changed files back to the source CMS.",
72562
+ "type": "object",
72563
+ "additionalProperties": false,
72564
+ "required": [
72565
+ "type",
72566
+ "integrationName"
72567
+ ],
72568
+ "properties": {
72569
+ "type": {
72570
+ "type": "string",
72571
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
72572
+ "enum": [
72573
+ "heretto"
72574
+ ]
72575
+ },
72576
+ "integrationName": {
72577
+ "type": "string",
72578
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
72579
+ },
72580
+ "fileId": {
72581
+ "type": "string",
72582
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
72583
+ },
72584
+ "filePath": {
72585
+ "type": "string",
72586
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
72587
+ },
72588
+ "contentPath": {
72589
+ "type": "string",
72590
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
72591
+ }
72592
+ },
72593
+ "examples": [
72594
+ {
72595
+ "type": "heretto",
72596
+ "integrationName": "my-heretto",
72597
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
72598
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
72599
+ },
72600
+ {
72601
+ "type": "heretto",
72602
+ "integrationName": "my-heretto",
72603
+ "filePath": "images/screenshot.png",
72604
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
72605
+ }
72606
+ ]
72607
+ },
71560
72608
  "spec_v3": {
71561
72609
  "$schema": "http://json-schema.org/draft-07/schema#",
71562
72610
  "title": "specification",
@@ -77558,6 +78606,56 @@
77558
78606
  }
77559
78607
  }
77560
78608
  ]
78609
+ },
78610
+ "sourceIntegration": {
78611
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
78612
+ "$schema": "http://json-schema.org/draft-07/schema#",
78613
+ "title": "sourceIntegration",
78614
+ "type": "object",
78615
+ "additionalProperties": false,
78616
+ "required": [
78617
+ "type",
78618
+ "integrationName"
78619
+ ],
78620
+ "properties": {
78621
+ "type": {
78622
+ "type": "string",
78623
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
78624
+ "enum": [
78625
+ "heretto"
78626
+ ]
78627
+ },
78628
+ "integrationName": {
78629
+ "type": "string",
78630
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
78631
+ },
78632
+ "fileId": {
78633
+ "type": "string",
78634
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
78635
+ },
78636
+ "filePath": {
78637
+ "type": "string",
78638
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
78639
+ },
78640
+ "contentPath": {
78641
+ "type": "string",
78642
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
78643
+ }
78644
+ },
78645
+ "examples": [
78646
+ {
78647
+ "type": "heretto",
78648
+ "integrationName": "my-heretto",
78649
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
78650
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
78651
+ },
78652
+ {
78653
+ "type": "heretto",
78654
+ "integrationName": "my-heretto",
78655
+ "filePath": "images/screenshot.png",
78656
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
78657
+ }
78658
+ ]
77561
78659
  }
77562
78660
  },
77563
78661
  "title": "Capture screenshot (detailed)"
@@ -77754,6 +78852,56 @@
77754
78852
  }
77755
78853
  }
77756
78854
  ]
78855
+ },
78856
+ "sourceIntegration": {
78857
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
78858
+ "$schema": "http://json-schema.org/draft-07/schema#",
78859
+ "title": "sourceIntegration",
78860
+ "type": "object",
78861
+ "additionalProperties": false,
78862
+ "required": [
78863
+ "type",
78864
+ "integrationName"
78865
+ ],
78866
+ "properties": {
78867
+ "type": {
78868
+ "type": "string",
78869
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
78870
+ "enum": [
78871
+ "heretto"
78872
+ ]
78873
+ },
78874
+ "integrationName": {
78875
+ "type": "string",
78876
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
78877
+ },
78878
+ "fileId": {
78879
+ "type": "string",
78880
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
78881
+ },
78882
+ "filePath": {
78883
+ "type": "string",
78884
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
78885
+ },
78886
+ "contentPath": {
78887
+ "type": "string",
78888
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
78889
+ }
78890
+ },
78891
+ "examples": [
78892
+ {
78893
+ "type": "heretto",
78894
+ "integrationName": "my-heretto",
78895
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
78896
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
78897
+ },
78898
+ {
78899
+ "type": "heretto",
78900
+ "integrationName": "my-heretto",
78901
+ "filePath": "images/screenshot.png",
78902
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
78903
+ }
78904
+ ]
77757
78905
  }
77758
78906
  },
77759
78907
  "title": "Capture screenshot (detailed)"
@@ -85035,6 +86183,56 @@
85035
86183
  }
85036
86184
  }
85037
86185
  ]
86186
+ },
86187
+ "sourceIntegration": {
86188
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
86189
+ "$schema": "http://json-schema.org/draft-07/schema#",
86190
+ "title": "sourceIntegration",
86191
+ "type": "object",
86192
+ "additionalProperties": false,
86193
+ "required": [
86194
+ "type",
86195
+ "integrationName"
86196
+ ],
86197
+ "properties": {
86198
+ "type": {
86199
+ "type": "string",
86200
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
86201
+ "enum": [
86202
+ "heretto"
86203
+ ]
86204
+ },
86205
+ "integrationName": {
86206
+ "type": "string",
86207
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
86208
+ },
86209
+ "fileId": {
86210
+ "type": "string",
86211
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
86212
+ },
86213
+ "filePath": {
86214
+ "type": "string",
86215
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
86216
+ },
86217
+ "contentPath": {
86218
+ "type": "string",
86219
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
86220
+ }
86221
+ },
86222
+ "examples": [
86223
+ {
86224
+ "type": "heretto",
86225
+ "integrationName": "my-heretto",
86226
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
86227
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
86228
+ },
86229
+ {
86230
+ "type": "heretto",
86231
+ "integrationName": "my-heretto",
86232
+ "filePath": "images/screenshot.png",
86233
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
86234
+ }
86235
+ ]
85038
86236
  }
85039
86237
  },
85040
86238
  "title": "Capture screenshot (detailed)"
@@ -85231,6 +86429,56 @@
85231
86429
  }
85232
86430
  }
85233
86431
  ]
86432
+ },
86433
+ "sourceIntegration": {
86434
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
86435
+ "$schema": "http://json-schema.org/draft-07/schema#",
86436
+ "title": "sourceIntegration",
86437
+ "type": "object",
86438
+ "additionalProperties": false,
86439
+ "required": [
86440
+ "type",
86441
+ "integrationName"
86442
+ ],
86443
+ "properties": {
86444
+ "type": {
86445
+ "type": "string",
86446
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
86447
+ "enum": [
86448
+ "heretto"
86449
+ ]
86450
+ },
86451
+ "integrationName": {
86452
+ "type": "string",
86453
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
86454
+ },
86455
+ "fileId": {
86456
+ "type": "string",
86457
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
86458
+ },
86459
+ "filePath": {
86460
+ "type": "string",
86461
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
86462
+ },
86463
+ "contentPath": {
86464
+ "type": "string",
86465
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
86466
+ }
86467
+ },
86468
+ "examples": [
86469
+ {
86470
+ "type": "heretto",
86471
+ "integrationName": "my-heretto",
86472
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
86473
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
86474
+ },
86475
+ {
86476
+ "type": "heretto",
86477
+ "integrationName": "my-heretto",
86478
+ "filePath": "images/screenshot.png",
86479
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
86480
+ }
86481
+ ]
85234
86482
  }
85235
86483
  },
85236
86484
  "title": "Capture screenshot (detailed)"
@@ -92792,6 +94040,56 @@
92792
94040
  }
92793
94041
  }
92794
94042
  ]
94043
+ },
94044
+ "sourceIntegration": {
94045
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
94046
+ "$schema": "http://json-schema.org/draft-07/schema#",
94047
+ "title": "sourceIntegration",
94048
+ "type": "object",
94049
+ "additionalProperties": false,
94050
+ "required": [
94051
+ "type",
94052
+ "integrationName"
94053
+ ],
94054
+ "properties": {
94055
+ "type": {
94056
+ "type": "string",
94057
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
94058
+ "enum": [
94059
+ "heretto"
94060
+ ]
94061
+ },
94062
+ "integrationName": {
94063
+ "type": "string",
94064
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
94065
+ },
94066
+ "fileId": {
94067
+ "type": "string",
94068
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
94069
+ },
94070
+ "filePath": {
94071
+ "type": "string",
94072
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
94073
+ },
94074
+ "contentPath": {
94075
+ "type": "string",
94076
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
94077
+ }
94078
+ },
94079
+ "examples": [
94080
+ {
94081
+ "type": "heretto",
94082
+ "integrationName": "my-heretto",
94083
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
94084
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
94085
+ },
94086
+ {
94087
+ "type": "heretto",
94088
+ "integrationName": "my-heretto",
94089
+ "filePath": "images/screenshot.png",
94090
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
94091
+ }
94092
+ ]
92795
94093
  }
92796
94094
  },
92797
94095
  "title": "Capture screenshot (detailed)"
@@ -92988,6 +94286,56 @@
92988
94286
  }
92989
94287
  }
92990
94288
  ]
94289
+ },
94290
+ "sourceIntegration": {
94291
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
94292
+ "$schema": "http://json-schema.org/draft-07/schema#",
94293
+ "title": "sourceIntegration",
94294
+ "type": "object",
94295
+ "additionalProperties": false,
94296
+ "required": [
94297
+ "type",
94298
+ "integrationName"
94299
+ ],
94300
+ "properties": {
94301
+ "type": {
94302
+ "type": "string",
94303
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
94304
+ "enum": [
94305
+ "heretto"
94306
+ ]
94307
+ },
94308
+ "integrationName": {
94309
+ "type": "string",
94310
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
94311
+ },
94312
+ "fileId": {
94313
+ "type": "string",
94314
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
94315
+ },
94316
+ "filePath": {
94317
+ "type": "string",
94318
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
94319
+ },
94320
+ "contentPath": {
94321
+ "type": "string",
94322
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
94323
+ }
94324
+ },
94325
+ "examples": [
94326
+ {
94327
+ "type": "heretto",
94328
+ "integrationName": "my-heretto",
94329
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
94330
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
94331
+ },
94332
+ {
94333
+ "type": "heretto",
94334
+ "integrationName": "my-heretto",
94335
+ "filePath": "images/screenshot.png",
94336
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
94337
+ }
94338
+ ]
92991
94339
  }
92992
94340
  },
92993
94341
  "title": "Capture screenshot (detailed)"
@@ -100624,6 +101972,56 @@
100624
101972
  }
100625
101973
  }
100626
101974
  ]
101975
+ },
101976
+ "sourceIntegration": {
101977
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
101978
+ "$schema": "http://json-schema.org/draft-07/schema#",
101979
+ "title": "sourceIntegration",
101980
+ "type": "object",
101981
+ "additionalProperties": false,
101982
+ "required": [
101983
+ "type",
101984
+ "integrationName"
101985
+ ],
101986
+ "properties": {
101987
+ "type": {
101988
+ "type": "string",
101989
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
101990
+ "enum": [
101991
+ "heretto"
101992
+ ]
101993
+ },
101994
+ "integrationName": {
101995
+ "type": "string",
101996
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
101997
+ },
101998
+ "fileId": {
101999
+ "type": "string",
102000
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
102001
+ },
102002
+ "filePath": {
102003
+ "type": "string",
102004
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
102005
+ },
102006
+ "contentPath": {
102007
+ "type": "string",
102008
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
102009
+ }
102010
+ },
102011
+ "examples": [
102012
+ {
102013
+ "type": "heretto",
102014
+ "integrationName": "my-heretto",
102015
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
102016
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
102017
+ },
102018
+ {
102019
+ "type": "heretto",
102020
+ "integrationName": "my-heretto",
102021
+ "filePath": "images/screenshot.png",
102022
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
102023
+ }
102024
+ ]
100627
102025
  }
100628
102026
  },
100629
102027
  "title": "Capture screenshot (detailed)"
@@ -100820,6 +102218,56 @@
100820
102218
  }
100821
102219
  }
100822
102220
  ]
102221
+ },
102222
+ "sourceIntegration": {
102223
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
102224
+ "$schema": "http://json-schema.org/draft-07/schema#",
102225
+ "title": "sourceIntegration",
102226
+ "type": "object",
102227
+ "additionalProperties": false,
102228
+ "required": [
102229
+ "type",
102230
+ "integrationName"
102231
+ ],
102232
+ "properties": {
102233
+ "type": {
102234
+ "type": "string",
102235
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
102236
+ "enum": [
102237
+ "heretto"
102238
+ ]
102239
+ },
102240
+ "integrationName": {
102241
+ "type": "string",
102242
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
102243
+ },
102244
+ "fileId": {
102245
+ "type": "string",
102246
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
102247
+ },
102248
+ "filePath": {
102249
+ "type": "string",
102250
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
102251
+ },
102252
+ "contentPath": {
102253
+ "type": "string",
102254
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
102255
+ }
102256
+ },
102257
+ "examples": [
102258
+ {
102259
+ "type": "heretto",
102260
+ "integrationName": "my-heretto",
102261
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
102262
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
102263
+ },
102264
+ {
102265
+ "type": "heretto",
102266
+ "integrationName": "my-heretto",
102267
+ "filePath": "images/screenshot.png",
102268
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
102269
+ }
102270
+ ]
100823
102271
  }
100824
102272
  },
100825
102273
  "title": "Capture screenshot (detailed)"
@@ -108101,6 +109549,56 @@
108101
109549
  }
108102
109550
  }
108103
109551
  ]
109552
+ },
109553
+ "sourceIntegration": {
109554
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
109555
+ "$schema": "http://json-schema.org/draft-07/schema#",
109556
+ "title": "sourceIntegration",
109557
+ "type": "object",
109558
+ "additionalProperties": false,
109559
+ "required": [
109560
+ "type",
109561
+ "integrationName"
109562
+ ],
109563
+ "properties": {
109564
+ "type": {
109565
+ "type": "string",
109566
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
109567
+ "enum": [
109568
+ "heretto"
109569
+ ]
109570
+ },
109571
+ "integrationName": {
109572
+ "type": "string",
109573
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
109574
+ },
109575
+ "fileId": {
109576
+ "type": "string",
109577
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
109578
+ },
109579
+ "filePath": {
109580
+ "type": "string",
109581
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
109582
+ },
109583
+ "contentPath": {
109584
+ "type": "string",
109585
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
109586
+ }
109587
+ },
109588
+ "examples": [
109589
+ {
109590
+ "type": "heretto",
109591
+ "integrationName": "my-heretto",
109592
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
109593
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
109594
+ },
109595
+ {
109596
+ "type": "heretto",
109597
+ "integrationName": "my-heretto",
109598
+ "filePath": "images/screenshot.png",
109599
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
109600
+ }
109601
+ ]
108104
109602
  }
108105
109603
  },
108106
109604
  "title": "Capture screenshot (detailed)"
@@ -108297,6 +109795,56 @@
108297
109795
  }
108298
109796
  }
108299
109797
  ]
109798
+ },
109799
+ "sourceIntegration": {
109800
+ "description": "Information about the source integration for this screenshot, enabling upload of changed files back to the source CMS. Set automatically during test resolution for files from integrations.",
109801
+ "$schema": "http://json-schema.org/draft-07/schema#",
109802
+ "title": "sourceIntegration",
109803
+ "type": "object",
109804
+ "additionalProperties": false,
109805
+ "required": [
109806
+ "type",
109807
+ "integrationName"
109808
+ ],
109809
+ "properties": {
109810
+ "type": {
109811
+ "type": "string",
109812
+ "description": "The type of integration. Currently supported: 'heretto'. Additional types may be added in the future.",
109813
+ "enum": [
109814
+ "heretto"
109815
+ ]
109816
+ },
109817
+ "integrationName": {
109818
+ "type": "string",
109819
+ "description": "The name of the integration configuration in the config file. Used to look up authentication credentials."
109820
+ },
109821
+ "fileId": {
109822
+ "type": "string",
109823
+ "description": "The unique identifier (UUID) of the file in the source CMS. If not provided, the file will be looked up by path."
109824
+ },
109825
+ "filePath": {
109826
+ "type": "string",
109827
+ "description": "The path of the file in the source CMS. Used for lookup if fileId is not available."
109828
+ },
109829
+ "contentPath": {
109830
+ "type": "string",
109831
+ "description": "The local path to the file that references this source. Used for resolving relative paths."
109832
+ }
109833
+ },
109834
+ "examples": [
109835
+ {
109836
+ "type": "heretto",
109837
+ "integrationName": "my-heretto",
109838
+ "fileId": "8f3ed200-cbba-11e1-ac51-c82a1446d15c",
109839
+ "filePath": "/db/organizations/example/repositories/docs/images/screenshot.png"
109840
+ },
109841
+ {
109842
+ "type": "heretto",
109843
+ "integrationName": "my-heretto",
109844
+ "filePath": "images/screenshot.png",
109845
+ "contentPath": "/tmp/doc-detective/heretto_abc123/topic.dita"
109846
+ }
109847
+ ]
108300
109848
  }
108301
109849
  },
108302
109850
  "title": "Capture screenshot (detailed)"