@meshery/schemas 1.3.41 → 1.3.43
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.
- package/dist/cloudApi.d.mts +57 -57
- package/dist/cloudApi.d.ts +57 -57
- package/dist/constructs/v1beta1/console/Console.d.ts +458 -0
- package/dist/constructs/v1beta1/console/Console.js +1 -0
- package/dist/constructs/v1beta1/console/Console.mjs +0 -0
- package/dist/constructs/v1beta1/console/ConsoleSchema.d.ts +2 -0
- package/dist/constructs/v1beta1/console/ConsoleSchema.js +4 -0
- package/dist/constructs/v1beta1/console/ConsoleSchema.mjs +4 -0
- package/dist/constructs/v1beta3/academy/Academy.d.ts +279 -277
- package/dist/constructs/v1beta3/academy/AcademySchema.js +3 -3
- package/dist/constructs/v1beta3/academy/AcademySchema.mjs +3 -3
- package/dist/mesheryApi.d.mts +3245 -2073
- package/dist/mesheryApi.d.ts +3245 -2073
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
|
@@ -1737,14 +1737,14 @@ export interface components {
|
|
|
1737
1737
|
/** @description The test the counts refer to. */
|
|
1738
1738
|
test?: {
|
|
1739
1739
|
/**
|
|
1740
|
-
*
|
|
1741
|
-
* @
|
|
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
|
|
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
|
-
*
|
|
1798
|
-
* @
|
|
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
|
-
*
|
|
1813
|
-
* @
|
|
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
|
-
*
|
|
1836
|
-
* @
|
|
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
|
-
*
|
|
1849
|
-
* @
|
|
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
|
-
*
|
|
1862
|
-
* @
|
|
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
|
-
*
|
|
2953
|
-
* @
|
|
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
|
|
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
|
-
*
|
|
3010
|
-
* @
|
|
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
|
-
*
|
|
3025
|
-
* @
|
|
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
|
-
*
|
|
3048
|
-
* @
|
|
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
|
-
*
|
|
3061
|
-
* @
|
|
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
|
-
*
|
|
3074
|
-
* @
|
|
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
|
-
*
|
|
3119
|
-
* @
|
|
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
|
|
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
|
-
*
|
|
3176
|
-
* @
|
|
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
|
-
*
|
|
3191
|
-
* @
|
|
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
|
-
*
|
|
3214
|
-
* @
|
|
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
|
-
*
|
|
3227
|
-
* @
|
|
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
|
-
*
|
|
3240
|
-
* @
|
|
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
|
-
*
|
|
3429
|
-
* @
|
|
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
|
-
*
|
|
3446
|
-
* @
|
|
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
|
-
*
|
|
3484
|
-
* @
|
|
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
|
|
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
|
-
*
|
|
3541
|
-
* @
|
|
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
|
-
*
|
|
3556
|
-
* @
|
|
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
|
-
*
|
|
3579
|
-
* @
|
|
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
|
-
*
|
|
3592
|
-
* @
|
|
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
|
-
*
|
|
3605
|
-
* @
|
|
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
|
-
*
|
|
3638
|
-
* @
|
|
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
|
-
*
|
|
3665
|
-
* @
|
|
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
|
-
*
|
|
3682
|
-
* @
|
|
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
|
-
*
|
|
3703
|
-
* @
|
|
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
|
|
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
|
-
*
|
|
3760
|
-
* @
|
|
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
|
-
*
|
|
3775
|
-
* @
|
|
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
|
-
*
|
|
3798
|
-
* @
|
|
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
|
-
*
|
|
3811
|
-
* @
|
|
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
|
-
*
|
|
3824
|
-
* @
|
|
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
|
-
*
|
|
3838
|
-
* @
|
|
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
|
-
*
|
|
3853
|
-
* @
|
|
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
|
-
*
|
|
3868
|
-
* @
|
|
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
|
-
*
|
|
3882
|
-
* @
|
|
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. */
|
|
@@ -3896,6 +3896,7 @@ export interface components {
|
|
|
3896
3896
|
*/
|
|
3897
3897
|
registrationId: string;
|
|
3898
3898
|
};
|
|
3899
|
+
/** @description A learner's answers to a quiz. Submitted as the `submitQuiz` request body and persisted verbatim as `TestSubmission.submissionData`. `registrationId` and `userId` are a convenience echo of the authoritative values on the enclosing `TestSubmission` (`registrationId` / `userId`, backed by the `registration_id` and `owner` `uuid NOT NULL` columns); read them from the enclosing submission, not from here. */
|
|
3899
3900
|
QuizSubmission: {
|
|
3900
3901
|
/**
|
|
3901
3902
|
* Format: uuid
|
|
@@ -3906,19 +3907,19 @@ export interface components {
|
|
|
3906
3907
|
quizAbsPath: string;
|
|
3907
3908
|
/**
|
|
3908
3909
|
* Format: uuid
|
|
3909
|
-
* @description ID of the associated registration.
|
|
3910
|
+
* @description ID of the associated registration. Optional, because a submission may not carry this echo; when it is absent the authoritative value is `TestSubmission.registrationId`. Absence MUST be expressed as `null` or an omitted property - the empty string is not a valid identifier.
|
|
3910
3911
|
*/
|
|
3911
|
-
registrationId
|
|
3912
|
+
registrationId?: string | null;
|
|
3912
3913
|
/**
|
|
3913
3914
|
* Format: uuid
|
|
3914
|
-
* @description ID of the user who owns or created this resource.
|
|
3915
|
+
* @description ID of the user who owns or created this resource. Optional, because a submission may not carry this echo; when it is absent the authoritative value is `TestSubmission.userId`. Absence MUST be expressed as `null` or an omitted property - the empty string is not a valid identifier.
|
|
3915
3916
|
*/
|
|
3916
|
-
userId
|
|
3917
|
+
userId?: string | null;
|
|
3917
3918
|
/** @description The answers of the quizsubmission. */
|
|
3918
3919
|
answers: {
|
|
3919
3920
|
/**
|
|
3920
|
-
*
|
|
3921
|
-
* @
|
|
3921
|
+
* @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.
|
|
3922
|
+
* @example q1
|
|
3922
3923
|
*/
|
|
3923
3924
|
questionId: string;
|
|
3924
3925
|
/** @description Map of selected option IDs to a boolean value indicating if it was selected. */
|
|
@@ -3931,8 +3932,8 @@ export interface components {
|
|
|
3931
3932
|
};
|
|
3932
3933
|
SubmittedAnswer: {
|
|
3933
3934
|
/**
|
|
3934
|
-
*
|
|
3935
|
-
* @
|
|
3935
|
+
* @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.
|
|
3936
|
+
* @example q1
|
|
3936
3937
|
*/
|
|
3937
3938
|
questionId: string;
|
|
3938
3939
|
/** @description Map of selected option IDs to a boolean value indicating if it was selected. */
|
|
@@ -3982,6 +3983,7 @@ export interface components {
|
|
|
3982
3983
|
* @description The submitted at of the testsubmission.
|
|
3983
3984
|
*/
|
|
3984
3985
|
submittedAt?: string;
|
|
3986
|
+
/** @description A learner's answers to a quiz. Submitted as the `submitQuiz` request body and persisted verbatim as `TestSubmission.submissionData`. `registrationId` and `userId` are a convenience echo of the authoritative values on the enclosing `TestSubmission` (`registrationId` / `userId`, backed by the `registration_id` and `owner` `uuid NOT NULL` columns); read them from the enclosing submission, not from here. */
|
|
3985
3987
|
submissionData?: {
|
|
3986
3988
|
/**
|
|
3987
3989
|
* Format: uuid
|
|
@@ -3992,19 +3994,19 @@ export interface components {
|
|
|
3992
3994
|
quizAbsPath: string;
|
|
3993
3995
|
/**
|
|
3994
3996
|
* Format: uuid
|
|
3995
|
-
* @description ID of the associated registration.
|
|
3997
|
+
* @description ID of the associated registration. Optional, because a submission may not carry this echo; when it is absent the authoritative value is `TestSubmission.registrationId`. Absence MUST be expressed as `null` or an omitted property - the empty string is not a valid identifier.
|
|
3996
3998
|
*/
|
|
3997
|
-
registrationId
|
|
3999
|
+
registrationId?: string | null;
|
|
3998
4000
|
/**
|
|
3999
4001
|
* Format: uuid
|
|
4000
|
-
* @description ID of the user who owns or created this resource.
|
|
4002
|
+
* @description ID of the user who owns or created this resource. Optional, because a submission may not carry this echo; when it is absent the authoritative value is `TestSubmission.userId`. Absence MUST be expressed as `null` or an omitted property - the empty string is not a valid identifier.
|
|
4001
4003
|
*/
|
|
4002
|
-
userId
|
|
4004
|
+
userId?: string | null;
|
|
4003
4005
|
/** @description The answers of the quizsubmission. */
|
|
4004
4006
|
answers: {
|
|
4005
4007
|
/**
|
|
4006
|
-
*
|
|
4007
|
-
* @
|
|
4008
|
+
* @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.
|
|
4009
|
+
* @example q1
|
|
4008
4010
|
*/
|
|
4009
4011
|
questionId: string;
|
|
4010
4012
|
/** @description Map of selected option IDs to a boolean value indicating if it was selected. */
|
|
@@ -4045,14 +4047,14 @@ export interface components {
|
|
|
4045
4047
|
};
|
|
4046
4048
|
quiz: {
|
|
4047
4049
|
/**
|
|
4048
|
-
*
|
|
4049
|
-
* @
|
|
4050
|
+
* @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.
|
|
4051
|
+
* @example corporate-sustainability
|
|
4050
4052
|
*/
|
|
4051
4053
|
id: string;
|
|
4052
4054
|
/**
|
|
4053
4055
|
* Format: uuid
|
|
4054
4056
|
* @description Organization ID that owns this quiz
|
|
4055
|
-
* @example
|
|
4057
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
4056
4058
|
*/
|
|
4057
4059
|
orgId: string;
|
|
4058
4060
|
/**
|
|
@@ -4095,15 +4097,15 @@ export interface components {
|
|
|
4095
4097
|
* @description The pass percentage of the quiz.
|
|
4096
4098
|
*/
|
|
4097
4099
|
passPercentage: number;
|
|
4098
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
4099
|
-
timeLimit: number;
|
|
4100
|
+
/** @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. */
|
|
4101
|
+
timeLimit: number | string;
|
|
4100
4102
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
4101
4103
|
maxAttempts: number;
|
|
4102
4104
|
/** @description The questions of the quiz. */
|
|
4103
4105
|
questions: {
|
|
4104
4106
|
/**
|
|
4105
|
-
*
|
|
4106
|
-
* @
|
|
4107
|
+
* @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.
|
|
4108
|
+
* @example q1
|
|
4107
4109
|
*/
|
|
4108
4110
|
id: string;
|
|
4109
4111
|
/** @description The text of the question. */
|
|
@@ -4117,8 +4119,8 @@ export interface components {
|
|
|
4117
4119
|
/** @description The options of the question. */
|
|
4118
4120
|
options: {
|
|
4119
4121
|
/**
|
|
4120
|
-
*
|
|
4121
|
-
* @
|
|
4122
|
+
* @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.
|
|
4123
|
+
* @example a
|
|
4122
4124
|
*/
|
|
4123
4125
|
id: string;
|
|
4124
4126
|
/** @description The text of the questionoption. */
|
|
@@ -4140,8 +4142,8 @@ export interface components {
|
|
|
4140
4142
|
/** @description The prerequisites of the quiz. */
|
|
4141
4143
|
prerequisites: {
|
|
4142
4144
|
/**
|
|
4143
|
-
*
|
|
4144
|
-
* @
|
|
4145
|
+
* @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`.
|
|
4146
|
+
* @example introduction-to-devops-and-sre
|
|
4145
4147
|
*/
|
|
4146
4148
|
id: string;
|
|
4147
4149
|
/** @description The title of the parent. */
|
|
@@ -4153,8 +4155,8 @@ export interface components {
|
|
|
4153
4155
|
}[];
|
|
4154
4156
|
parent?: {
|
|
4155
4157
|
/**
|
|
4156
|
-
*
|
|
4157
|
-
* @
|
|
4158
|
+
* @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`.
|
|
4159
|
+
* @example introduction-to-devops-and-sre
|
|
4158
4160
|
*/
|
|
4159
4161
|
id: string;
|
|
4160
4162
|
/** @description The title of the parent. */
|
|
@@ -4166,8 +4168,8 @@ export interface components {
|
|
|
4166
4168
|
};
|
|
4167
4169
|
nextPage: {
|
|
4168
4170
|
/**
|
|
4169
|
-
*
|
|
4170
|
-
* @
|
|
4171
|
+
* @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`.
|
|
4172
|
+
* @example introduction-to-devops-and-sre
|
|
4171
4173
|
*/
|
|
4172
4174
|
id: string;
|
|
4173
4175
|
/** @description The title of the parent. */
|
|
@@ -4188,14 +4190,14 @@ export interface components {
|
|
|
4188
4190
|
};
|
|
4189
4191
|
test: {
|
|
4190
4192
|
/**
|
|
4191
|
-
*
|
|
4192
|
-
* @
|
|
4193
|
+
* @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.
|
|
4194
|
+
* @example corporate-sustainability
|
|
4193
4195
|
*/
|
|
4194
4196
|
id: string;
|
|
4195
4197
|
/**
|
|
4196
4198
|
* Format: uuid
|
|
4197
4199
|
* @description Organization ID that owns this quiz
|
|
4198
|
-
* @example
|
|
4200
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
4199
4201
|
*/
|
|
4200
4202
|
orgId: string;
|
|
4201
4203
|
/**
|
|
@@ -4238,15 +4240,15 @@ export interface components {
|
|
|
4238
4240
|
* @description The pass percentage of the quiz.
|
|
4239
4241
|
*/
|
|
4240
4242
|
passPercentage: number;
|
|
4241
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
4242
|
-
timeLimit: number;
|
|
4243
|
+
/** @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. */
|
|
4244
|
+
timeLimit: number | string;
|
|
4243
4245
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
4244
4246
|
maxAttempts: number;
|
|
4245
4247
|
/** @description The questions of the quiz. */
|
|
4246
4248
|
questions: {
|
|
4247
4249
|
/**
|
|
4248
|
-
*
|
|
4249
|
-
* @
|
|
4250
|
+
* @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.
|
|
4251
|
+
* @example q1
|
|
4250
4252
|
*/
|
|
4251
4253
|
id: string;
|
|
4252
4254
|
/** @description The text of the question. */
|
|
@@ -4260,8 +4262,8 @@ export interface components {
|
|
|
4260
4262
|
/** @description The options of the question. */
|
|
4261
4263
|
options: {
|
|
4262
4264
|
/**
|
|
4263
|
-
*
|
|
4264
|
-
* @
|
|
4265
|
+
* @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.
|
|
4266
|
+
* @example a
|
|
4265
4267
|
*/
|
|
4266
4268
|
id: string;
|
|
4267
4269
|
/** @description The text of the questionoption. */
|
|
@@ -4283,8 +4285,8 @@ export interface components {
|
|
|
4283
4285
|
/** @description The prerequisites of the quiz. */
|
|
4284
4286
|
prerequisites: {
|
|
4285
4287
|
/**
|
|
4286
|
-
*
|
|
4287
|
-
* @
|
|
4288
|
+
* @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`.
|
|
4289
|
+
* @example introduction-to-devops-and-sre
|
|
4288
4290
|
*/
|
|
4289
4291
|
id: string;
|
|
4290
4292
|
/** @description The title of the parent. */
|
|
@@ -4296,8 +4298,8 @@ export interface components {
|
|
|
4296
4298
|
}[];
|
|
4297
4299
|
parent?: {
|
|
4298
4300
|
/**
|
|
4299
|
-
*
|
|
4300
|
-
* @
|
|
4301
|
+
* @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`.
|
|
4302
|
+
* @example introduction-to-devops-and-sre
|
|
4301
4303
|
*/
|
|
4302
4304
|
id: string;
|
|
4303
4305
|
/** @description The title of the parent. */
|
|
@@ -4309,8 +4311,8 @@ export interface components {
|
|
|
4309
4311
|
};
|
|
4310
4312
|
nextPage: {
|
|
4311
4313
|
/**
|
|
4312
|
-
*
|
|
4313
|
-
* @
|
|
4314
|
+
* @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`.
|
|
4315
|
+
* @example introduction-to-devops-and-sre
|
|
4314
4316
|
*/
|
|
4315
4317
|
id: string;
|
|
4316
4318
|
/** @description The title of the parent. */
|
|
@@ -4345,14 +4347,14 @@ export interface components {
|
|
|
4345
4347
|
};
|
|
4346
4348
|
quiz: {
|
|
4347
4349
|
/**
|
|
4348
|
-
*
|
|
4349
|
-
* @
|
|
4350
|
+
* @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.
|
|
4351
|
+
* @example corporate-sustainability
|
|
4350
4352
|
*/
|
|
4351
4353
|
id: string;
|
|
4352
4354
|
/**
|
|
4353
4355
|
* Format: uuid
|
|
4354
4356
|
* @description Organization ID that owns this quiz
|
|
4355
|
-
* @example
|
|
4357
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
4356
4358
|
*/
|
|
4357
4359
|
orgId: string;
|
|
4358
4360
|
/**
|
|
@@ -4395,15 +4397,15 @@ export interface components {
|
|
|
4395
4397
|
* @description The pass percentage of the quiz.
|
|
4396
4398
|
*/
|
|
4397
4399
|
passPercentage: number;
|
|
4398
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
4399
|
-
timeLimit: number;
|
|
4400
|
+
/** @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. */
|
|
4401
|
+
timeLimit: number | string;
|
|
4400
4402
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
4401
4403
|
maxAttempts: number;
|
|
4402
4404
|
/** @description The questions of the quiz. */
|
|
4403
4405
|
questions: {
|
|
4404
4406
|
/**
|
|
4405
|
-
*
|
|
4406
|
-
* @
|
|
4407
|
+
* @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.
|
|
4408
|
+
* @example q1
|
|
4407
4409
|
*/
|
|
4408
4410
|
id: string;
|
|
4409
4411
|
/** @description The text of the question. */
|
|
@@ -4417,8 +4419,8 @@ export interface components {
|
|
|
4417
4419
|
/** @description The options of the question. */
|
|
4418
4420
|
options: {
|
|
4419
4421
|
/**
|
|
4420
|
-
*
|
|
4421
|
-
* @
|
|
4422
|
+
* @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.
|
|
4423
|
+
* @example a
|
|
4422
4424
|
*/
|
|
4423
4425
|
id: string;
|
|
4424
4426
|
/** @description The text of the questionoption. */
|
|
@@ -4440,8 +4442,8 @@ export interface components {
|
|
|
4440
4442
|
/** @description The prerequisites of the quiz. */
|
|
4441
4443
|
prerequisites: {
|
|
4442
4444
|
/**
|
|
4443
|
-
*
|
|
4444
|
-
* @
|
|
4445
|
+
* @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`.
|
|
4446
|
+
* @example introduction-to-devops-and-sre
|
|
4445
4447
|
*/
|
|
4446
4448
|
id: string;
|
|
4447
4449
|
/** @description The title of the parent. */
|
|
@@ -4453,8 +4455,8 @@ export interface components {
|
|
|
4453
4455
|
}[];
|
|
4454
4456
|
parent?: {
|
|
4455
4457
|
/**
|
|
4456
|
-
*
|
|
4457
|
-
* @
|
|
4458
|
+
* @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`.
|
|
4459
|
+
* @example introduction-to-devops-and-sre
|
|
4458
4460
|
*/
|
|
4459
4461
|
id: string;
|
|
4460
4462
|
/** @description The title of the parent. */
|
|
@@ -4466,8 +4468,8 @@ export interface components {
|
|
|
4466
4468
|
};
|
|
4467
4469
|
nextPage: {
|
|
4468
4470
|
/**
|
|
4469
|
-
*
|
|
4470
|
-
* @
|
|
4471
|
+
* @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`.
|
|
4472
|
+
* @example introduction-to-devops-and-sre
|
|
4471
4473
|
*/
|
|
4472
4474
|
id: string;
|
|
4473
4475
|
/** @description The title of the parent. */
|
|
@@ -4616,8 +4618,8 @@ export interface components {
|
|
|
4616
4618
|
currentItem: {
|
|
4617
4619
|
[key: string]: {
|
|
4618
4620
|
/**
|
|
4619
|
-
*
|
|
4620
|
-
* @
|
|
4621
|
+
* @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.
|
|
4622
|
+
* @example kubernetes-quickstart
|
|
4621
4623
|
*/
|
|
4622
4624
|
id: string;
|
|
4623
4625
|
/**
|
|
@@ -4654,14 +4656,14 @@ export interface components {
|
|
|
4654
4656
|
};
|
|
4655
4657
|
quiz: {
|
|
4656
4658
|
/**
|
|
4657
|
-
*
|
|
4658
|
-
* @
|
|
4659
|
+
* @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.
|
|
4660
|
+
* @example corporate-sustainability
|
|
4659
4661
|
*/
|
|
4660
4662
|
id: string;
|
|
4661
4663
|
/**
|
|
4662
4664
|
* Format: uuid
|
|
4663
4665
|
* @description Organization ID that owns this quiz
|
|
4664
|
-
* @example
|
|
4666
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
4665
4667
|
*/
|
|
4666
4668
|
orgId: string;
|
|
4667
4669
|
/**
|
|
@@ -4704,15 +4706,15 @@ export interface components {
|
|
|
4704
4706
|
* @description The pass percentage of the quiz.
|
|
4705
4707
|
*/
|
|
4706
4708
|
passPercentage: number;
|
|
4707
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
4708
|
-
timeLimit: number;
|
|
4709
|
+
/** @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. */
|
|
4710
|
+
timeLimit: number | string;
|
|
4709
4711
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
4710
4712
|
maxAttempts: number;
|
|
4711
4713
|
/** @description The questions of the quiz. */
|
|
4712
4714
|
questions: {
|
|
4713
4715
|
/**
|
|
4714
|
-
*
|
|
4715
|
-
* @
|
|
4716
|
+
* @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.
|
|
4717
|
+
* @example q1
|
|
4716
4718
|
*/
|
|
4717
4719
|
id: string;
|
|
4718
4720
|
/** @description The text of the question. */
|
|
@@ -4726,8 +4728,8 @@ export interface components {
|
|
|
4726
4728
|
/** @description The options of the question. */
|
|
4727
4729
|
options: {
|
|
4728
4730
|
/**
|
|
4729
|
-
*
|
|
4730
|
-
* @
|
|
4731
|
+
* @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.
|
|
4732
|
+
* @example a
|
|
4731
4733
|
*/
|
|
4732
4734
|
id: string;
|
|
4733
4735
|
/** @description The text of the questionoption. */
|
|
@@ -4749,8 +4751,8 @@ export interface components {
|
|
|
4749
4751
|
/** @description The prerequisites of the quiz. */
|
|
4750
4752
|
prerequisites: {
|
|
4751
4753
|
/**
|
|
4752
|
-
*
|
|
4753
|
-
* @
|
|
4754
|
+
* @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`.
|
|
4755
|
+
* @example introduction-to-devops-and-sre
|
|
4754
4756
|
*/
|
|
4755
4757
|
id: string;
|
|
4756
4758
|
/** @description The title of the parent. */
|
|
@@ -4762,8 +4764,8 @@ export interface components {
|
|
|
4762
4764
|
}[];
|
|
4763
4765
|
parent?: {
|
|
4764
4766
|
/**
|
|
4765
|
-
*
|
|
4766
|
-
* @
|
|
4767
|
+
* @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`.
|
|
4768
|
+
* @example introduction-to-devops-and-sre
|
|
4767
4769
|
*/
|
|
4768
4770
|
id: string;
|
|
4769
4771
|
/** @description The title of the parent. */
|
|
@@ -4775,8 +4777,8 @@ export interface components {
|
|
|
4775
4777
|
};
|
|
4776
4778
|
nextPage: {
|
|
4777
4779
|
/**
|
|
4778
|
-
*
|
|
4779
|
-
* @
|
|
4780
|
+
* @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`.
|
|
4781
|
+
* @example introduction-to-devops-and-sre
|
|
4780
4782
|
*/
|
|
4781
4783
|
id: string;
|
|
4782
4784
|
/** @description The title of the parent. */
|
|
@@ -4808,8 +4810,8 @@ export interface components {
|
|
|
4808
4810
|
completedAt: string;
|
|
4809
4811
|
itemData: {
|
|
4810
4812
|
/**
|
|
4811
|
-
*
|
|
4812
|
-
* @
|
|
4813
|
+
* @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`.
|
|
4814
|
+
* @example introduction-to-devops-and-sre
|
|
4813
4815
|
*/
|
|
4814
4816
|
id: string;
|
|
4815
4817
|
/** @description The title of the parent. */
|
|
@@ -4836,8 +4838,8 @@ export interface components {
|
|
|
4836
4838
|
contentType?: "learning-path" | "challenge" | "certification";
|
|
4837
4839
|
itemData?: {
|
|
4838
4840
|
/**
|
|
4839
|
-
*
|
|
4840
|
-
* @
|
|
4841
|
+
* @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.
|
|
4842
|
+
* @example kubernetes-quickstart
|
|
4841
4843
|
*/
|
|
4842
4844
|
id: string;
|
|
4843
4845
|
/**
|
|
@@ -7312,8 +7314,8 @@ export interface operations {
|
|
|
7312
7314
|
contentType: "learning-path" | "challenge" | "certification";
|
|
7313
7315
|
itemData: {
|
|
7314
7316
|
/**
|
|
7315
|
-
*
|
|
7316
|
-
* @
|
|
7317
|
+
* @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.
|
|
7318
|
+
* @example kubernetes-quickstart
|
|
7317
7319
|
*/
|
|
7318
7320
|
id: string;
|
|
7319
7321
|
/**
|
|
@@ -7342,8 +7344,8 @@ export interface operations {
|
|
|
7342
7344
|
currentItem: {
|
|
7343
7345
|
[key: string]: {
|
|
7344
7346
|
/**
|
|
7345
|
-
*
|
|
7346
|
-
* @
|
|
7347
|
+
* @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.
|
|
7348
|
+
* @example kubernetes-quickstart
|
|
7347
7349
|
*/
|
|
7348
7350
|
id: string;
|
|
7349
7351
|
/**
|
|
@@ -7380,14 +7382,14 @@ export interface operations {
|
|
|
7380
7382
|
};
|
|
7381
7383
|
quiz: {
|
|
7382
7384
|
/**
|
|
7383
|
-
*
|
|
7384
|
-
* @
|
|
7385
|
+
* @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.
|
|
7386
|
+
* @example corporate-sustainability
|
|
7385
7387
|
*/
|
|
7386
7388
|
id: string;
|
|
7387
7389
|
/**
|
|
7388
7390
|
* Format: uuid
|
|
7389
7391
|
* @description Organization ID that owns this quiz
|
|
7390
|
-
* @example
|
|
7392
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
7391
7393
|
*/
|
|
7392
7394
|
orgId: string;
|
|
7393
7395
|
/**
|
|
@@ -7430,15 +7432,15 @@ export interface operations {
|
|
|
7430
7432
|
* @description The pass percentage of the quiz.
|
|
7431
7433
|
*/
|
|
7432
7434
|
passPercentage: number;
|
|
7433
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
7434
|
-
timeLimit: number;
|
|
7435
|
+
/** @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. */
|
|
7436
|
+
timeLimit: number | string;
|
|
7435
7437
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
7436
7438
|
maxAttempts: number;
|
|
7437
7439
|
/** @description The questions of the quiz. */
|
|
7438
7440
|
questions: {
|
|
7439
7441
|
/**
|
|
7440
|
-
*
|
|
7441
|
-
* @
|
|
7442
|
+
* @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.
|
|
7443
|
+
* @example q1
|
|
7442
7444
|
*/
|
|
7443
7445
|
id: string;
|
|
7444
7446
|
/** @description The text of the question. */
|
|
@@ -7452,8 +7454,8 @@ export interface operations {
|
|
|
7452
7454
|
/** @description The options of the question. */
|
|
7453
7455
|
options: {
|
|
7454
7456
|
/**
|
|
7455
|
-
*
|
|
7456
|
-
* @
|
|
7457
|
+
* @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.
|
|
7458
|
+
* @example a
|
|
7457
7459
|
*/
|
|
7458
7460
|
id: string;
|
|
7459
7461
|
/** @description The text of the questionoption. */
|
|
@@ -7475,8 +7477,8 @@ export interface operations {
|
|
|
7475
7477
|
/** @description The prerequisites of the quiz. */
|
|
7476
7478
|
prerequisites: {
|
|
7477
7479
|
/**
|
|
7478
|
-
*
|
|
7479
|
-
* @
|
|
7480
|
+
* @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`.
|
|
7481
|
+
* @example introduction-to-devops-and-sre
|
|
7480
7482
|
*/
|
|
7481
7483
|
id: string;
|
|
7482
7484
|
/** @description The title of the parent. */
|
|
@@ -7488,8 +7490,8 @@ export interface operations {
|
|
|
7488
7490
|
}[];
|
|
7489
7491
|
parent?: {
|
|
7490
7492
|
/**
|
|
7491
|
-
*
|
|
7492
|
-
* @
|
|
7493
|
+
* @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`.
|
|
7494
|
+
* @example introduction-to-devops-and-sre
|
|
7493
7495
|
*/
|
|
7494
7496
|
id: string;
|
|
7495
7497
|
/** @description The title of the parent. */
|
|
@@ -7501,8 +7503,8 @@ export interface operations {
|
|
|
7501
7503
|
};
|
|
7502
7504
|
nextPage: {
|
|
7503
7505
|
/**
|
|
7504
|
-
*
|
|
7505
|
-
* @
|
|
7506
|
+
* @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`.
|
|
7507
|
+
* @example introduction-to-devops-and-sre
|
|
7506
7508
|
*/
|
|
7507
7509
|
id: string;
|
|
7508
7510
|
/** @description The title of the parent. */
|
|
@@ -7534,8 +7536,8 @@ export interface operations {
|
|
|
7534
7536
|
completedAt: string;
|
|
7535
7537
|
itemData: {
|
|
7536
7538
|
/**
|
|
7537
|
-
*
|
|
7538
|
-
* @
|
|
7539
|
+
* @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`.
|
|
7540
|
+
* @example introduction-to-devops-and-sre
|
|
7539
7541
|
*/
|
|
7540
7542
|
id: string;
|
|
7541
7543
|
/** @description The title of the parent. */
|
|
@@ -7562,8 +7564,8 @@ export interface operations {
|
|
|
7562
7564
|
contentType?: "learning-path" | "challenge" | "certification";
|
|
7563
7565
|
itemData?: {
|
|
7564
7566
|
/**
|
|
7565
|
-
*
|
|
7566
|
-
* @
|
|
7567
|
+
* @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.
|
|
7568
|
+
* @example kubernetes-quickstart
|
|
7567
7569
|
*/
|
|
7568
7570
|
id: string;
|
|
7569
7571
|
/**
|
|
@@ -7645,14 +7647,14 @@ export interface operations {
|
|
|
7645
7647
|
content: {
|
|
7646
7648
|
"application/json": {
|
|
7647
7649
|
/**
|
|
7648
|
-
*
|
|
7649
|
-
* @
|
|
7650
|
+
* @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.
|
|
7651
|
+
* @example corporate-sustainability
|
|
7650
7652
|
*/
|
|
7651
7653
|
id: string;
|
|
7652
7654
|
/**
|
|
7653
7655
|
* Format: uuid
|
|
7654
7656
|
* @description Organization ID that owns this quiz
|
|
7655
|
-
* @example
|
|
7657
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
7656
7658
|
*/
|
|
7657
7659
|
orgId: string;
|
|
7658
7660
|
/**
|
|
@@ -7695,15 +7697,15 @@ export interface operations {
|
|
|
7695
7697
|
* @description The pass percentage of the quiz.
|
|
7696
7698
|
*/
|
|
7697
7699
|
passPercentage: number;
|
|
7698
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
7699
|
-
timeLimit: number;
|
|
7700
|
+
/** @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. */
|
|
7701
|
+
timeLimit: number | string;
|
|
7700
7702
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
7701
7703
|
maxAttempts: number;
|
|
7702
7704
|
/** @description The questions of the quiz. */
|
|
7703
7705
|
questions: {
|
|
7704
7706
|
/**
|
|
7705
|
-
*
|
|
7706
|
-
* @
|
|
7707
|
+
* @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.
|
|
7708
|
+
* @example q1
|
|
7707
7709
|
*/
|
|
7708
7710
|
id: string;
|
|
7709
7711
|
/** @description The text of the question. */
|
|
@@ -7717,8 +7719,8 @@ export interface operations {
|
|
|
7717
7719
|
/** @description The options of the question. */
|
|
7718
7720
|
options: {
|
|
7719
7721
|
/**
|
|
7720
|
-
*
|
|
7721
|
-
* @
|
|
7722
|
+
* @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.
|
|
7723
|
+
* @example a
|
|
7722
7724
|
*/
|
|
7723
7725
|
id: string;
|
|
7724
7726
|
/** @description The text of the questionoption. */
|
|
@@ -7740,8 +7742,8 @@ export interface operations {
|
|
|
7740
7742
|
/** @description The prerequisites of the quiz. */
|
|
7741
7743
|
prerequisites: {
|
|
7742
7744
|
/**
|
|
7743
|
-
*
|
|
7744
|
-
* @
|
|
7745
|
+
* @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`.
|
|
7746
|
+
* @example introduction-to-devops-and-sre
|
|
7745
7747
|
*/
|
|
7746
7748
|
id: string;
|
|
7747
7749
|
/** @description The title of the parent. */
|
|
@@ -7753,8 +7755,8 @@ export interface operations {
|
|
|
7753
7755
|
}[];
|
|
7754
7756
|
parent?: {
|
|
7755
7757
|
/**
|
|
7756
|
-
*
|
|
7757
|
-
* @
|
|
7758
|
+
* @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`.
|
|
7759
|
+
* @example introduction-to-devops-and-sre
|
|
7758
7760
|
*/
|
|
7759
7761
|
id: string;
|
|
7760
7762
|
/** @description The title of the parent. */
|
|
@@ -7766,8 +7768,8 @@ export interface operations {
|
|
|
7766
7768
|
};
|
|
7767
7769
|
nextPage: {
|
|
7768
7770
|
/**
|
|
7769
|
-
*
|
|
7770
|
-
* @
|
|
7771
|
+
* @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`.
|
|
7772
|
+
* @example introduction-to-devops-and-sre
|
|
7771
7773
|
*/
|
|
7772
7774
|
id: string;
|
|
7773
7775
|
/** @description The title of the parent. */
|
|
@@ -7841,14 +7843,14 @@ export interface operations {
|
|
|
7841
7843
|
content: {
|
|
7842
7844
|
"application/json": {
|
|
7843
7845
|
/**
|
|
7844
|
-
*
|
|
7845
|
-
* @
|
|
7846
|
+
* @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.
|
|
7847
|
+
* @example corporate-sustainability
|
|
7846
7848
|
*/
|
|
7847
7849
|
id: string;
|
|
7848
7850
|
/**
|
|
7849
7851
|
* Format: uuid
|
|
7850
7852
|
* @description Organization ID that owns this quiz
|
|
7851
|
-
* @example
|
|
7853
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
7852
7854
|
*/
|
|
7853
7855
|
orgId: string;
|
|
7854
7856
|
/**
|
|
@@ -7891,15 +7893,15 @@ export interface operations {
|
|
|
7891
7893
|
* @description The pass percentage of the quiz.
|
|
7892
7894
|
*/
|
|
7893
7895
|
passPercentage: number;
|
|
7894
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
7895
|
-
timeLimit: number;
|
|
7896
|
+
/** @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. */
|
|
7897
|
+
timeLimit: number | string;
|
|
7896
7898
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
7897
7899
|
maxAttempts: number;
|
|
7898
7900
|
/** @description The questions of the quiz. */
|
|
7899
7901
|
questions: {
|
|
7900
7902
|
/**
|
|
7901
|
-
*
|
|
7902
|
-
* @
|
|
7903
|
+
* @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.
|
|
7904
|
+
* @example q1
|
|
7903
7905
|
*/
|
|
7904
7906
|
id: string;
|
|
7905
7907
|
/** @description The text of the question. */
|
|
@@ -7913,8 +7915,8 @@ export interface operations {
|
|
|
7913
7915
|
/** @description The options of the question. */
|
|
7914
7916
|
options: {
|
|
7915
7917
|
/**
|
|
7916
|
-
*
|
|
7917
|
-
* @
|
|
7918
|
+
* @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.
|
|
7919
|
+
* @example a
|
|
7918
7920
|
*/
|
|
7919
7921
|
id: string;
|
|
7920
7922
|
/** @description The text of the questionoption. */
|
|
@@ -7936,8 +7938,8 @@ export interface operations {
|
|
|
7936
7938
|
/** @description The prerequisites of the quiz. */
|
|
7937
7939
|
prerequisites: {
|
|
7938
7940
|
/**
|
|
7939
|
-
*
|
|
7940
|
-
* @
|
|
7941
|
+
* @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`.
|
|
7942
|
+
* @example introduction-to-devops-and-sre
|
|
7941
7943
|
*/
|
|
7942
7944
|
id: string;
|
|
7943
7945
|
/** @description The title of the parent. */
|
|
@@ -7949,8 +7951,8 @@ export interface operations {
|
|
|
7949
7951
|
}[];
|
|
7950
7952
|
parent?: {
|
|
7951
7953
|
/**
|
|
7952
|
-
*
|
|
7953
|
-
* @
|
|
7954
|
+
* @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`.
|
|
7955
|
+
* @example introduction-to-devops-and-sre
|
|
7954
7956
|
*/
|
|
7955
7957
|
id: string;
|
|
7956
7958
|
/** @description The title of the parent. */
|
|
@@ -7962,8 +7964,8 @@ export interface operations {
|
|
|
7962
7964
|
};
|
|
7963
7965
|
nextPage: {
|
|
7964
7966
|
/**
|
|
7965
|
-
*
|
|
7966
|
-
* @
|
|
7967
|
+
* @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`.
|
|
7968
|
+
* @example introduction-to-devops-and-sre
|
|
7967
7969
|
*/
|
|
7968
7970
|
id: string;
|
|
7969
7971
|
/** @description The title of the parent. */
|
|
@@ -8056,14 +8058,14 @@ export interface operations {
|
|
|
8056
8058
|
};
|
|
8057
8059
|
quiz: {
|
|
8058
8060
|
/**
|
|
8059
|
-
*
|
|
8060
|
-
* @
|
|
8061
|
+
* @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.
|
|
8062
|
+
* @example corporate-sustainability
|
|
8061
8063
|
*/
|
|
8062
8064
|
id: string;
|
|
8063
8065
|
/**
|
|
8064
8066
|
* Format: uuid
|
|
8065
8067
|
* @description Organization ID that owns this quiz
|
|
8066
|
-
* @example
|
|
8068
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
8067
8069
|
*/
|
|
8068
8070
|
orgId: string;
|
|
8069
8071
|
/**
|
|
@@ -8106,15 +8108,15 @@ export interface operations {
|
|
|
8106
8108
|
* @description The pass percentage of the quiz.
|
|
8107
8109
|
*/
|
|
8108
8110
|
passPercentage: number;
|
|
8109
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
8110
|
-
timeLimit: number;
|
|
8111
|
+
/** @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. */
|
|
8112
|
+
timeLimit: number | string;
|
|
8111
8113
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
8112
8114
|
maxAttempts: number;
|
|
8113
8115
|
/** @description The questions of the quiz. */
|
|
8114
8116
|
questions: {
|
|
8115
8117
|
/**
|
|
8116
|
-
*
|
|
8117
|
-
* @
|
|
8118
|
+
* @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.
|
|
8119
|
+
* @example q1
|
|
8118
8120
|
*/
|
|
8119
8121
|
id: string;
|
|
8120
8122
|
/** @description The text of the question. */
|
|
@@ -8128,8 +8130,8 @@ export interface operations {
|
|
|
8128
8130
|
/** @description The options of the question. */
|
|
8129
8131
|
options: {
|
|
8130
8132
|
/**
|
|
8131
|
-
*
|
|
8132
|
-
* @
|
|
8133
|
+
* @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.
|
|
8134
|
+
* @example a
|
|
8133
8135
|
*/
|
|
8134
8136
|
id: string;
|
|
8135
8137
|
/** @description The text of the questionoption. */
|
|
@@ -8151,8 +8153,8 @@ export interface operations {
|
|
|
8151
8153
|
/** @description The prerequisites of the quiz. */
|
|
8152
8154
|
prerequisites: {
|
|
8153
8155
|
/**
|
|
8154
|
-
*
|
|
8155
|
-
* @
|
|
8156
|
+
* @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`.
|
|
8157
|
+
* @example introduction-to-devops-and-sre
|
|
8156
8158
|
*/
|
|
8157
8159
|
id: string;
|
|
8158
8160
|
/** @description The title of the parent. */
|
|
@@ -8164,8 +8166,8 @@ export interface operations {
|
|
|
8164
8166
|
}[];
|
|
8165
8167
|
parent?: {
|
|
8166
8168
|
/**
|
|
8167
|
-
*
|
|
8168
|
-
* @
|
|
8169
|
+
* @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`.
|
|
8170
|
+
* @example introduction-to-devops-and-sre
|
|
8169
8171
|
*/
|
|
8170
8172
|
id: string;
|
|
8171
8173
|
/** @description The title of the parent. */
|
|
@@ -8177,8 +8179,8 @@ export interface operations {
|
|
|
8177
8179
|
};
|
|
8178
8180
|
nextPage: {
|
|
8179
8181
|
/**
|
|
8180
|
-
*
|
|
8181
|
-
* @
|
|
8182
|
+
* @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`.
|
|
8183
|
+
* @example introduction-to-devops-and-sre
|
|
8182
8184
|
*/
|
|
8183
8185
|
id: string;
|
|
8184
8186
|
/** @description The title of the parent. */
|
|
@@ -8250,19 +8252,19 @@ export interface operations {
|
|
|
8250
8252
|
quizAbsPath: string;
|
|
8251
8253
|
/**
|
|
8252
8254
|
* Format: uuid
|
|
8253
|
-
* @description ID of the associated registration.
|
|
8255
|
+
* @description ID of the associated registration. Optional, because a submission may not carry this echo; when it is absent the authoritative value is `TestSubmission.registrationId`. Absence MUST be expressed as `null` or an omitted property - the empty string is not a valid identifier.
|
|
8254
8256
|
*/
|
|
8255
|
-
registrationId
|
|
8257
|
+
registrationId?: string | null;
|
|
8256
8258
|
/**
|
|
8257
8259
|
* Format: uuid
|
|
8258
|
-
* @description ID of the user who owns or created this resource.
|
|
8260
|
+
* @description ID of the user who owns or created this resource. Optional, because a submission may not carry this echo; when it is absent the authoritative value is `TestSubmission.userId`. Absence MUST be expressed as `null` or an omitted property - the empty string is not a valid identifier.
|
|
8259
8261
|
*/
|
|
8260
|
-
userId
|
|
8262
|
+
userId?: string | null;
|
|
8261
8263
|
/** @description The answers of the quizsubmission. */
|
|
8262
8264
|
answers: {
|
|
8263
8265
|
/**
|
|
8264
|
-
*
|
|
8265
|
-
* @
|
|
8266
|
+
* @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.
|
|
8267
|
+
* @example q1
|
|
8266
8268
|
*/
|
|
8267
8269
|
questionId: string;
|
|
8268
8270
|
/** @description Map of selected option IDs to a boolean value indicating if it was selected. */
|
|
@@ -8305,14 +8307,14 @@ export interface operations {
|
|
|
8305
8307
|
};
|
|
8306
8308
|
quiz: {
|
|
8307
8309
|
/**
|
|
8308
|
-
*
|
|
8309
|
-
* @
|
|
8310
|
+
* @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.
|
|
8311
|
+
* @example corporate-sustainability
|
|
8310
8312
|
*/
|
|
8311
8313
|
id: string;
|
|
8312
8314
|
/**
|
|
8313
8315
|
* Format: uuid
|
|
8314
8316
|
* @description Organization ID that owns this quiz
|
|
8315
|
-
* @example
|
|
8317
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
8316
8318
|
*/
|
|
8317
8319
|
orgId: string;
|
|
8318
8320
|
/**
|
|
@@ -8355,15 +8357,15 @@ export interface operations {
|
|
|
8355
8357
|
* @description The pass percentage of the quiz.
|
|
8356
8358
|
*/
|
|
8357
8359
|
passPercentage: number;
|
|
8358
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
8359
|
-
timeLimit: number;
|
|
8360
|
+
/** @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. */
|
|
8361
|
+
timeLimit: number | string;
|
|
8360
8362
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
8361
8363
|
maxAttempts: number;
|
|
8362
8364
|
/** @description The questions of the quiz. */
|
|
8363
8365
|
questions: {
|
|
8364
8366
|
/**
|
|
8365
|
-
*
|
|
8366
|
-
* @
|
|
8367
|
+
* @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.
|
|
8368
|
+
* @example q1
|
|
8367
8369
|
*/
|
|
8368
8370
|
id: string;
|
|
8369
8371
|
/** @description The text of the question. */
|
|
@@ -8377,8 +8379,8 @@ export interface operations {
|
|
|
8377
8379
|
/** @description The options of the question. */
|
|
8378
8380
|
options: {
|
|
8379
8381
|
/**
|
|
8380
|
-
*
|
|
8381
|
-
* @
|
|
8382
|
+
* @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.
|
|
8383
|
+
* @example a
|
|
8382
8384
|
*/
|
|
8383
8385
|
id: string;
|
|
8384
8386
|
/** @description The text of the questionoption. */
|
|
@@ -8400,8 +8402,8 @@ export interface operations {
|
|
|
8400
8402
|
/** @description The prerequisites of the quiz. */
|
|
8401
8403
|
prerequisites: {
|
|
8402
8404
|
/**
|
|
8403
|
-
*
|
|
8404
|
-
* @
|
|
8405
|
+
* @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`.
|
|
8406
|
+
* @example introduction-to-devops-and-sre
|
|
8405
8407
|
*/
|
|
8406
8408
|
id: string;
|
|
8407
8409
|
/** @description The title of the parent. */
|
|
@@ -8413,8 +8415,8 @@ export interface operations {
|
|
|
8413
8415
|
}[];
|
|
8414
8416
|
parent?: {
|
|
8415
8417
|
/**
|
|
8416
|
-
*
|
|
8417
|
-
* @
|
|
8418
|
+
* @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`.
|
|
8419
|
+
* @example introduction-to-devops-and-sre
|
|
8418
8420
|
*/
|
|
8419
8421
|
id: string;
|
|
8420
8422
|
/** @description The title of the parent. */
|
|
@@ -8426,8 +8428,8 @@ export interface operations {
|
|
|
8426
8428
|
};
|
|
8427
8429
|
nextPage: {
|
|
8428
8430
|
/**
|
|
8429
|
-
*
|
|
8430
|
-
* @
|
|
8431
|
+
* @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`.
|
|
8432
|
+
* @example introduction-to-devops-and-sre
|
|
8431
8433
|
*/
|
|
8432
8434
|
id: string;
|
|
8433
8435
|
/** @description The title of the parent. */
|
|
@@ -8539,14 +8541,14 @@ export interface operations {
|
|
|
8539
8541
|
/** @description The test the counts refer to. */
|
|
8540
8542
|
test?: {
|
|
8541
8543
|
/**
|
|
8542
|
-
*
|
|
8543
|
-
* @
|
|
8544
|
+
* @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.
|
|
8545
|
+
* @example corporate-sustainability
|
|
8544
8546
|
*/
|
|
8545
8547
|
id: string;
|
|
8546
8548
|
/**
|
|
8547
8549
|
* Format: uuid
|
|
8548
8550
|
* @description Organization ID that owns this quiz
|
|
8549
|
-
* @example
|
|
8551
|
+
* @example d011fd20-a3f5-4480-883b-dfb34321d168
|
|
8550
8552
|
*/
|
|
8551
8553
|
orgId: string;
|
|
8552
8554
|
/**
|
|
@@ -8589,15 +8591,15 @@ export interface operations {
|
|
|
8589
8591
|
* @description The pass percentage of the quiz.
|
|
8590
8592
|
*/
|
|
8591
8593
|
passPercentage: number;
|
|
8592
|
-
/** @description Time limit for the quiz in minutes. A value of 0 indicates no time limit. */
|
|
8593
|
-
timeLimit: number;
|
|
8594
|
+
/** @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. */
|
|
8595
|
+
timeLimit: number | string;
|
|
8594
8596
|
/** @description Maximum number of attempts allowed for the quiz. A value of 0 indicates unlimited attempts. */
|
|
8595
8597
|
maxAttempts: number;
|
|
8596
8598
|
/** @description The questions of the quiz. */
|
|
8597
8599
|
questions: {
|
|
8598
8600
|
/**
|
|
8599
|
-
*
|
|
8600
|
-
* @
|
|
8601
|
+
* @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.
|
|
8602
|
+
* @example q1
|
|
8601
8603
|
*/
|
|
8602
8604
|
id: string;
|
|
8603
8605
|
/** @description The text of the question. */
|
|
@@ -8611,8 +8613,8 @@ export interface operations {
|
|
|
8611
8613
|
/** @description The options of the question. */
|
|
8612
8614
|
options: {
|
|
8613
8615
|
/**
|
|
8614
|
-
*
|
|
8615
|
-
* @
|
|
8616
|
+
* @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.
|
|
8617
|
+
* @example a
|
|
8616
8618
|
*/
|
|
8617
8619
|
id: string;
|
|
8618
8620
|
/** @description The text of the questionoption. */
|
|
@@ -8634,8 +8636,8 @@ export interface operations {
|
|
|
8634
8636
|
/** @description The prerequisites of the quiz. */
|
|
8635
8637
|
prerequisites: {
|
|
8636
8638
|
/**
|
|
8637
|
-
*
|
|
8638
|
-
* @
|
|
8639
|
+
* @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`.
|
|
8640
|
+
* @example introduction-to-devops-and-sre
|
|
8639
8641
|
*/
|
|
8640
8642
|
id: string;
|
|
8641
8643
|
/** @description The title of the parent. */
|
|
@@ -8647,8 +8649,8 @@ export interface operations {
|
|
|
8647
8649
|
}[];
|
|
8648
8650
|
parent?: {
|
|
8649
8651
|
/**
|
|
8650
|
-
*
|
|
8651
|
-
* @
|
|
8652
|
+
* @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`.
|
|
8653
|
+
* @example introduction-to-devops-and-sre
|
|
8652
8654
|
*/
|
|
8653
8655
|
id: string;
|
|
8654
8656
|
/** @description The title of the parent. */
|
|
@@ -8660,8 +8662,8 @@ export interface operations {
|
|
|
8660
8662
|
};
|
|
8661
8663
|
nextPage: {
|
|
8662
8664
|
/**
|
|
8663
|
-
*
|
|
8664
|
-
* @
|
|
8665
|
+
* @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`.
|
|
8666
|
+
* @example introduction-to-devops-and-sre
|
|
8665
8667
|
*/
|
|
8666
8668
|
id: string;
|
|
8667
8669
|
/** @description The title of the parent. */
|