@meshery/schemas 1.3.41 → 1.3.42

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.
@@ -1737,14 +1737,14 @@ export interface components {
1737
1737
  /** @description The test the counts refer to. */
1738
1738
  test?: {
1739
1739
  /**
1740
- * Format: uuid
1741
- * @description Quiz ID.
1740
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
1741
+ * @example corporate-sustainability
1742
1742
  */
1743
1743
  id: string;
1744
1744
  /**
1745
1745
  * Format: uuid
1746
1746
  * @description Organization ID that owns this quiz
1747
- * @example meshery
1747
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
1748
1748
  */
1749
1749
  orgId: string;
1750
1750
  /**
@@ -1787,15 +1787,15 @@ export interface components {
1787
1787
  * @description The pass percentage of the quiz.
1788
1788
  */
1789
1789
  passPercentage: number;
1790
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
1791
- timeLimit: number;
1790
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
1791
+ timeLimit: number | string;
1792
1792
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
1793
1793
  maxAttempts: number;
1794
1794
  /** @description The questions of the quiz. */
1795
1795
  questions: {
1796
1796
  /**
1797
- * Format: uuid
1798
- * @description Question ID.
1797
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
1798
+ * @example q1
1799
1799
  */
1800
1800
  id: string;
1801
1801
  /** @description The text of the question. */
@@ -1809,8 +1809,8 @@ export interface components {
1809
1809
  /** @description The options of the question. */
1810
1810
  options: {
1811
1811
  /**
1812
- * Format: uuid
1813
- * @description QuestionOption ID.
1812
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
1813
+ * @example a
1814
1814
  */
1815
1815
  id: string;
1816
1816
  /** @description The text of the questionoption. */
@@ -1832,8 +1832,8 @@ export interface components {
1832
1832
  /** @description The prerequisites of the quiz. */
1833
1833
  prerequisites: {
1834
1834
  /**
1835
- * Format: uuid
1836
- * @description Parent ID.
1835
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
1836
+ * @example introduction-to-devops-and-sre
1837
1837
  */
1838
1838
  id: string;
1839
1839
  /** @description The title of the parent. */
@@ -1845,8 +1845,8 @@ export interface components {
1845
1845
  }[];
1846
1846
  parent?: {
1847
1847
  /**
1848
- * Format: uuid
1849
- * @description Parent ID.
1848
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
1849
+ * @example introduction-to-devops-and-sre
1850
1850
  */
1851
1851
  id: string;
1852
1852
  /** @description The title of the parent. */
@@ -1858,8 +1858,8 @@ export interface components {
1858
1858
  };
1859
1859
  nextPage: {
1860
1860
  /**
1861
- * Format: uuid
1862
- * @description Parent ID.
1861
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
1862
+ * @example introduction-to-devops-and-sre
1863
1863
  */
1864
1864
  id: string;
1865
1865
  /** @description The title of the parent. */
@@ -2949,14 +2949,14 @@ export interface components {
2949
2949
  };
2950
2950
  quiz: {
2951
2951
  /**
2952
- * Format: uuid
2953
- * @description Quiz ID.
2952
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
2953
+ * @example corporate-sustainability
2954
2954
  */
2955
2955
  id: string;
2956
2956
  /**
2957
2957
  * Format: uuid
2958
2958
  * @description Organization ID that owns this quiz
2959
- * @example meshery
2959
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
2960
2960
  */
2961
2961
  orgId: string;
2962
2962
  /**
@@ -2999,15 +2999,15 @@ export interface components {
2999
2999
  * @description The pass percentage of the quiz.
3000
3000
  */
3001
3001
  passPercentage: number;
3002
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
3003
- timeLimit: number;
3002
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
3003
+ timeLimit: number | string;
3004
3004
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
3005
3005
  maxAttempts: number;
3006
3006
  /** @description The questions of the quiz. */
3007
3007
  questions: {
3008
3008
  /**
3009
- * Format: uuid
3010
- * @description Question ID.
3009
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3010
+ * @example q1
3011
3011
  */
3012
3012
  id: string;
3013
3013
  /** @description The text of the question. */
@@ -3021,8 +3021,8 @@ export interface components {
3021
3021
  /** @description The options of the question. */
3022
3022
  options: {
3023
3023
  /**
3024
- * Format: uuid
3025
- * @description QuestionOption ID.
3024
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3025
+ * @example a
3026
3026
  */
3027
3027
  id: string;
3028
3028
  /** @description The text of the questionoption. */
@@ -3044,8 +3044,8 @@ export interface components {
3044
3044
  /** @description The prerequisites of the quiz. */
3045
3045
  prerequisites: {
3046
3046
  /**
3047
- * Format: uuid
3048
- * @description Parent ID.
3047
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3048
+ * @example introduction-to-devops-and-sre
3049
3049
  */
3050
3050
  id: string;
3051
3051
  /** @description The title of the parent. */
@@ -3057,8 +3057,8 @@ export interface components {
3057
3057
  }[];
3058
3058
  parent?: {
3059
3059
  /**
3060
- * Format: uuid
3061
- * @description Parent ID.
3060
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3061
+ * @example introduction-to-devops-and-sre
3062
3062
  */
3063
3063
  id: string;
3064
3064
  /** @description The title of the parent. */
@@ -3070,8 +3070,8 @@ export interface components {
3070
3070
  };
3071
3071
  nextPage: {
3072
3072
  /**
3073
- * Format: uuid
3074
- * @description Parent ID.
3073
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3074
+ * @example introduction-to-devops-and-sre
3075
3075
  */
3076
3076
  id: string;
3077
3077
  /** @description The title of the parent. */
@@ -3115,14 +3115,14 @@ export interface components {
3115
3115
  };
3116
3116
  quiz: {
3117
3117
  /**
3118
- * Format: uuid
3119
- * @description Quiz ID.
3118
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
3119
+ * @example corporate-sustainability
3120
3120
  */
3121
3121
  id: string;
3122
3122
  /**
3123
3123
  * Format: uuid
3124
3124
  * @description Organization ID that owns this quiz
3125
- * @example meshery
3125
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
3126
3126
  */
3127
3127
  orgId: string;
3128
3128
  /**
@@ -3165,15 +3165,15 @@ export interface components {
3165
3165
  * @description The pass percentage of the quiz.
3166
3166
  */
3167
3167
  passPercentage: number;
3168
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
3169
- timeLimit: number;
3168
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
3169
+ timeLimit: number | string;
3170
3170
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
3171
3171
  maxAttempts: number;
3172
3172
  /** @description The questions of the quiz. */
3173
3173
  questions: {
3174
3174
  /**
3175
- * Format: uuid
3176
- * @description Question ID.
3175
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3176
+ * @example q1
3177
3177
  */
3178
3178
  id: string;
3179
3179
  /** @description The text of the question. */
@@ -3187,8 +3187,8 @@ export interface components {
3187
3187
  /** @description The options of the question. */
3188
3188
  options: {
3189
3189
  /**
3190
- * Format: uuid
3191
- * @description QuestionOption ID.
3190
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3191
+ * @example a
3192
3192
  */
3193
3193
  id: string;
3194
3194
  /** @description The text of the questionoption. */
@@ -3210,8 +3210,8 @@ export interface components {
3210
3210
  /** @description The prerequisites of the quiz. */
3211
3211
  prerequisites: {
3212
3212
  /**
3213
- * Format: uuid
3214
- * @description Parent ID.
3213
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3214
+ * @example introduction-to-devops-and-sre
3215
3215
  */
3216
3216
  id: string;
3217
3217
  /** @description The title of the parent. */
@@ -3223,8 +3223,8 @@ export interface components {
3223
3223
  }[];
3224
3224
  parent?: {
3225
3225
  /**
3226
- * Format: uuid
3227
- * @description Parent ID.
3226
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3227
+ * @example introduction-to-devops-and-sre
3228
3228
  */
3229
3229
  id: string;
3230
3230
  /** @description The title of the parent. */
@@ -3236,8 +3236,8 @@ export interface components {
3236
3236
  };
3237
3237
  nextPage: {
3238
3238
  /**
3239
- * Format: uuid
3240
- * @description Parent ID.
3239
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3240
+ * @example introduction-to-devops-and-sre
3241
3241
  */
3242
3242
  id: string;
3243
3243
  /** @description The title of the parent. */
@@ -3425,8 +3425,8 @@ export interface components {
3425
3425
  };
3426
3426
  CurriculaCurrentItemData: {
3427
3427
  /**
3428
- * Format: uuid
3429
- * @description CurriculaCurrentItemData ID.
3428
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
3429
+ * @example kubernetes-quickstart
3430
3430
  */
3431
3431
  id: string;
3432
3432
  /**
@@ -3442,8 +3442,8 @@ export interface components {
3442
3442
  currentItem: {
3443
3443
  [key: string]: {
3444
3444
  /**
3445
- * Format: uuid
3446
- * @description CurriculaCurrentItemData ID.
3445
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
3446
+ * @example kubernetes-quickstart
3447
3447
  */
3448
3448
  id: string;
3449
3449
  /**
@@ -3480,14 +3480,14 @@ export interface components {
3480
3480
  };
3481
3481
  quiz: {
3482
3482
  /**
3483
- * Format: uuid
3484
- * @description Quiz ID.
3483
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
3484
+ * @example corporate-sustainability
3485
3485
  */
3486
3486
  id: string;
3487
3487
  /**
3488
3488
  * Format: uuid
3489
3489
  * @description Organization ID that owns this quiz
3490
- * @example meshery
3490
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
3491
3491
  */
3492
3492
  orgId: string;
3493
3493
  /**
@@ -3530,15 +3530,15 @@ export interface components {
3530
3530
  * @description The pass percentage of the quiz.
3531
3531
  */
3532
3532
  passPercentage: number;
3533
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
3534
- timeLimit: number;
3533
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
3534
+ timeLimit: number | string;
3535
3535
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
3536
3536
  maxAttempts: number;
3537
3537
  /** @description The questions of the quiz. */
3538
3538
  questions: {
3539
3539
  /**
3540
- * Format: uuid
3541
- * @description Question ID.
3540
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3541
+ * @example q1
3542
3542
  */
3543
3543
  id: string;
3544
3544
  /** @description The text of the question. */
@@ -3552,8 +3552,8 @@ export interface components {
3552
3552
  /** @description The options of the question. */
3553
3553
  options: {
3554
3554
  /**
3555
- * Format: uuid
3556
- * @description QuestionOption ID.
3555
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3556
+ * @example a
3557
3557
  */
3558
3558
  id: string;
3559
3559
  /** @description The text of the questionoption. */
@@ -3575,8 +3575,8 @@ export interface components {
3575
3575
  /** @description The prerequisites of the quiz. */
3576
3576
  prerequisites: {
3577
3577
  /**
3578
- * Format: uuid
3579
- * @description Parent ID.
3578
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3579
+ * @example introduction-to-devops-and-sre
3580
3580
  */
3581
3581
  id: string;
3582
3582
  /** @description The title of the parent. */
@@ -3588,8 +3588,8 @@ export interface components {
3588
3588
  }[];
3589
3589
  parent?: {
3590
3590
  /**
3591
- * Format: uuid
3592
- * @description Parent ID.
3591
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3592
+ * @example introduction-to-devops-and-sre
3593
3593
  */
3594
3594
  id: string;
3595
3595
  /** @description The title of the parent. */
@@ -3601,8 +3601,8 @@ export interface components {
3601
3601
  };
3602
3602
  nextPage: {
3603
3603
  /**
3604
- * Format: uuid
3605
- * @description Parent ID.
3604
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3605
+ * @example introduction-to-devops-and-sre
3606
3606
  */
3607
3607
  id: string;
3608
3608
  /** @description The title of the parent. */
@@ -3634,8 +3634,8 @@ export interface components {
3634
3634
  completedAt: string;
3635
3635
  itemData: {
3636
3636
  /**
3637
- * Format: uuid
3638
- * @description Parent ID.
3637
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3638
+ * @example introduction-to-devops-and-sre
3639
3639
  */
3640
3640
  id: string;
3641
3641
  /** @description The title of the parent. */
@@ -3661,8 +3661,8 @@ export interface components {
3661
3661
  completedAt: string;
3662
3662
  itemData: {
3663
3663
  /**
3664
- * Format: uuid
3665
- * @description Parent ID.
3664
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3665
+ * @example introduction-to-devops-and-sre
3666
3666
  */
3667
3667
  id: string;
3668
3668
  /** @description The title of the parent. */
@@ -3678,8 +3678,8 @@ export interface components {
3678
3678
  contentType: "learning-path" | "challenge" | "certification";
3679
3679
  itemData: {
3680
3680
  /**
3681
- * Format: uuid
3682
- * @description CurriculaCurrentItemData ID.
3681
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
3682
+ * @example kubernetes-quickstart
3683
3683
  */
3684
3684
  id: string;
3685
3685
  /**
@@ -3699,14 +3699,14 @@ export interface components {
3699
3699
  };
3700
3700
  Quiz: {
3701
3701
  /**
3702
- * Format: uuid
3703
- * @description Quiz ID.
3702
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
3703
+ * @example corporate-sustainability
3704
3704
  */
3705
3705
  id: string;
3706
3706
  /**
3707
3707
  * Format: uuid
3708
3708
  * @description Organization ID that owns this quiz
3709
- * @example meshery
3709
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
3710
3710
  */
3711
3711
  orgId: string;
3712
3712
  /**
@@ -3749,15 +3749,15 @@ export interface components {
3749
3749
  * @description The pass percentage of the quiz.
3750
3750
  */
3751
3751
  passPercentage: number;
3752
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
3753
- timeLimit: number;
3752
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
3753
+ timeLimit: number | string;
3754
3754
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
3755
3755
  maxAttempts: number;
3756
3756
  /** @description The questions of the quiz. */
3757
3757
  questions: {
3758
3758
  /**
3759
- * Format: uuid
3760
- * @description Question ID.
3759
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3760
+ * @example q1
3761
3761
  */
3762
3762
  id: string;
3763
3763
  /** @description The text of the question. */
@@ -3771,8 +3771,8 @@ export interface components {
3771
3771
  /** @description The options of the question. */
3772
3772
  options: {
3773
3773
  /**
3774
- * Format: uuid
3775
- * @description QuestionOption ID.
3774
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3775
+ * @example a
3776
3776
  */
3777
3777
  id: string;
3778
3778
  /** @description The text of the questionoption. */
@@ -3794,8 +3794,8 @@ export interface components {
3794
3794
  /** @description The prerequisites of the quiz. */
3795
3795
  prerequisites: {
3796
3796
  /**
3797
- * Format: uuid
3798
- * @description Parent ID.
3797
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3798
+ * @example introduction-to-devops-and-sre
3799
3799
  */
3800
3800
  id: string;
3801
3801
  /** @description The title of the parent. */
@@ -3807,8 +3807,8 @@ export interface components {
3807
3807
  }[];
3808
3808
  parent?: {
3809
3809
  /**
3810
- * Format: uuid
3811
- * @description Parent ID.
3810
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3811
+ * @example introduction-to-devops-and-sre
3812
3812
  */
3813
3813
  id: string;
3814
3814
  /** @description The title of the parent. */
@@ -3820,8 +3820,8 @@ export interface components {
3820
3820
  };
3821
3821
  nextPage: {
3822
3822
  /**
3823
- * Format: uuid
3824
- * @description Parent ID.
3823
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3824
+ * @example introduction-to-devops-and-sre
3825
3825
  */
3826
3826
  id: string;
3827
3827
  /** @description The title of the parent. */
@@ -3834,8 +3834,8 @@ export interface components {
3834
3834
  };
3835
3835
  Parent: {
3836
3836
  /**
3837
- * Format: uuid
3838
- * @description Parent ID.
3837
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
3838
+ * @example introduction-to-devops-and-sre
3839
3839
  */
3840
3840
  id: string;
3841
3841
  /** @description The title of the parent. */
@@ -3849,8 +3849,8 @@ export interface components {
3849
3849
  QuestionType: "multiple-answers" | "single-answer" | "short-answer" | "essay";
3850
3850
  Question: {
3851
3851
  /**
3852
- * Format: uuid
3853
- * @description Question ID.
3852
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3853
+ * @example q1
3854
3854
  */
3855
3855
  id: string;
3856
3856
  /** @description The text of the question. */
@@ -3864,8 +3864,8 @@ export interface components {
3864
3864
  /** @description The options of the question. */
3865
3865
  options: {
3866
3866
  /**
3867
- * Format: uuid
3868
- * @description QuestionOption ID.
3867
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3868
+ * @example a
3869
3869
  */
3870
3870
  id: string;
3871
3871
  /** @description The text of the questionoption. */
@@ -3878,8 +3878,8 @@ export interface components {
3878
3878
  };
3879
3879
  QuestionOption: {
3880
3880
  /**
3881
- * Format: uuid
3882
- * @description QuestionOption ID.
3881
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
3882
+ * @example a
3883
3883
  */
3884
3884
  id: string;
3885
3885
  /** @description The text of the questionoption. */
@@ -3917,8 +3917,8 @@ export interface components {
3917
3917
  /** @description The answers of the quizsubmission. */
3918
3918
  answers: {
3919
3919
  /**
3920
- * Format: uuid
3921
- * @description ID of the associated question.
3920
+ * @description ID of the associated question. Mirrors `Question.id`, a content-authored string rather than a database row identifier, so it is not a UUID.
3921
+ * @example q1
3922
3922
  */
3923
3923
  questionId: string;
3924
3924
  /** @description Map of selected option IDs to a boolean value indicating if it was selected. */
@@ -3931,8 +3931,8 @@ export interface components {
3931
3931
  };
3932
3932
  SubmittedAnswer: {
3933
3933
  /**
3934
- * Format: uuid
3935
- * @description ID of the associated question.
3934
+ * @description ID of the associated question. Mirrors `Question.id`, a content-authored string rather than a database row identifier, so it is not a UUID.
3935
+ * @example q1
3936
3936
  */
3937
3937
  questionId: string;
3938
3938
  /** @description Map of selected option IDs to a boolean value indicating if it was selected. */
@@ -4003,8 +4003,8 @@ export interface components {
4003
4003
  /** @description The answers of the quizsubmission. */
4004
4004
  answers: {
4005
4005
  /**
4006
- * Format: uuid
4007
- * @description ID of the associated question.
4006
+ * @description ID of the associated question. Mirrors `Question.id`, a content-authored string rather than a database row identifier, so it is not a UUID.
4007
+ * @example q1
4008
4008
  */
4009
4009
  questionId: string;
4010
4010
  /** @description Map of selected option IDs to a boolean value indicating if it was selected. */
@@ -4045,14 +4045,14 @@ export interface components {
4045
4045
  };
4046
4046
  quiz: {
4047
4047
  /**
4048
- * Format: uuid
4049
- * @description Quiz ID.
4048
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
4049
+ * @example corporate-sustainability
4050
4050
  */
4051
4051
  id: string;
4052
4052
  /**
4053
4053
  * Format: uuid
4054
4054
  * @description Organization ID that owns this quiz
4055
- * @example meshery
4055
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
4056
4056
  */
4057
4057
  orgId: string;
4058
4058
  /**
@@ -4095,15 +4095,15 @@ export interface components {
4095
4095
  * @description The pass percentage of the quiz.
4096
4096
  */
4097
4097
  passPercentage: number;
4098
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
4099
- timeLimit: number;
4098
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
4099
+ timeLimit: number | string;
4100
4100
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
4101
4101
  maxAttempts: number;
4102
4102
  /** @description The questions of the quiz. */
4103
4103
  questions: {
4104
4104
  /**
4105
- * Format: uuid
4106
- * @description Question ID.
4105
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4106
+ * @example q1
4107
4107
  */
4108
4108
  id: string;
4109
4109
  /** @description The text of the question. */
@@ -4117,8 +4117,8 @@ export interface components {
4117
4117
  /** @description The options of the question. */
4118
4118
  options: {
4119
4119
  /**
4120
- * Format: uuid
4121
- * @description QuestionOption ID.
4120
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4121
+ * @example a
4122
4122
  */
4123
4123
  id: string;
4124
4124
  /** @description The text of the questionoption. */
@@ -4140,8 +4140,8 @@ export interface components {
4140
4140
  /** @description The prerequisites of the quiz. */
4141
4141
  prerequisites: {
4142
4142
  /**
4143
- * Format: uuid
4144
- * @description Parent ID.
4143
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4144
+ * @example introduction-to-devops-and-sre
4145
4145
  */
4146
4146
  id: string;
4147
4147
  /** @description The title of the parent. */
@@ -4153,8 +4153,8 @@ export interface components {
4153
4153
  }[];
4154
4154
  parent?: {
4155
4155
  /**
4156
- * Format: uuid
4157
- * @description Parent ID.
4156
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4157
+ * @example introduction-to-devops-and-sre
4158
4158
  */
4159
4159
  id: string;
4160
4160
  /** @description The title of the parent. */
@@ -4166,8 +4166,8 @@ export interface components {
4166
4166
  };
4167
4167
  nextPage: {
4168
4168
  /**
4169
- * Format: uuid
4170
- * @description Parent ID.
4169
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4170
+ * @example introduction-to-devops-and-sre
4171
4171
  */
4172
4172
  id: string;
4173
4173
  /** @description The title of the parent. */
@@ -4188,14 +4188,14 @@ export interface components {
4188
4188
  };
4189
4189
  test: {
4190
4190
  /**
4191
- * Format: uuid
4192
- * @description Quiz ID.
4191
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
4192
+ * @example corporate-sustainability
4193
4193
  */
4194
4194
  id: string;
4195
4195
  /**
4196
4196
  * Format: uuid
4197
4197
  * @description Organization ID that owns this quiz
4198
- * @example meshery
4198
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
4199
4199
  */
4200
4200
  orgId: string;
4201
4201
  /**
@@ -4238,15 +4238,15 @@ export interface components {
4238
4238
  * @description The pass percentage of the quiz.
4239
4239
  */
4240
4240
  passPercentage: number;
4241
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
4242
- timeLimit: number;
4241
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
4242
+ timeLimit: number | string;
4243
4243
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
4244
4244
  maxAttempts: number;
4245
4245
  /** @description The questions of the quiz. */
4246
4246
  questions: {
4247
4247
  /**
4248
- * Format: uuid
4249
- * @description Question ID.
4248
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4249
+ * @example q1
4250
4250
  */
4251
4251
  id: string;
4252
4252
  /** @description The text of the question. */
@@ -4260,8 +4260,8 @@ export interface components {
4260
4260
  /** @description The options of the question. */
4261
4261
  options: {
4262
4262
  /**
4263
- * Format: uuid
4264
- * @description QuestionOption ID.
4263
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4264
+ * @example a
4265
4265
  */
4266
4266
  id: string;
4267
4267
  /** @description The text of the questionoption. */
@@ -4283,8 +4283,8 @@ export interface components {
4283
4283
  /** @description The prerequisites of the quiz. */
4284
4284
  prerequisites: {
4285
4285
  /**
4286
- * Format: uuid
4287
- * @description Parent ID.
4286
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4287
+ * @example introduction-to-devops-and-sre
4288
4288
  */
4289
4289
  id: string;
4290
4290
  /** @description The title of the parent. */
@@ -4296,8 +4296,8 @@ export interface components {
4296
4296
  }[];
4297
4297
  parent?: {
4298
4298
  /**
4299
- * Format: uuid
4300
- * @description Parent ID.
4299
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4300
+ * @example introduction-to-devops-and-sre
4301
4301
  */
4302
4302
  id: string;
4303
4303
  /** @description The title of the parent. */
@@ -4309,8 +4309,8 @@ export interface components {
4309
4309
  };
4310
4310
  nextPage: {
4311
4311
  /**
4312
- * Format: uuid
4313
- * @description Parent ID.
4312
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4313
+ * @example introduction-to-devops-and-sre
4314
4314
  */
4315
4315
  id: string;
4316
4316
  /** @description The title of the parent. */
@@ -4345,14 +4345,14 @@ export interface components {
4345
4345
  };
4346
4346
  quiz: {
4347
4347
  /**
4348
- * Format: uuid
4349
- * @description Quiz ID.
4348
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
4349
+ * @example corporate-sustainability
4350
4350
  */
4351
4351
  id: string;
4352
4352
  /**
4353
4353
  * Format: uuid
4354
4354
  * @description Organization ID that owns this quiz
4355
- * @example meshery
4355
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
4356
4356
  */
4357
4357
  orgId: string;
4358
4358
  /**
@@ -4395,15 +4395,15 @@ export interface components {
4395
4395
  * @description The pass percentage of the quiz.
4396
4396
  */
4397
4397
  passPercentage: number;
4398
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
4399
- timeLimit: number;
4398
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
4399
+ timeLimit: number | string;
4400
4400
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
4401
4401
  maxAttempts: number;
4402
4402
  /** @description The questions of the quiz. */
4403
4403
  questions: {
4404
4404
  /**
4405
- * Format: uuid
4406
- * @description Question ID.
4405
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4406
+ * @example q1
4407
4407
  */
4408
4408
  id: string;
4409
4409
  /** @description The text of the question. */
@@ -4417,8 +4417,8 @@ export interface components {
4417
4417
  /** @description The options of the question. */
4418
4418
  options: {
4419
4419
  /**
4420
- * Format: uuid
4421
- * @description QuestionOption ID.
4420
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4421
+ * @example a
4422
4422
  */
4423
4423
  id: string;
4424
4424
  /** @description The text of the questionoption. */
@@ -4440,8 +4440,8 @@ export interface components {
4440
4440
  /** @description The prerequisites of the quiz. */
4441
4441
  prerequisites: {
4442
4442
  /**
4443
- * Format: uuid
4444
- * @description Parent ID.
4443
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4444
+ * @example introduction-to-devops-and-sre
4445
4445
  */
4446
4446
  id: string;
4447
4447
  /** @description The title of the parent. */
@@ -4453,8 +4453,8 @@ export interface components {
4453
4453
  }[];
4454
4454
  parent?: {
4455
4455
  /**
4456
- * Format: uuid
4457
- * @description Parent ID.
4456
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4457
+ * @example introduction-to-devops-and-sre
4458
4458
  */
4459
4459
  id: string;
4460
4460
  /** @description The title of the parent. */
@@ -4466,8 +4466,8 @@ export interface components {
4466
4466
  };
4467
4467
  nextPage: {
4468
4468
  /**
4469
- * Format: uuid
4470
- * @description Parent ID.
4469
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4470
+ * @example introduction-to-devops-and-sre
4471
4471
  */
4472
4472
  id: string;
4473
4473
  /** @description The title of the parent. */
@@ -4616,8 +4616,8 @@ export interface components {
4616
4616
  currentItem: {
4617
4617
  [key: string]: {
4618
4618
  /**
4619
- * Format: uuid
4620
- * @description CurriculaCurrentItemData ID.
4619
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
4620
+ * @example kubernetes-quickstart
4621
4621
  */
4622
4622
  id: string;
4623
4623
  /**
@@ -4654,14 +4654,14 @@ export interface components {
4654
4654
  };
4655
4655
  quiz: {
4656
4656
  /**
4657
- * Format: uuid
4658
- * @description Quiz ID.
4657
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
4658
+ * @example corporate-sustainability
4659
4659
  */
4660
4660
  id: string;
4661
4661
  /**
4662
4662
  * Format: uuid
4663
4663
  * @description Organization ID that owns this quiz
4664
- * @example meshery
4664
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
4665
4665
  */
4666
4666
  orgId: string;
4667
4667
  /**
@@ -4704,15 +4704,15 @@ export interface components {
4704
4704
  * @description The pass percentage of the quiz.
4705
4705
  */
4706
4706
  passPercentage: number;
4707
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
4708
- timeLimit: number;
4707
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
4708
+ timeLimit: number | string;
4709
4709
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
4710
4710
  maxAttempts: number;
4711
4711
  /** @description The questions of the quiz. */
4712
4712
  questions: {
4713
4713
  /**
4714
- * Format: uuid
4715
- * @description Question ID.
4714
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4715
+ * @example q1
4716
4716
  */
4717
4717
  id: string;
4718
4718
  /** @description The text of the question. */
@@ -4726,8 +4726,8 @@ export interface components {
4726
4726
  /** @description The options of the question. */
4727
4727
  options: {
4728
4728
  /**
4729
- * Format: uuid
4730
- * @description QuestionOption ID.
4729
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
4730
+ * @example a
4731
4731
  */
4732
4732
  id: string;
4733
4733
  /** @description The text of the questionoption. */
@@ -4749,8 +4749,8 @@ export interface components {
4749
4749
  /** @description The prerequisites of the quiz. */
4750
4750
  prerequisites: {
4751
4751
  /**
4752
- * Format: uuid
4753
- * @description Parent ID.
4752
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4753
+ * @example introduction-to-devops-and-sre
4754
4754
  */
4755
4755
  id: string;
4756
4756
  /** @description The title of the parent. */
@@ -4762,8 +4762,8 @@ export interface components {
4762
4762
  }[];
4763
4763
  parent?: {
4764
4764
  /**
4765
- * Format: uuid
4766
- * @description Parent ID.
4765
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4766
+ * @example introduction-to-devops-and-sre
4767
4767
  */
4768
4768
  id: string;
4769
4769
  /** @description The title of the parent. */
@@ -4775,8 +4775,8 @@ export interface components {
4775
4775
  };
4776
4776
  nextPage: {
4777
4777
  /**
4778
- * Format: uuid
4779
- * @description Parent ID.
4778
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4779
+ * @example introduction-to-devops-and-sre
4780
4780
  */
4781
4781
  id: string;
4782
4782
  /** @description The title of the parent. */
@@ -4808,8 +4808,8 @@ export interface components {
4808
4808
  completedAt: string;
4809
4809
  itemData: {
4810
4810
  /**
4811
- * Format: uuid
4812
- * @description Parent ID.
4811
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
4812
+ * @example introduction-to-devops-and-sre
4813
4813
  */
4814
4814
  id: string;
4815
4815
  /** @description The title of the parent. */
@@ -4836,8 +4836,8 @@ export interface components {
4836
4836
  contentType?: "learning-path" | "challenge" | "certification";
4837
4837
  itemData?: {
4838
4838
  /**
4839
- * Format: uuid
4840
- * @description CurriculaCurrentItemData ID.
4839
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
4840
+ * @example kubernetes-quickstart
4841
4841
  */
4842
4842
  id: string;
4843
4843
  /**
@@ -7312,8 +7312,8 @@ export interface operations {
7312
7312
  contentType: "learning-path" | "challenge" | "certification";
7313
7313
  itemData: {
7314
7314
  /**
7315
- * Format: uuid
7316
- * @description CurriculaCurrentItemData ID.
7315
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
7316
+ * @example kubernetes-quickstart
7317
7317
  */
7318
7318
  id: string;
7319
7319
  /**
@@ -7342,8 +7342,8 @@ export interface operations {
7342
7342
  currentItem: {
7343
7343
  [key: string]: {
7344
7344
  /**
7345
- * Format: uuid
7346
- * @description CurriculaCurrentItemData ID.
7345
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
7346
+ * @example kubernetes-quickstart
7347
7347
  */
7348
7348
  id: string;
7349
7349
  /**
@@ -7380,14 +7380,14 @@ export interface operations {
7380
7380
  };
7381
7381
  quiz: {
7382
7382
  /**
7383
- * Format: uuid
7384
- * @description Quiz ID.
7383
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
7384
+ * @example corporate-sustainability
7385
7385
  */
7386
7386
  id: string;
7387
7387
  /**
7388
7388
  * Format: uuid
7389
7389
  * @description Organization ID that owns this quiz
7390
- * @example meshery
7390
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
7391
7391
  */
7392
7392
  orgId: string;
7393
7393
  /**
@@ -7430,15 +7430,15 @@ export interface operations {
7430
7430
  * @description The pass percentage of the quiz.
7431
7431
  */
7432
7432
  passPercentage: number;
7433
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
7434
- timeLimit: number;
7433
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
7434
+ timeLimit: number | string;
7435
7435
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
7436
7436
  maxAttempts: number;
7437
7437
  /** @description The questions of the quiz. */
7438
7438
  questions: {
7439
7439
  /**
7440
- * Format: uuid
7441
- * @description Question ID.
7440
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
7441
+ * @example q1
7442
7442
  */
7443
7443
  id: string;
7444
7444
  /** @description The text of the question. */
@@ -7452,8 +7452,8 @@ export interface operations {
7452
7452
  /** @description The options of the question. */
7453
7453
  options: {
7454
7454
  /**
7455
- * Format: uuid
7456
- * @description QuestionOption ID.
7455
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
7456
+ * @example a
7457
7457
  */
7458
7458
  id: string;
7459
7459
  /** @description The text of the questionoption. */
@@ -7475,8 +7475,8 @@ export interface operations {
7475
7475
  /** @description The prerequisites of the quiz. */
7476
7476
  prerequisites: {
7477
7477
  /**
7478
- * Format: uuid
7479
- * @description Parent ID.
7478
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7479
+ * @example introduction-to-devops-and-sre
7480
7480
  */
7481
7481
  id: string;
7482
7482
  /** @description The title of the parent. */
@@ -7488,8 +7488,8 @@ export interface operations {
7488
7488
  }[];
7489
7489
  parent?: {
7490
7490
  /**
7491
- * Format: uuid
7492
- * @description Parent ID.
7491
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7492
+ * @example introduction-to-devops-and-sre
7493
7493
  */
7494
7494
  id: string;
7495
7495
  /** @description The title of the parent. */
@@ -7501,8 +7501,8 @@ export interface operations {
7501
7501
  };
7502
7502
  nextPage: {
7503
7503
  /**
7504
- * Format: uuid
7505
- * @description Parent ID.
7504
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7505
+ * @example introduction-to-devops-and-sre
7506
7506
  */
7507
7507
  id: string;
7508
7508
  /** @description The title of the parent. */
@@ -7534,8 +7534,8 @@ export interface operations {
7534
7534
  completedAt: string;
7535
7535
  itemData: {
7536
7536
  /**
7537
- * Format: uuid
7538
- * @description Parent ID.
7537
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7538
+ * @example introduction-to-devops-and-sre
7539
7539
  */
7540
7540
  id: string;
7541
7541
  /** @description The title of the parent. */
@@ -7562,8 +7562,8 @@ export interface operations {
7562
7562
  contentType?: "learning-path" | "challenge" | "certification";
7563
7563
  itemData?: {
7564
7564
  /**
7565
- * Format: uuid
7566
- * @description CurriculaCurrentItemData ID.
7565
+ * @description CurriculaCurrentItemData ID. Identifies the Hugo content page the learner currently has open, not a database row, so it is an opaque content-scoped string. Not a UUID - production values include slugs, full permalink URLs and the empty string.
7566
+ * @example kubernetes-quickstart
7567
7567
  */
7568
7568
  id: string;
7569
7569
  /**
@@ -7645,14 +7645,14 @@ export interface operations {
7645
7645
  content: {
7646
7646
  "application/json": {
7647
7647
  /**
7648
- * Format: uuid
7649
- * @description Quiz ID.
7648
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
7649
+ * @example corporate-sustainability
7650
7650
  */
7651
7651
  id: string;
7652
7652
  /**
7653
7653
  * Format: uuid
7654
7654
  * @description Organization ID that owns this quiz
7655
- * @example meshery
7655
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
7656
7656
  */
7657
7657
  orgId: string;
7658
7658
  /**
@@ -7695,15 +7695,15 @@ export interface operations {
7695
7695
  * @description The pass percentage of the quiz.
7696
7696
  */
7697
7697
  passPercentage: number;
7698
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
7699
- timeLimit: number;
7698
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
7699
+ timeLimit: number | string;
7700
7700
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
7701
7701
  maxAttempts: number;
7702
7702
  /** @description The questions of the quiz. */
7703
7703
  questions: {
7704
7704
  /**
7705
- * Format: uuid
7706
- * @description Question ID.
7705
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
7706
+ * @example q1
7707
7707
  */
7708
7708
  id: string;
7709
7709
  /** @description The text of the question. */
@@ -7717,8 +7717,8 @@ export interface operations {
7717
7717
  /** @description The options of the question. */
7718
7718
  options: {
7719
7719
  /**
7720
- * Format: uuid
7721
- * @description QuestionOption ID.
7720
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
7721
+ * @example a
7722
7722
  */
7723
7723
  id: string;
7724
7724
  /** @description The text of the questionoption. */
@@ -7740,8 +7740,8 @@ export interface operations {
7740
7740
  /** @description The prerequisites of the quiz. */
7741
7741
  prerequisites: {
7742
7742
  /**
7743
- * Format: uuid
7744
- * @description Parent ID.
7743
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7744
+ * @example introduction-to-devops-and-sre
7745
7745
  */
7746
7746
  id: string;
7747
7747
  /** @description The title of the parent. */
@@ -7753,8 +7753,8 @@ export interface operations {
7753
7753
  }[];
7754
7754
  parent?: {
7755
7755
  /**
7756
- * Format: uuid
7757
- * @description Parent ID.
7756
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7757
+ * @example introduction-to-devops-and-sre
7758
7758
  */
7759
7759
  id: string;
7760
7760
  /** @description The title of the parent. */
@@ -7766,8 +7766,8 @@ export interface operations {
7766
7766
  };
7767
7767
  nextPage: {
7768
7768
  /**
7769
- * Format: uuid
7770
- * @description Parent ID.
7769
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7770
+ * @example introduction-to-devops-and-sre
7771
7771
  */
7772
7772
  id: string;
7773
7773
  /** @description The title of the parent. */
@@ -7841,14 +7841,14 @@ export interface operations {
7841
7841
  content: {
7842
7842
  "application/json": {
7843
7843
  /**
7844
- * Format: uuid
7845
- * @description Quiz ID.
7844
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
7845
+ * @example corporate-sustainability
7846
7846
  */
7847
7847
  id: string;
7848
7848
  /**
7849
7849
  * Format: uuid
7850
7850
  * @description Organization ID that owns this quiz
7851
- * @example meshery
7851
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
7852
7852
  */
7853
7853
  orgId: string;
7854
7854
  /**
@@ -7891,15 +7891,15 @@ export interface operations {
7891
7891
  * @description The pass percentage of the quiz.
7892
7892
  */
7893
7893
  passPercentage: number;
7894
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
7895
- timeLimit: number;
7894
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
7895
+ timeLimit: number | string;
7896
7896
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
7897
7897
  maxAttempts: number;
7898
7898
  /** @description The questions of the quiz. */
7899
7899
  questions: {
7900
7900
  /**
7901
- * Format: uuid
7902
- * @description Question ID.
7901
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
7902
+ * @example q1
7903
7903
  */
7904
7904
  id: string;
7905
7905
  /** @description The text of the question. */
@@ -7913,8 +7913,8 @@ export interface operations {
7913
7913
  /** @description The options of the question. */
7914
7914
  options: {
7915
7915
  /**
7916
- * Format: uuid
7917
- * @description QuestionOption ID.
7916
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
7917
+ * @example a
7918
7918
  */
7919
7919
  id: string;
7920
7920
  /** @description The text of the questionoption. */
@@ -7936,8 +7936,8 @@ export interface operations {
7936
7936
  /** @description The prerequisites of the quiz. */
7937
7937
  prerequisites: {
7938
7938
  /**
7939
- * Format: uuid
7940
- * @description Parent ID.
7939
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7940
+ * @example introduction-to-devops-and-sre
7941
7941
  */
7942
7942
  id: string;
7943
7943
  /** @description The title of the parent. */
@@ -7949,8 +7949,8 @@ export interface operations {
7949
7949
  }[];
7950
7950
  parent?: {
7951
7951
  /**
7952
- * Format: uuid
7953
- * @description Parent ID.
7952
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7953
+ * @example introduction-to-devops-and-sre
7954
7954
  */
7955
7955
  id: string;
7956
7956
  /** @description The title of the parent. */
@@ -7962,8 +7962,8 @@ export interface operations {
7962
7962
  };
7963
7963
  nextPage: {
7964
7964
  /**
7965
- * Format: uuid
7966
- * @description Parent ID.
7965
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
7966
+ * @example introduction-to-devops-and-sre
7967
7967
  */
7968
7968
  id: string;
7969
7969
  /** @description The title of the parent. */
@@ -8056,14 +8056,14 @@ export interface operations {
8056
8056
  };
8057
8057
  quiz: {
8058
8058
  /**
8059
- * Format: uuid
8060
- * @description Quiz ID.
8059
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
8060
+ * @example corporate-sustainability
8061
8061
  */
8062
8062
  id: string;
8063
8063
  /**
8064
8064
  * Format: uuid
8065
8065
  * @description Organization ID that owns this quiz
8066
- * @example meshery
8066
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
8067
8067
  */
8068
8068
  orgId: string;
8069
8069
  /**
@@ -8106,15 +8106,15 @@ export interface operations {
8106
8106
  * @description The pass percentage of the quiz.
8107
8107
  */
8108
8108
  passPercentage: number;
8109
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
8110
- timeLimit: number;
8109
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
8110
+ timeLimit: number | string;
8111
8111
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
8112
8112
  maxAttempts: number;
8113
8113
  /** @description The questions of the quiz. */
8114
8114
  questions: {
8115
8115
  /**
8116
- * Format: uuid
8117
- * @description Question ID.
8116
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
8117
+ * @example q1
8118
8118
  */
8119
8119
  id: string;
8120
8120
  /** @description The text of the question. */
@@ -8128,8 +8128,8 @@ export interface operations {
8128
8128
  /** @description The options of the question. */
8129
8129
  options: {
8130
8130
  /**
8131
- * Format: uuid
8132
- * @description QuestionOption ID.
8131
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
8132
+ * @example a
8133
8133
  */
8134
8134
  id: string;
8135
8135
  /** @description The text of the questionoption. */
@@ -8151,8 +8151,8 @@ export interface operations {
8151
8151
  /** @description The prerequisites of the quiz. */
8152
8152
  prerequisites: {
8153
8153
  /**
8154
- * Format: uuid
8155
- * @description Parent ID.
8154
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8155
+ * @example introduction-to-devops-and-sre
8156
8156
  */
8157
8157
  id: string;
8158
8158
  /** @description The title of the parent. */
@@ -8164,8 +8164,8 @@ export interface operations {
8164
8164
  }[];
8165
8165
  parent?: {
8166
8166
  /**
8167
- * Format: uuid
8168
- * @description Parent ID.
8167
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8168
+ * @example introduction-to-devops-and-sre
8169
8169
  */
8170
8170
  id: string;
8171
8171
  /** @description The title of the parent. */
@@ -8177,8 +8177,8 @@ export interface operations {
8177
8177
  };
8178
8178
  nextPage: {
8179
8179
  /**
8180
- * Format: uuid
8181
- * @description Parent ID.
8180
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8181
+ * @example introduction-to-devops-and-sre
8182
8182
  */
8183
8183
  id: string;
8184
8184
  /** @description The title of the parent. */
@@ -8261,8 +8261,8 @@ export interface operations {
8261
8261
  /** @description The answers of the quizsubmission. */
8262
8262
  answers: {
8263
8263
  /**
8264
- * Format: uuid
8265
- * @description ID of the associated question.
8264
+ * @description ID of the associated question. Mirrors `Question.id`, a content-authored string rather than a database row identifier, so it is not a UUID.
8265
+ * @example q1
8266
8266
  */
8267
8267
  questionId: string;
8268
8268
  /** @description Map of selected option IDs to a boolean value indicating if it was selected. */
@@ -8305,14 +8305,14 @@ export interface operations {
8305
8305
  };
8306
8306
  quiz: {
8307
8307
  /**
8308
- * Format: uuid
8309
- * @description Quiz ID.
8308
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
8309
+ * @example corporate-sustainability
8310
8310
  */
8311
8311
  id: string;
8312
8312
  /**
8313
8313
  * Format: uuid
8314
8314
  * @description Organization ID that owns this quiz
8315
- * @example meshery
8315
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
8316
8316
  */
8317
8317
  orgId: string;
8318
8318
  /**
@@ -8355,15 +8355,15 @@ export interface operations {
8355
8355
  * @description The pass percentage of the quiz.
8356
8356
  */
8357
8357
  passPercentage: number;
8358
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
8359
- timeLimit: number;
8358
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
8359
+ timeLimit: number | string;
8360
8360
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
8361
8361
  maxAttempts: number;
8362
8362
  /** @description The questions of the quiz. */
8363
8363
  questions: {
8364
8364
  /**
8365
- * Format: uuid
8366
- * @description Question ID.
8365
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
8366
+ * @example q1
8367
8367
  */
8368
8368
  id: string;
8369
8369
  /** @description The text of the question. */
@@ -8377,8 +8377,8 @@ export interface operations {
8377
8377
  /** @description The options of the question. */
8378
8378
  options: {
8379
8379
  /**
8380
- * Format: uuid
8381
- * @description QuestionOption ID.
8380
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
8381
+ * @example a
8382
8382
  */
8383
8383
  id: string;
8384
8384
  /** @description The text of the questionoption. */
@@ -8400,8 +8400,8 @@ export interface operations {
8400
8400
  /** @description The prerequisites of the quiz. */
8401
8401
  prerequisites: {
8402
8402
  /**
8403
- * Format: uuid
8404
- * @description Parent ID.
8403
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8404
+ * @example introduction-to-devops-and-sre
8405
8405
  */
8406
8406
  id: string;
8407
8407
  /** @description The title of the parent. */
@@ -8413,8 +8413,8 @@ export interface operations {
8413
8413
  }[];
8414
8414
  parent?: {
8415
8415
  /**
8416
- * Format: uuid
8417
- * @description Parent ID.
8416
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8417
+ * @example introduction-to-devops-and-sre
8418
8418
  */
8419
8419
  id: string;
8420
8420
  /** @description The title of the parent. */
@@ -8426,8 +8426,8 @@ export interface operations {
8426
8426
  };
8427
8427
  nextPage: {
8428
8428
  /**
8429
- * Format: uuid
8430
- * @description Parent ID.
8429
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8430
+ * @example introduction-to-devops-and-sre
8431
8431
  */
8432
8432
  id: string;
8433
8433
  /** @description The title of the parent. */
@@ -8539,14 +8539,14 @@ export interface operations {
8539
8539
  /** @description The test the counts refer to. */
8540
8540
  test?: {
8541
8541
  /**
8542
- * Format: uuid
8543
- * @description Quiz ID.
8542
+ * @description Quiz ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID - stored records carry authored slugs.
8543
+ * @example corporate-sustainability
8544
8544
  */
8545
8545
  id: string;
8546
8546
  /**
8547
8547
  * Format: uuid
8548
8548
  * @description Organization ID that owns this quiz
8549
- * @example meshery
8549
+ * @example d011fd20-a3f5-4480-883b-dfb34321d168
8550
8550
  */
8551
8551
  orgId: string;
8552
8552
  /**
@@ -8589,15 +8589,15 @@ export interface operations {
8589
8589
  * @description The pass percentage of the quiz.
8590
8590
  */
8591
8591
  passPercentage: number;
8592
- /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
8593
- timeLimit: number;
8592
+ /** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. Accepts a number or a string because both forms are real production data - the Hugo theme emits a JSON number, while payloads persisted by earlier revisions hold a string such as "25" or the non-numeric sentinel "infinite". A string that does not parse to a positive number means "no time limit" and normalizes to 0. */
8593
+ timeLimit: number | string;
8594
8594
  /** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
8595
8595
  maxAttempts: number;
8596
8596
  /** @description The questions of the quiz. */
8597
8597
  questions: {
8598
8598
  /**
8599
- * Format: uuid
8600
- * @description Question ID.
8599
+ * @description Question ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
8600
+ * @example q1
8601
8601
  */
8602
8602
  id: string;
8603
8603
  /** @description The text of the question. */
@@ -8611,8 +8611,8 @@ export interface operations {
8611
8611
  /** @description The options of the question. */
8612
8612
  options: {
8613
8613
  /**
8614
- * Format: uuid
8615
- * @description QuestionOption ID.
8614
+ * @description QuestionOption ID. Authored in the quiz's Hugo front matter, not a database row, so it is an opaque content-scoped string. Not a UUID.
8615
+ * @example a
8616
8616
  */
8617
8617
  id: string;
8618
8618
  /** @description The text of the questionoption. */
@@ -8634,8 +8634,8 @@ export interface operations {
8634
8634
  /** @description The prerequisites of the quiz. */
8635
8635
  prerequisites: {
8636
8636
  /**
8637
- * Format: uuid
8638
- * @description Parent ID.
8637
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8638
+ * @example introduction-to-devops-and-sre
8639
8639
  */
8640
8640
  id: string;
8641
8641
  /** @description The title of the parent. */
@@ -8647,8 +8647,8 @@ export interface operations {
8647
8647
  }[];
8648
8648
  parent?: {
8649
8649
  /**
8650
- * Format: uuid
8651
- * @description Parent ID.
8650
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8651
+ * @example introduction-to-devops-and-sre
8652
8652
  */
8653
8653
  id: string;
8654
8654
  /** @description The title of the parent. */
@@ -8660,8 +8660,8 @@ export interface operations {
8660
8660
  };
8661
8661
  nextPage: {
8662
8662
  /**
8663
- * Format: uuid
8664
- * @description Parent ID.
8663
+ * @description Parent ID. Identifies a Hugo content page, not a database row, so it is an opaque content-scoped string. Not a UUID. See `Quiz.id`.
8664
+ * @example introduction-to-devops-and-sre
8665
8665
  */
8666
8666
  id: string;
8667
8667
  /** @description The title of the parent. */