@oddessentials/repo-standards 4.4.0 → 5.0.0

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.
@@ -1,6 +1,72 @@
1
1
  {
2
2
  "checklist": {
3
3
  "core": [
4
+ {
5
+ "ciHints": {
6
+ "azure-devops": {
7
+ "notes": "Run CRLF detection early in pipeline before other checks.",
8
+ "stage": "quality"
9
+ },
10
+ "github-actions": {
11
+ "job": "ci",
12
+ "notes": "Add .gitattributes check as first step in CI job."
13
+ }
14
+ },
15
+ "description": "Enforce line endings at the Git layer using .gitattributes. Mark text files with appropriate EOL handling (eol=lf for shell scripts, eol=auto for most files) and binary files as binary to prevent corruption. This prevents 'works locally, fails in CI' issues caused by CRLF/LF mismatches.",
16
+ "id": "gitattributes-eol",
17
+ "label": "Git Attributes (Line Endings)",
18
+ "stack": {
19
+ "exampleConfigFiles": [
20
+ ".gitattributes",
21
+ ".editorconfig"
22
+ ],
23
+ "exampleTools": [
24
+ "git"
25
+ ],
26
+ "machineCheck": {
27
+ "command": "git ls-files --eol | grep -E 'w/crlf.*\\.sh$' && exit 1 || exit 0",
28
+ "description": "Verify no CRLF in shell scripts",
29
+ "expectExitCode": 0
30
+ },
31
+ "notes": "Mark *.rs, *.toml as text with auto EOL handling. Mark shell scripts as eol=lf. Binary files (*.exe, *.dll) should be marked as binary.",
32
+ "optionalFiles": [
33
+ ".editorconfig"
34
+ ],
35
+ "requiredFiles": [
36
+ ".gitattributes"
37
+ ],
38
+ "verification": "Run 'git ls-files --eol' to verify EOL consistency."
39
+ }
40
+ },
41
+ {
42
+ "ciHints": {
43
+ "azure-devops": {
44
+ "notes": "Run CRLF detection as the first quality check before linting or testing.",
45
+ "stage": "quality"
46
+ },
47
+ "github-actions": {
48
+ "job": "ci",
49
+ "notes": "Add CRLF detection step before main CI steps."
50
+ }
51
+ },
52
+ "description": "Fail CI early for Linux-executed files containing CRLF line endings. Shell scripts, Python files, and other interpreted files fail silently or with cryptic errors when they contain \\r characters. Detect this before running deeper CI steps.",
53
+ "id": "crlf-detection",
54
+ "label": "CRLF Detection in CI",
55
+ "stack": {
56
+ "exampleConfigFiles": [],
57
+ "exampleTools": [
58
+ "file",
59
+ "grep"
60
+ ],
61
+ "machineCheck": {
62
+ "command": "git ls-files --eol | grep -E 'w/crlf.*\\.(sh|bash)$' && exit 1 || exit 0",
63
+ "description": "Detect CRLF in shell scripts",
64
+ "expectExitCode": 0
65
+ },
66
+ "notes": "Rust build scripts (build.rs) and shell scripts must not have CRLF. Cargo tolerates CRLF in .rs files but shell invocations fail.",
67
+ "verification": "Run CRLF detection on shell and build scripts."
68
+ }
69
+ },
4
70
  {
5
71
  "ciHints": {
6
72
  "azure-devops": {
@@ -195,6 +261,31 @@
195
261
  "verification": "Trigger the release pipeline and confirm all artifacts share the same version number and tag."
196
262
  }
197
263
  },
264
+ {
265
+ "ciHints": {
266
+ "azure-devops": {
267
+ "notes": "Set HUSKY=0 or equivalent in release pipeline to disable hooks.",
268
+ "stage": "release"
269
+ },
270
+ "github-actions": {
271
+ "job": "release",
272
+ "notes": "Set HUSKY=0 or equivalent in release job to disable hooks."
273
+ }
274
+ },
275
+ "description": "Release automation must bypass local developer hooks (HUSKY=0, --no-verify) and rely solely on CI gates for validation. This ensures idempotent, reproducible releases that don't fail due to hook environment differences.",
276
+ "id": "release-hook-bypass",
277
+ "label": "Release Hook Bypass",
278
+ "stack": {
279
+ "exampleConfigFiles": [
280
+ ".github/workflows/release.yml"
281
+ ],
282
+ "exampleTools": [
283
+ "cargo-release"
284
+ ],
285
+ "notes": "Use --no-verify with git commands in release scripts. If using pre-commit, set SKIP=all.",
286
+ "verification": "Check release workflow for hook bypass."
287
+ }
288
+ },
198
289
  {
199
290
  "ciHints": {
200
291
  "azure-devops": {
@@ -323,13 +414,15 @@
323
414
  {
324
415
  "ciHints": {
325
416
  "azure-devops": {
417
+ "notes": "Hooks and CI must invoke identical verification commands. Use npm run verify or equivalent.",
326
418
  "stage": "quality"
327
419
  },
328
420
  "github-actions": {
329
- "job": "ci"
421
+ "job": "ci",
422
+ "notes": "Hooks and CI must invoke identical verification commands. Use npm run verify or equivalent."
330
423
  }
331
424
  },
332
- "description": "Use git hooks to run linting, formatting, tests, and commit linting before changes are committed.",
425
+ "description": "Use git hooks to run linting, formatting, and commit linting before changes are committed. Hooks should CHECK by default (not auto-fix), be fast, and scope to changed files only. Use a single entry hook mechanism (e.g., Husky as entry point calling pre-commit or lint-staged).",
333
426
  "id": "pre-commit-hooks",
334
427
  "label": "Pre-Commit Hooks",
335
428
  "stack": {
@@ -340,8 +433,61 @@
340
433
  "pre-commit",
341
434
  "cargo-husky"
342
435
  ],
343
- "notes": "Use pre-commit with rust hooks for cargo fmt and cargo clippy on staged files. cargo-husky is an alternative.",
344
- "verification": "Inspect .pre-commit-config.yaml and confirm that hooks run cargo fmt --check and cargo clippy before commits."
436
+ "notes": "Use pre-commit with rust hooks for 'cargo fmt --check' and 'cargo clippy' on staged files. Pin rust-toolchain.toml for determinism across environments.",
437
+ "verification": "Confirm hooks run cargo fmt --check (not cargo fmt) and cargo clippy before commits."
438
+ }
439
+ },
440
+ {
441
+ "ciHints": {
442
+ "azure-devops": {
443
+ "notes": "CI should call the same verify script that hooks use locally.",
444
+ "stage": "quality"
445
+ },
446
+ "github-actions": {
447
+ "job": "ci",
448
+ "notes": "CI should call the same verify script that hooks use locally."
449
+ }
450
+ },
451
+ "description": "Local hooks and CI must invoke identical verification commands to prevent 'works locally, fails in CI' issues. Use a single canonical verify entrypoint (e.g., npm run verify) that both hooks and CI call.",
452
+ "id": "hook-ci-parity",
453
+ "label": "Hook/CI Parity",
454
+ "stack": {
455
+ "exampleConfigFiles": [
456
+ "Makefile",
457
+ "Cargo.toml"
458
+ ],
459
+ "exampleTools": [
460
+ "cargo",
461
+ "make"
462
+ ],
463
+ "notes": "Define a verify target (make verify or cargo make verify) that runs fmt --check, clippy, and test. Both hooks and CI should use this target.",
464
+ "verification": "Compare hook commands with CI commands and confirm they invoke the same cargo commands."
465
+ }
466
+ },
467
+ {
468
+ "ciHints": {
469
+ "azure-devops": {
470
+ "notes": "Also run secret scanning in CI as a safety net for commits that bypassed hooks.",
471
+ "stage": "quality"
472
+ },
473
+ "github-actions": {
474
+ "job": "ci",
475
+ "notes": "Enable GitHub secret scanning and also run gitleaks in CI."
476
+ }
477
+ },
478
+ "description": "Scan staged diffs for credentials, API keys, and secrets before they reach the remote repository. Catch secrets at commit time rather than after they're pushed.",
479
+ "id": "secret-scanning-precommit",
480
+ "label": "Pre-commit Secret Scanning",
481
+ "stack": {
482
+ "exampleConfigFiles": [
483
+ ".gitleaks.toml",
484
+ ".pre-commit-config.yaml"
485
+ ],
486
+ "exampleTools": [
487
+ "gitleaks"
488
+ ],
489
+ "notes": "Add gitleaks to pre-commit hooks. Configure Rust-specific patterns if needed.",
490
+ "verification": "Run 'gitleaks protect --staged' and verify it catches test secrets."
345
491
  }
346
492
  },
347
493
  {
@@ -589,6 +735,87 @@
589
735
  ],
590
736
  "verification": "LICENSE file is present; CODE_OF_CONDUCT.md and CONTRIBUTING.md provide contribution guidance."
591
737
  }
738
+ },
739
+ {
740
+ "ciHints": {
741
+ "azure-devops": {
742
+ "notes": "CI should call the canonical verify command, not duplicate check logic.",
743
+ "stage": "quality"
744
+ },
745
+ "github-actions": {
746
+ "job": "ci",
747
+ "notes": "CI should call the canonical verify command, not duplicate check logic."
748
+ }
749
+ },
750
+ "description": "Provide one canonical 'verify' command per repository/stack that all stages call with appropriate flags. This prevents duplication, drift, and ensures consistency between local development and CI.",
751
+ "id": "canonical-verify",
752
+ "label": "Canonical Verify Entrypoint",
753
+ "stack": {
754
+ "exampleConfigFiles": [
755
+ "Makefile",
756
+ "Makefile.toml"
757
+ ],
758
+ "exampleTools": [
759
+ "cargo",
760
+ "make",
761
+ "cargo-make"
762
+ ],
763
+ "notes": "Define 'make verify' or 'cargo make verify' that runs fmt --check, clippy, and test. Both hooks and CI use this entrypoint.",
764
+ "verification": "Makefile or Makefile.toml contains a 'verify' task."
765
+ }
766
+ },
767
+ {
768
+ "ciHints": {
769
+ "azure-devops": {
770
+ "notes": "Ensure CI reads from authoritative configs, not duplicated settings.",
771
+ "stage": "quality"
772
+ },
773
+ "github-actions": {
774
+ "job": "ci",
775
+ "notes": "Ensure CI reads from authoritative configs, not duplicated settings."
776
+ }
777
+ },
778
+ "description": "Each configuration rule must live in exactly one authoritative config file. Avoid duplication across .editorconfig, linter configs, and CI definitions. Document which file is authoritative for each concern.",
779
+ "id": "config-authority",
780
+ "label": "Config File Authority Rules",
781
+ "stack": {
782
+ "exampleConfigFiles": [
783
+ ".gitattributes",
784
+ "Cargo.toml",
785
+ "rustfmt.toml",
786
+ "clippy.toml"
787
+ ],
788
+ "exampleTools": [],
789
+ "notes": "Authority mapping: .gitattributes for EOL, Cargo.toml for project config, rustfmt.toml for formatting, clippy.toml for linting. Each concern has one file.",
790
+ "verification": "Review configs and confirm no rules are duplicated across files."
791
+ }
792
+ },
793
+ {
794
+ "ciHints": {
795
+ "azure-devops": {
796
+ "notes": "CI should read skip paths from config files, not hardcode them in pipeline.",
797
+ "stage": "quality"
798
+ },
799
+ "github-actions": {
800
+ "job": "ci",
801
+ "notes": "CI should read skip paths from config files, not hardcode them in pipeline."
802
+ }
803
+ },
804
+ "description": "Encode path exclusions and skip rules deterministically in config files, not through ad-hoc human judgment. Make it clear which paths are excluded from checks and why.",
805
+ "id": "explicit-skip-paths",
806
+ "label": "Explicit Skip Paths",
807
+ "stack": {
808
+ "exampleConfigFiles": [
809
+ "rustfmt.toml",
810
+ ".clippy.toml"
811
+ ],
812
+ "exampleTools": [
813
+ "rustfmt",
814
+ "clippy"
815
+ ],
816
+ "notes": "Use #[rustfmt::skip] or #[allow(clippy::*)] sparingly and document why. For directory-level exclusions, use Cargo.toml workspace exclude.",
817
+ "verification": "Search for skip annotations and confirm each is documented."
818
+ }
592
819
  }
593
820
  ],
594
821
  "optionalEnhancements": [
@@ -817,6 +1044,137 @@
817
1044
  "verification": "For web-facing Rust apps, run accessibility audits against key routes using axe or pa11y."
818
1045
  }
819
1046
  },
1047
+ {
1048
+ "ciHints": {
1049
+ "azure-devops": {
1050
+ "notes": "Run AI drift detection in a scheduled nightly pipeline separate from main CI.",
1051
+ "stage": "nightly"
1052
+ },
1053
+ "github-actions": {
1054
+ "job": "nightly",
1055
+ "notes": "Use scheduled workflow (cron) to run AI drift detection nightly."
1056
+ }
1057
+ },
1058
+ "description": "Run nightly or scheduled checks comparing AI-generated outputs against pinned baselines to detect model drift, prompt drift, or code changes affecting AI behavior. Attribute regressions to code changes vs model updates vs prompt changes.",
1059
+ "id": "ai-drift-detection",
1060
+ "label": "AI Drift Detection",
1061
+ "stack": {
1062
+ "exampleConfigFiles": [
1063
+ "snapshots/",
1064
+ "ai-baselines/"
1065
+ ],
1066
+ "exampleTools": [
1067
+ "insta",
1068
+ "custom baseline tests"
1069
+ ],
1070
+ "notes": "Use insta for snapshot testing of AI outputs. Pin model versions and prompt templates. Run nightly to detect drift.",
1071
+ "verification": "Run 'cargo insta test' and confirm AI outputs match baselines."
1072
+ }
1073
+ },
1074
+ {
1075
+ "ciHints": {
1076
+ "azure-devops": {
1077
+ "notes": "Run schema validation tests as part of quality gates.",
1078
+ "stage": "quality"
1079
+ },
1080
+ "github-actions": {
1081
+ "job": "ci",
1082
+ "notes": "Include AI output schema validation in CI test suite."
1083
+ }
1084
+ },
1085
+ "description": "Validate all AI-generated outputs against strict JSON schemas or type definitions at system boundaries. Reject invalid outputs early rather than letting malformed data propagate through the system.",
1086
+ "id": "ai-schema-enforcement",
1087
+ "label": "AI Output Schema Enforcement",
1088
+ "stack": {
1089
+ "exampleConfigFiles": [
1090
+ "src/schemas/"
1091
+ ],
1092
+ "exampleTools": [
1093
+ "serde",
1094
+ "jsonschema",
1095
+ "validator"
1096
+ ],
1097
+ "notes": "Use serde with #[serde(deny_unknown_fields)] for strict deserialization of AI outputs. Add validator derives for business rule validation.",
1098
+ "verification": "Review AI integration code and confirm strict deserialization is enforced."
1099
+ }
1100
+ },
1101
+ {
1102
+ "ciHints": {
1103
+ "azure-devops": {
1104
+ "notes": "Run AI golden tests as part of the test stage.",
1105
+ "stage": "test"
1106
+ },
1107
+ "github-actions": {
1108
+ "job": "ci",
1109
+ "notes": "Include AI golden contract tests in CI test suite."
1110
+ }
1111
+ },
1112
+ "description": "Validate AI tool-generated patches, configs, and code against exact expected formats. Test that AI outputs respect forbidden paths, file patterns, and format constraints through golden contract tests.",
1113
+ "id": "ai-golden-tests",
1114
+ "label": "AI Golden Contract Tests",
1115
+ "stack": {
1116
+ "exampleConfigFiles": [
1117
+ "snapshots/"
1118
+ ],
1119
+ "exampleTools": [
1120
+ "insta"
1121
+ ],
1122
+ "notes": "Use insta for snapshot testing AI-generated code and configs. Test format compliance and forbidden path restrictions.",
1123
+ "verification": "Run 'cargo insta test' and confirm AI outputs match snapshots."
1124
+ }
1125
+ },
1126
+ {
1127
+ "ciHints": {
1128
+ "azure-devops": {
1129
+ "notes": "Run AI safety tests as part of security stage on main branch.",
1130
+ "stage": "security"
1131
+ },
1132
+ "github-actions": {
1133
+ "job": "security",
1134
+ "notes": "Run AI safety checks on main branch merges."
1135
+ }
1136
+ },
1137
+ "description": "Test AI integrations for prompt injection resistance, input sanitization, output filtering, and data exfiltration prevention. Include adversarial test cases that attempt to manipulate AI behavior.",
1138
+ "id": "ai-safety-checks",
1139
+ "label": "AI Adversarial & Safety Testing",
1140
+ "stack": {
1141
+ "exampleConfigFiles": [
1142
+ "tests/ai_safety/"
1143
+ ],
1144
+ "exampleTools": [
1145
+ "proptest",
1146
+ "custom tests"
1147
+ ],
1148
+ "notes": "Use proptest for property-based testing of AI input validation. Test that malicious inputs don't escape sandboxing.",
1149
+ "verification": "Run AI safety tests with adversarial inputs."
1150
+ }
1151
+ },
1152
+ {
1153
+ "ciHints": {
1154
+ "azure-devops": {
1155
+ "notes": "Verify AI provenance logging is implemented in quality checks.",
1156
+ "stage": "quality"
1157
+ },
1158
+ "github-actions": {
1159
+ "job": "ci",
1160
+ "notes": "Check AI provenance logging implementation in CI."
1161
+ }
1162
+ },
1163
+ "description": "Log AI provider, model version, prompt template version, parameters, and tool versions for all AI operations. Enable attribution of outputs to specific model+prompt combinations for debugging and compliance.",
1164
+ "id": "ai-provenance-tracking",
1165
+ "label": "AI Provenance & Audit Logging",
1166
+ "stack": {
1167
+ "exampleConfigFiles": [
1168
+ "src/ai/provenance.rs"
1169
+ ],
1170
+ "exampleTools": [
1171
+ "tracing",
1172
+ "OpenTelemetry"
1173
+ ],
1174
+ "notes": "Use tracing spans to capture AI call provenance. Include model version, prompt hash, and parameters as span attributes.",
1175
+ "verification": "Review AI integration and confirm provenance is logged."
1176
+ }
1177
+ },
820
1178
  {
821
1179
  "ciHints": {
822
1180
  "azure-devops": {
@@ -898,27 +1256,41 @@
898
1256
  },
899
1257
  "migrationGuide": [
900
1258
  {
901
- "description": "Start by adding pre-commit hooks and core formatting/linting so developers get fast feedback without touching CI.",
1259
+ "description": "Configure .gitattributes for cross-platform line ending correctness and establish the canonical verify entrypoint before adding any checks. This prevents 'works locally, fails in CI' issues from day one.",
1260
+ "focusIds": [
1261
+ "gitattributes-eol",
1262
+ "canonical-verify",
1263
+ "hook-ci-parity",
1264
+ "config-authority"
1265
+ ],
1266
+ "notes": "Start here to avoid debugging cryptic CRLF failures later. Use .gitattributes as the authority for EOL (not .editorconfig). Run 'git add --renormalize .' after adding .gitattributes to fix existing files.",
1267
+ "step": 0,
1268
+ "title": "Foundation: Line Endings and Hook Entry Point"
1269
+ },
1270
+ {
1271
+ "description": "Add pre-commit hooks with secret scanning, formatting, and linting. Hooks should CHECK (not auto-fix) and scope to changed files only for speed.",
902
1272
  "focusIds": [
903
1273
  "pre-commit-hooks",
1274
+ "secret-scanning-precommit",
904
1275
  "linting",
905
1276
  "code-formatter"
906
1277
  ],
907
- "notes": "Keep hooks fast and focused on changed files to avoid slowing down day-to-day work.",
1278
+ "notes": "Keep hooks fast by scoping to staged files. Use Husky as entry point calling lint-staged or pre-commit. Hooks should check, not fix, to keep developers aware of issues.",
908
1279
  "step": 1,
909
1280
  "title": "Establish Local Safety Nets First"
910
1281
  },
911
1282
  {
912
- "description": "Introduce CI quality gates that mirror local checks, but treat existing violations as warnings wherever possible.",
1283
+ "description": "Introduce CI quality gates that mirror local hooks exactly. Add CRLF detection early in pipeline. Treat existing violations as warnings where possible.",
913
1284
  "focusIds": [
1285
+ "crlf-detection",
914
1286
  "ci-quality-gates",
915
1287
  "linting",
916
1288
  "code-formatter",
917
1289
  "commit-linting"
918
1290
  ],
919
- "notes": "Use diff-based tools or baselines so only new violations break builds; legacy issues remain visible but non-blocking.",
1291
+ "notes": "CI must call the same verify scripts that hooks use. Add CRLF detection before other checks to fail fast on line ending issues. Use diff-based tools so only new violations break builds.",
920
1292
  "step": 2,
921
- "title": "Mirror Local Checks in CI (Soft-Fail on Legacy)"
1293
+ "title": "Mirror Local Checks in CI with CRLF Detection"
922
1294
  },
923
1295
  {
924
1296
  "description": "Enable type-checking, coverage thresholds, and dependency/vulnerability scanning with gradual enforcement.",
@@ -943,9 +1315,22 @@
943
1315
  "complexity-analysis",
944
1316
  "accessibility-auditing"
945
1317
  ],
946
- "notes": "Tackle recommended items in order of business value; backend-only repos can skip web-focused checks like accessibility. For AI/ML-heavy Python teams, consider extending containerization with data versioning (DVC) and unit tests with data quality checks (e.g., Great Expectations) as part of this step.",
1318
+ "notes": "Tackle recommended items in order of business value; backend-only repos can skip web-focused checks like accessibility.",
947
1319
  "step": 4,
948
1320
  "title": "Layer in Docs, Governance, and Recommended Checks"
1321
+ },
1322
+ {
1323
+ "description": "For repos using or building with generative AI, add drift detection, schema enforcement, golden contract tests, safety testing, and provenance tracking.",
1324
+ "focusIds": [
1325
+ "ai-drift-detection",
1326
+ "ai-schema-enforcement",
1327
+ "ai-golden-tests",
1328
+ "ai-safety-checks",
1329
+ "ai-provenance-tracking"
1330
+ ],
1331
+ "notes": "Skip this step if your repo has no AI/ML components. For AI-heavy repos: add nightly drift detection to catch model changes, enforce strict schemas at AI output boundaries, and log provenance for debugging 'why did AI do X?'",
1332
+ "step": 5,
1333
+ "title": "AI/ML Governance (If Applicable)"
949
1334
  }
950
1335
  ],
951
1336
  "qualityGatePolicy": {
@@ -164,6 +164,10 @@
164
164
  "$ref": "#/$defs/Enforcement",
165
165
  "description": "Enforcement level. Defaults: core=required, recommended=recommended, optionalEnhancements=optional."
166
166
  },
167
+ "executionStage": {
168
+ "$ref": "#/$defs/ExecutionStage",
169
+ "description": "When this check should execute in the development lifecycle."
170
+ },
167
171
  "id": {
168
172
  "description": "Unique identifier for the checklist item.",
169
173
  "pattern": "^[a-z][a-z0-9-]*$",
@@ -172,6 +176,10 @@
172
176
  "label": {
173
177
  "type": "string"
174
178
  },
179
+ "scopeToChangedFiles": {
180
+ "description": "Whether this check can/should be scoped to changed files only for faster execution.",
181
+ "type": "boolean"
182
+ },
175
183
  "severity": {
176
184
  "$ref": "#/$defs/Severity",
177
185
  "description": "Violation severity. Defaults: core=error, recommended=warn, optionalEnhancements=info."
@@ -202,7 +210,8 @@
202
210
  "id",
203
211
  "label",
204
212
  "description",
205
- "appliesTo"
213
+ "appliesTo",
214
+ "executionStage"
206
215
  ],
207
216
  "type": "object"
208
217
  },
@@ -238,6 +247,18 @@
238
247
  ],
239
248
  "type": "string"
240
249
  },
250
+ "ExecutionStage": {
251
+ "description": "Development lifecycle stage when a check should execute.",
252
+ "enum": [
253
+ "pre-commit",
254
+ "pre-push",
255
+ "ci-pr",
256
+ "ci-main",
257
+ "release",
258
+ "nightly"
259
+ ],
260
+ "type": "string"
261
+ },
241
262
  "ExecutorHints": {
242
263
  "additionalProperties": false,
243
264
  "description": "Advisory execution substrate hints. Bazel is the first supported executor; future monorepo executors may follow the same pattern.",
@@ -324,7 +345,8 @@
324
345
  "type": "string"
325
346
  },
326
347
  "step": {
327
- "minimum": 1,
348
+ "description": "Step number in migration sequence. Step 0 is foundation/prerequisites.",
349
+ "minimum": 0,
328
350
  "type": "integer"
329
351
  },
330
352
  "title": {