schema_target.json 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "description": "Schema for the CMake codemodel target object",
  4. "type": "object",
  5. "oneOf": [
  6. {
  7. "$comment": "The top level codemodelVersion field was only added in version 2.9, so we can't differentiate between earlier versions",
  8. "anyOf": [
  9. {
  10. "$ref": "#/definitions/codemodelV2_0"
  11. },
  12. {
  13. "$ref": "#/definitions/codemodelV2_1"
  14. },
  15. {
  16. "$ref": "#/definitions/codemodelV2_2"
  17. },
  18. {
  19. "$ref": "#/definitions/codemodelV2_5"
  20. },
  21. {
  22. "$ref": "#/definitions/codemodelV2_6"
  23. },
  24. {
  25. "$ref": "#/definitions/codemodelV2_7"
  26. },
  27. {
  28. "$ref": "#/definitions/codemodelV2_8"
  29. }
  30. ]
  31. },
  32. {
  33. "$ref": "#/definitions/codemodelV2_9"
  34. }
  35. ],
  36. "definitions": {
  37. "codemodelVersionV2_9": {
  38. "type": "object",
  39. "required": [
  40. "major",
  41. "minor"
  42. ],
  43. "properties": {
  44. "major": {
  45. "type": "integer",
  46. "const": 2
  47. },
  48. "minor": {
  49. "type": "integer",
  50. "minimum": 9
  51. }
  52. },
  53. "additionalProperties": false
  54. },
  55. "name": {
  56. "type": "string",
  57. "description": "Logical name of the target"
  58. },
  59. "id": {
  60. "type": "string",
  61. "description": "Unique identifier for the target. The format is unspecified and should not be interpreted by clients."
  62. },
  63. "typeV2_0": {
  64. "type": "string",
  65. "enum": [
  66. "EXECUTABLE",
  67. "STATIC_LIBRARY",
  68. "SHARED_LIBRARY",
  69. "MODULE_LIBRARY",
  70. "OBJECT_LIBRARY",
  71. "INTERFACE_LIBRARY",
  72. "UTILITY"
  73. ]
  74. },
  75. "typeV2_9": {
  76. "type": "string",
  77. "enum": [
  78. "EXECUTABLE",
  79. "STATIC_LIBRARY",
  80. "SHARED_LIBRARY",
  81. "MODULE_LIBRARY",
  82. "OBJECT_LIBRARY",
  83. "INTERFACE_LIBRARY",
  84. "UNKNOWN_LIBRARY",
  85. "UTILITY"
  86. ]
  87. },
  88. "importedV2_9": {
  89. "type": "boolean",
  90. "description": "True if the target is imported"
  91. },
  92. "localV2_9": {
  93. "type": "boolean",
  94. "description": "True if the target is defined in a local scope rather than being a global target"
  95. },
  96. "symbolicV2_9": {
  97. "type": "boolean",
  98. "description": "True if an interface target has the SYMBOLIC property set"
  99. },
  100. "abstractV2_9": {
  101. "type": "boolean",
  102. "description": "True if the target is not part of the build system"
  103. },
  104. "backtrace": {
  105. "type": "integer",
  106. "minimum": 0,
  107. "description": "Index into backtraceGraph nodes array"
  108. },
  109. "folder": {
  110. "type": "object",
  111. "description": "This will only be present if the FOLDER target property is set",
  112. "required": [
  113. "name"
  114. ],
  115. "properties": {
  116. "name": {
  117. "type": "string",
  118. "description": "Name of the folder to place the target under in IDEs and other GUI tools"
  119. }
  120. },
  121. "additionalProperties": false
  122. },
  123. "paths": {
  124. "type": "object",
  125. "required": [
  126. "source",
  127. "build"
  128. ],
  129. "properties": {
  130. "source": {
  131. "type": "string",
  132. "description": "Path to the source directory. If it is inside the top level source directory, the path will be relative to that directory. For the top level source directory, this will simply be '.'. Paths outside the top level source directory will be absolute."
  133. },
  134. "build": {
  135. "type": "string",
  136. "description": "Path to the build directory. If it is inside the top level build directory, the path will be relative to that directory. For the top level build directory, this will simply be '.'. Paths outside the top level build directory will be absolute."
  137. }
  138. },
  139. "additionalProperties": false
  140. },
  141. "nameOnDisk": {
  142. "type": "string",
  143. "description": "File name of the primary artifact on disk, only present for executable and library targets that are linked or archived into a single primary artifact"
  144. },
  145. "artifacts": {
  146. "type": "array",
  147. "description": "Only present for executable and library targets that produce artifacts on disk meant for consumption by dependents",
  148. "items": {
  149. "type": "object",
  150. "required": [
  151. "path"
  152. ],
  153. "properties": {
  154. "path": {
  155. "type": "string",
  156. "description": "Path to artifact file on disk. If the file is inside the top-level build directory, the path is specified relative to that directory. Otherwise, the path is absolute."
  157. }
  158. },
  159. "additionalProperties": false
  160. }
  161. },
  162. "isGeneratorProvided": {
  163. "type": "boolean",
  164. "description": "Only present and will have the value true if the target is provided by CMake's build system generator rather than by a command in the project's source code"
  165. },
  166. "install": {
  167. "type": "object",
  168. "description": "Only present if the target has an install() rule",
  169. "required": [
  170. "prefix",
  171. "destinations"
  172. ],
  173. "properties": {
  174. "prefix": {
  175. "type": "object",
  176. "required": [
  177. "path"
  178. ],
  179. "properties": {
  180. "path": {
  181. "type": "string",
  182. "description": "The value of CMAKE_INSTALL_PREFIX"
  183. }
  184. },
  185. "additionalProperties": false
  186. },
  187. "destinations": {
  188. "type": "array",
  189. "items": {
  190. "type": "object",
  191. "required": [
  192. "path"
  193. ],
  194. "properties": {
  195. "path": {
  196. "type": "string",
  197. "description": "Install destination path. It may be absolute or relative to the install prefix."
  198. },
  199. "backtrace": {
  200. "type": "integer",
  201. "minimum": 0,
  202. "description": "Index into the backtraceGraph nodes array, if a backtrace is available"
  203. }
  204. },
  205. "additionalProperties": false
  206. }
  207. }
  208. },
  209. "additionalProperties": false
  210. },
  211. "launchersV2_7": {
  212. "type": "array",
  213. "items": {
  214. "type": "object",
  215. "required": [
  216. "command",
  217. "type"
  218. ],
  219. "properties": {
  220. "command": {
  221. "type": "string",
  222. "description": "Path to the launcher on disk. If the file is inside the top-level source directory, the path is specified relative to that directory."
  223. },
  224. "arguments": {
  225. "type": "array",
  226. "items": {
  227. "type": "string"
  228. },
  229. "description": "Arguments preceding the executable"
  230. },
  231. "type": {
  232. "type": "string",
  233. "enum": [
  234. "emulator",
  235. "test"
  236. ],
  237. "description": "Type of launcher"
  238. }
  239. },
  240. "additionalProperties": false
  241. }
  242. },
  243. "link": {
  244. "type": "object",
  245. "description": "This is only present for executables and shared library targets that link into a runtime binary",
  246. "required": [
  247. "language"
  248. ],
  249. "properties": {
  250. "language": {
  251. "type": "string",
  252. "description": "Language of the toolchain used to invoke the linker"
  253. },
  254. "commandFragments": {
  255. "type": "array",
  256. "description": "Ordered fragments of the link command line, if available",
  257. "items": {
  258. "type": "object",
  259. "required": [
  260. "fragment",
  261. "role"
  262. ],
  263. "properties": {
  264. "fragment": {
  265. "type": "string",
  266. "description": "Fragment of link command line"
  267. },
  268. "role": {
  269. "type": "string",
  270. "enum": [
  271. "flags",
  272. "libraries",
  273. "libraryPath",
  274. "frameworkPath"
  275. ],
  276. "description": "Role of the fragment content"
  277. },
  278. "backtrace": {
  279. "type": "integer",
  280. "minimum": 0,
  281. "description": "Index into backtraceGraph nodes array for the command that added the link fragment, if available"
  282. }
  283. },
  284. "additionalProperties": false
  285. }
  286. },
  287. "lto": {
  288. "type": "boolean",
  289. "description": "True if link-time optimization is enabled"
  290. },
  291. "sysroot": {
  292. "type": "object",
  293. "description": "Only present when the CMAKE_SYSROOT_LINK or CMAKE_SYSROOT variable is defined",
  294. "required": [
  295. "path"
  296. ],
  297. "properties": {
  298. "path": {
  299. "type": "string",
  300. "description": "Absolute path to the sysroot"
  301. }
  302. },
  303. "additionalProperties": false
  304. }
  305. },
  306. "additionalProperties": false
  307. },
  308. "archive": {
  309. "type": "object",
  310. "description": "Only present for static library targets",
  311. "properties": {
  312. "commandFragments": {
  313. "type": "array",
  314. "description": "Ordered fragments of the archiver command line, if available",
  315. "items": {
  316. "type": "object",
  317. "required": [
  318. "fragment",
  319. "role"
  320. ],
  321. "properties": {
  322. "fragment": {
  323. "type": "string",
  324. "description": "Fragment of the archiver command line"
  325. },
  326. "role": {
  327. "type": "string",
  328. "enum": [
  329. "flags"
  330. ],
  331. "description": "Role of the fragment content"
  332. }
  333. },
  334. "additionalProperties": false
  335. }
  336. },
  337. "lto": {
  338. "type": "boolean",
  339. "description": "True if link-time optimization is enabled"
  340. }
  341. },
  342. "additionalProperties": false
  343. },
  344. "debuggerV2_8": {
  345. "type": "object",
  346. "properties": {
  347. "workingDirectory": {
  348. "type": "string",
  349. "description": "Working directory for a debugger"
  350. }
  351. },
  352. "additionalProperties": false
  353. },
  354. "dependencies": {
  355. "type": "array",
  356. "items": {
  357. "type": "object",
  358. "required": [
  359. "id"
  360. ],
  361. "properties": {
  362. "id": {
  363. "type": "string",
  364. "description": "Unique identifier of another target on which this one depends"
  365. },
  366. "backtrace": {
  367. "type": "integer",
  368. "minimum": 0,
  369. "description": "Index into backtraceGraph nodes array of the command that created the dependency, if available"
  370. }
  371. },
  372. "additionalProperties": false
  373. }
  374. },
  375. "linkLibrariesV2_9": {
  376. "type": "array",
  377. "items": {
  378. "type": "object",
  379. "properties": {
  380. "id": {
  381. "type": "string",
  382. "description": "Unique identifier of the target for the dependency"
  383. },
  384. "fragment": {
  385. "type": "string",
  386. "description": "Raw linker command line arguments that capture the dependency"
  387. },
  388. "backtrace": {
  389. "type": "integer",
  390. "minimum": 0,
  391. "description": "Index into backtraceGraph nodes array of the command that created the dependency, if available"
  392. },
  393. "fromDependency": {
  394. "type": "object",
  395. "properties": {
  396. "id": {
  397. "type": "string",
  398. "description": "Unique identifier of another target whose INTERFACE_LINK_LIBRARIES_DIRECT property created this dependency"
  399. }
  400. }
  401. }
  402. },
  403. "additionalProperties": false
  404. }
  405. },
  406. "interfaceLinkLibrariesV2_9": {
  407. "type": "array",
  408. "items": {
  409. "type": "object",
  410. "properties": {
  411. "id": {
  412. "type": "string",
  413. "description": "Unique identifier of the target for the dependency"
  414. },
  415. "fragment": {
  416. "type": "string",
  417. "description": "Raw linker command line arguments that capture the dependency"
  418. },
  419. "backtrace": {
  420. "type": "integer",
  421. "minimum": 0,
  422. "description": "Index into backtraceGraph nodes array of the command that created the dependency, if available"
  423. }
  424. },
  425. "additionalProperties": false
  426. }
  427. },
  428. "compileDependenciesV2_9": {
  429. "type": "array",
  430. "items": {
  431. "type": "object",
  432. "required": [
  433. "id"
  434. ],
  435. "properties": {
  436. "id": {
  437. "type": "string",
  438. "description": "Unique identifier of the target for the dependency"
  439. },
  440. "backtrace": {
  441. "type": "integer",
  442. "minimum": 0,
  443. "description": "Index into backtraceGraph nodes array of the command that created the dependency, if available"
  444. },
  445. "fromDependency": {
  446. "type": "object",
  447. "properties": {
  448. "id": {
  449. "type": "string",
  450. "description": "Unique identifier of another target whose INTERFACE_LINK_LIBRARIES_DIRECT property created this dependency"
  451. }
  452. }
  453. }
  454. },
  455. "additionalProperties": false
  456. }
  457. },
  458. "interfaceCompileDependenciesV2_9": {
  459. "type": "array",
  460. "items": {
  461. "type": "object",
  462. "required": [
  463. "id"
  464. ],
  465. "properties": {
  466. "id": {
  467. "type": "string",
  468. "description": "Unique identifier of the target for the dependency"
  469. },
  470. "backtrace": {
  471. "type": "integer",
  472. "minimum": 0,
  473. "description": "Index into backtraceGraph nodes array of the command that created the dependency, if available"
  474. }
  475. },
  476. "additionalProperties": false
  477. }
  478. },
  479. "onlyTargetDependenciesArrayV2_9": {
  480. "type": "array",
  481. "items": {
  482. "type": "object",
  483. "properties": {
  484. "id": {
  485. "type": "string",
  486. "description": "Unique identifier of the target for the dependency"
  487. },
  488. "backtrace": {
  489. "type": "integer",
  490. "minimum": 0,
  491. "description": "Index into backtraceGraph nodes array of the command that created the dependency, if available"
  492. }
  493. },
  494. "additionalProperties": false
  495. }
  496. },
  497. "fileSetsV2_5": {
  498. "type": "array",
  499. "items": {
  500. "type": "object",
  501. "required": [
  502. "name",
  503. "type",
  504. "visibility",
  505. "baseDirectories"
  506. ],
  507. "properties": {
  508. "name": {
  509. "type": "string"
  510. },
  511. "type": {
  512. "type": "string",
  513. "enum": [
  514. "HEADERS",
  515. "CXX_MODULES"
  516. ]
  517. },
  518. "visibility": {
  519. "type": "string",
  520. "enum": [
  521. "PUBLIC",
  522. "PRIVATE",
  523. "INTERFACE"
  524. ]
  525. },
  526. "baseDirectories": {
  527. "type": "array",
  528. "minItems": 1,
  529. "items": {
  530. "type": "string"
  531. },
  532. "description": "Base directories containing the file set's files. If a directory is inside the top level source directory, its path is specified relative to that directory. Otherwise, its path is absolute."
  533. }
  534. },
  535. "additionalProperties": false
  536. }
  537. },
  538. "sourcesPath": {
  539. "type": "string",
  540. "description": "Path to the source file. If the file is inside the top level source directory, the path is specified relative to that directory. Otherwise, the path is absolute."
  541. },
  542. "sourcesCompileGroupIndex": {
  543. "type": "integer",
  544. "minimum": 0,
  545. "description": "Index into the compileGroups array. Only present if the file is compiled."
  546. },
  547. "sourcesSourceGroupIndex": {
  548. "type": "integer",
  549. "minimum": 0,
  550. "description": "Index into the sourceGroups array. Only present if the file is part of a source group."
  551. },
  552. "sourcesIsGenerated": {
  553. "type": "boolean",
  554. "description": "True if the file has its GENERATED property set to true"
  555. },
  556. "sourcesFileSetIndexV2_5": {
  557. "type": "integer",
  558. "minimum": 0,
  559. "description": "Index into the fileSets array. Only present if the file is part of a file set."
  560. },
  561. "sourcesV2_0": {
  562. "type": "array",
  563. "items": {
  564. "type": "object",
  565. "required": [
  566. "path"
  567. ],
  568. "properties": {
  569. "path": {
  570. "$ref": "#/definitions/sourcesPath"
  571. },
  572. "compileGroupIndex": {
  573. "$ref": "#/definitions/sourcesCompileGroupIndex"
  574. },
  575. "sourceGroupIndex": {
  576. "$ref": "#/definitions/sourcesSourceGroupIndex"
  577. },
  578. "isGenerated": {
  579. "$ref": "#/definitions/sourcesIsGenerated"
  580. },
  581. "backtrace": {
  582. "$ref": "#/definitions/backtrace"
  583. }
  584. },
  585. "additionalProperties": false
  586. }
  587. },
  588. "sourcesV2_5": {
  589. "type": "array",
  590. "items": {
  591. "type": "object",
  592. "required": [
  593. "path"
  594. ],
  595. "properties": {
  596. "path": {
  597. "$ref": "#/definitions/sourcesPath"
  598. },
  599. "compileGroupIndex": {
  600. "$ref": "#/definitions/sourcesCompileGroupIndex"
  601. },
  602. "sourceGroupIndex": {
  603. "$ref": "#/definitions/sourcesSourceGroupIndex"
  604. },
  605. "isGenerated": {
  606. "$ref": "#/definitions/sourcesIsGenerated"
  607. },
  608. "backtrace": {
  609. "$ref": "#/definitions/backtrace"
  610. },
  611. "fileSetIndex": {
  612. "$ref": "#/definitions/sourcesFileSetIndexV2_5"
  613. }
  614. },
  615. "additionalProperties": false
  616. }
  617. },
  618. "sourceGroups": {
  619. "type": "array",
  620. "items": {
  621. "type": "object",
  622. "required": [
  623. "name",
  624. "sourceIndexes"
  625. ],
  626. "properties": {
  627. "name": {
  628. "type": "string",
  629. "description": "Name of source group"
  630. },
  631. "sourceIndexes": {
  632. "type": "array",
  633. "items": {
  634. "type": "integer",
  635. "minimum": 0
  636. },
  637. "description": "Indices into sources array"
  638. }
  639. },
  640. "additionalProperties": false
  641. }
  642. },
  643. "compileGroupsSourceIndexes": {
  644. "type": "array",
  645. "items": {
  646. "type": "integer",
  647. "minimum": 0
  648. },
  649. "description": "Indices into the sources array for sources belonging to the group"
  650. },
  651. "compileGroupsLanguage": {
  652. "type": "string",
  653. "description": "Language used to compile sources in the group"
  654. },
  655. "compileGroupsLanguageStandardV2_2": {
  656. "type": "object",
  657. "required": [
  658. "backtraces",
  659. "standard"
  660. ],
  661. "properties": {
  662. "backtraces": {
  663. "type": "array",
  664. "items": {
  665. "type": "integer",
  666. "minimum": 0
  667. },
  668. "description": "Indices into the backtraceGraph nodes array"
  669. },
  670. "standard": {
  671. "type": "string",
  672. "description": "Language standard"
  673. }
  674. },
  675. "additionalProperties": false
  676. },
  677. "compileGroupsCompileCommandFragments": {
  678. "type": "array",
  679. "items": {
  680. "type": "object",
  681. "required": [
  682. "fragment"
  683. ],
  684. "properties": {
  685. "fragment": {
  686. "type": "string",
  687. "description": "Fragment of the compile command line"
  688. },
  689. "backtrace": {
  690. "type": "integer",
  691. "minimum": 0,
  692. "description": "Index into the backtraceGraph nodes array"
  693. }
  694. },
  695. "additionalProperties": false
  696. }
  697. },
  698. "compileGroupsIncludes": {
  699. "type": "array",
  700. "items": {
  701. "type": "object",
  702. "required": [
  703. "path"
  704. ],
  705. "properties": {
  706. "path": {
  707. "type": "string",
  708. "description": "Include directory path"
  709. },
  710. "isSystem": {
  711. "type": "boolean",
  712. "description": "True if the path is a system include directory"
  713. },
  714. "backtrace": {
  715. "type": "integer",
  716. "minimum": 0,
  717. "description": "Index into the backtraceGraph nodes array"
  718. }
  719. },
  720. "additionalProperties": false
  721. }
  722. },
  723. "compileGroupsFrameworksV2_6": {
  724. "type": "array",
  725. "items": {
  726. "type": "object",
  727. "required": [
  728. "path"
  729. ],
  730. "properties": {
  731. "path": {
  732. "type": "string",
  733. "description": "Framework directory path"
  734. },
  735. "isSystem": {
  736. "type": "boolean",
  737. "description": "True if the path is to a system framework directory"
  738. },
  739. "backtrace": {
  740. "type": "integer",
  741. "minimum": 0,
  742. "description": "Index into the backtraceGraph nodes array"
  743. }
  744. },
  745. "additionalProperties": false
  746. }
  747. },
  748. "compileGroupsPrecompileHeadersV2_1": {
  749. "type": "array",
  750. "items": {
  751. "type": "object",
  752. "required": [
  753. "header"
  754. ],
  755. "properties": {
  756. "header": {
  757. "type": "string",
  758. "description": "Path to the precompile header file"
  759. },
  760. "backtrace": {
  761. "type": "integer",
  762. "minimum": 0,
  763. "description": "Index into the backtraceGraph nodes array"
  764. }
  765. },
  766. "additionalProperties": false
  767. }
  768. },
  769. "compileGroupsDefines": {
  770. "type": "array",
  771. "items": {
  772. "type": "object",
  773. "required": [
  774. "define"
  775. ],
  776. "properties": {
  777. "define": {
  778. "type": "string",
  779. "description": "Preprocessor definition in name or name=value format"
  780. },
  781. "backtrace": {
  782. "type": "integer",
  783. "minimum": 0,
  784. "description": "Index into the backtraceGraph nodes array"
  785. }
  786. },
  787. "additionalProperties": false
  788. }
  789. },
  790. "compileGroupsSysroot": {
  791. "type": "object",
  792. "required": [
  793. "path"
  794. ],
  795. "properties": {
  796. "path": {
  797. "type": "string",
  798. "description": "Absolute path to the sysroot"
  799. }
  800. },
  801. "additionalProperties": false
  802. },
  803. "compileGroupsV2_0": {
  804. "type": "array",
  805. "items": {
  806. "type": "object",
  807. "required": [
  808. "sourceIndexes",
  809. "language"
  810. ],
  811. "properties": {
  812. "sourceIndexes": {
  813. "$ref": "#/definitions/compileGroupsSourceIndexes"
  814. },
  815. "language": {
  816. "$ref": "#/definitions/compileGroupsLanguage"
  817. },
  818. "compileCommandFragments": {
  819. "$ref": "#/definitions/compileGroupsCompileCommandFragments"
  820. },
  821. "includes": {
  822. "$ref": "#/definitions/compileGroupsIncludes"
  823. },
  824. "defines": {
  825. "$ref": "#/definitions/compileGroupsDefines"
  826. },
  827. "sysroot": {
  828. "$ref": "#/definitions/compileGroupsSysroot"
  829. }
  830. },
  831. "additionalProperties": false
  832. }
  833. },
  834. "compileGroupsV2_1": {
  835. "type": "array",
  836. "items": {
  837. "type": "object",
  838. "required": [
  839. "sourceIndexes",
  840. "language"
  841. ],
  842. "properties": {
  843. "sourceIndexes": {
  844. "$ref": "#/definitions/compileGroupsSourceIndexes"
  845. },
  846. "language": {
  847. "$ref": "#/definitions/compileGroupsLanguage"
  848. },
  849. "compileCommandFragments": {
  850. "$ref": "#/definitions/compileGroupsCompileCommandFragments"
  851. },
  852. "includes": {
  853. "$ref": "#/definitions/compileGroupsIncludes"
  854. },
  855. "precompileHeaders": {
  856. "$ref": "#/definitions/compileGroupsPrecompileHeadersV2_1"
  857. },
  858. "defines": {
  859. "$ref": "#/definitions/compileGroupsDefines"
  860. },
  861. "sysroot": {
  862. "$ref": "#/definitions/compileGroupsSysroot"
  863. }
  864. },
  865. "additionalProperties": false
  866. }
  867. },
  868. "compileGroupsV2_2": {
  869. "type": "array",
  870. "items": {
  871. "type": "object",
  872. "required": [
  873. "sourceIndexes",
  874. "language"
  875. ],
  876. "properties": {
  877. "sourceIndexes": {
  878. "$ref": "#/definitions/compileGroupsSourceIndexes"
  879. },
  880. "language": {
  881. "$ref": "#/definitions/compileGroupsLanguage"
  882. },
  883. "languageStandard": {
  884. "$ref": "#/definitions/compileGroupsLanguageStandardV2_2"
  885. },
  886. "compileCommandFragments": {
  887. "$ref": "#/definitions/compileGroupsCompileCommandFragments"
  888. },
  889. "includes": {
  890. "$ref": "#/definitions/compileGroupsIncludes"
  891. },
  892. "precompileHeaders": {
  893. "$ref": "#/definitions/compileGroupsPrecompileHeadersV2_1"
  894. },
  895. "defines": {
  896. "$ref": "#/definitions/compileGroupsDefines"
  897. },
  898. "sysroot": {
  899. "$ref": "#/definitions/compileGroupsSysroot"
  900. }
  901. },
  902. "additionalProperties": false
  903. }
  904. },
  905. "compileGroupsV2_6": {
  906. "type": "array",
  907. "items": {
  908. "type": "object",
  909. "required": [
  910. "sourceIndexes",
  911. "language"
  912. ],
  913. "properties": {
  914. "sourceIndexes": {
  915. "$ref": "#/definitions/compileGroupsSourceIndexes"
  916. },
  917. "language": {
  918. "$ref": "#/definitions/compileGroupsLanguage"
  919. },
  920. "languageStandard": {
  921. "$ref": "#/definitions/compileGroupsLanguageStandardV2_2"
  922. },
  923. "compileCommandFragments": {
  924. "$ref": "#/definitions/compileGroupsCompileCommandFragments"
  925. },
  926. "includes": {
  927. "$ref": "#/definitions/compileGroupsIncludes"
  928. },
  929. "frameworks": {
  930. "$ref": "#/definitions/compileGroupsFrameworksV2_6"
  931. },
  932. "precompileHeaders": {
  933. "$ref": "#/definitions/compileGroupsPrecompileHeadersV2_1"
  934. },
  935. "defines": {
  936. "$ref": "#/definitions/compileGroupsDefines"
  937. },
  938. "sysroot": {
  939. "$ref": "#/definitions/compileGroupsSysroot"
  940. }
  941. },
  942. "additionalProperties": false
  943. }
  944. },
  945. "backtraceGraph": {
  946. "type": "object",
  947. "required": [
  948. "nodes",
  949. "commands",
  950. "files"
  951. ],
  952. "properties": {
  953. "nodes": {
  954. "type": "array",
  955. "items": {
  956. "type": "object",
  957. "required": [
  958. "file"
  959. ],
  960. "properties": {
  961. "file": {
  962. "type": "integer",
  963. "minimum": 0,
  964. "description": "0-based index into the backtrace files array"
  965. },
  966. "line": {
  967. "type": "integer",
  968. "minimum": 1,
  969. "description": "This is present when the node represents a line within the file. The line number is a 1-based value."
  970. },
  971. "command": {
  972. "type": "integer",
  973. "minimum": 0,
  974. "description": "This is present when the node represents a command invocation. It is a 0-based index into the backtrace commands array."
  975. },
  976. "parent": {
  977. "type": "integer",
  978. "minimum": 0,
  979. "description": "This is present when the node is not the bottom of the call stack. It is a 0-based index of another node in the backtrace nodes array."
  980. }
  981. },
  982. "additionalProperties": false
  983. }
  984. },
  985. "commands": {
  986. "type": "array",
  987. "description": "Each list item is a string specifying a command name",
  988. "items": {
  989. "type": "string"
  990. }
  991. },
  992. "files": {
  993. "type": "array",
  994. "description": "Each list item is a string specifying the path to a file, represented with forward slashes. If the file is inside the top level source directory, the path is specified relative to that directory. Otherwise, the path is absolute.",
  995. "items": {
  996. "type": "string"
  997. }
  998. }
  999. },
  1000. "additionalProperties": false
  1001. },
  1002. "codemodelV2_0": {
  1003. "required": [
  1004. "name",
  1005. "id",
  1006. "type",
  1007. "paths",
  1008. "sources",
  1009. "backtraceGraph"
  1010. ],
  1011. "properties": {
  1012. "name": {
  1013. "$ref": "#/definitions/name"
  1014. },
  1015. "id": {
  1016. "$ref": "#/definitions/id"
  1017. },
  1018. "type": {
  1019. "$ref": "#/definitions/typeV2_0"
  1020. },
  1021. "backtrace": {
  1022. "$ref": "#/definitions/backtrace"
  1023. },
  1024. "folder": {
  1025. "$ref": "#/definitions/folder"
  1026. },
  1027. "paths": {
  1028. "$ref": "#/definitions/paths"
  1029. },
  1030. "nameOnDisk": {
  1031. "$ref": "#/definitions/nameOnDisk"
  1032. },
  1033. "artifacts": {
  1034. "$ref": "#/definitions/artifacts"
  1035. },
  1036. "isGeneratorProvided": {
  1037. "$ref": "#/definitions/isGeneratorProvided"
  1038. },
  1039. "install": {
  1040. "$ref": "#/definitions/install"
  1041. },
  1042. "link": {
  1043. "$ref": "#/definitions/link"
  1044. },
  1045. "archive": {
  1046. "$ref": "#/definitions/archive"
  1047. },
  1048. "dependencies": {
  1049. "$ref": "#/definitions/dependencies"
  1050. },
  1051. "sources": {
  1052. "$ref": "#/definitions/sourcesV2_0"
  1053. },
  1054. "sourceGroups": {
  1055. "$ref": "#/definitions/sourceGroups"
  1056. },
  1057. "compileGroups": {
  1058. "$ref": "#/definitions/compileGroupsV2_0"
  1059. },
  1060. "backtraceGraph": {
  1061. "$ref": "#/definitions/backtraceGraph"
  1062. }
  1063. },
  1064. "additionalProperties": false
  1065. },
  1066. "codemodelV2_1": {
  1067. "required": [
  1068. "name",
  1069. "id",
  1070. "type",
  1071. "paths",
  1072. "sources",
  1073. "backtraceGraph"
  1074. ],
  1075. "properties": {
  1076. "name": {
  1077. "$ref": "#/definitions/name"
  1078. },
  1079. "id": {
  1080. "$ref": "#/definitions/id"
  1081. },
  1082. "type": {
  1083. "$ref": "#/definitions/typeV2_0"
  1084. },
  1085. "backtrace": {
  1086. "$ref": "#/definitions/backtrace"
  1087. },
  1088. "folder": {
  1089. "$ref": "#/definitions/folder"
  1090. },
  1091. "paths": {
  1092. "$ref": "#/definitions/paths"
  1093. },
  1094. "nameOnDisk": {
  1095. "$ref": "#/definitions/nameOnDisk"
  1096. },
  1097. "artifacts": {
  1098. "$ref": "#/definitions/artifacts"
  1099. },
  1100. "isGeneratorProvided": {
  1101. "$ref": "#/definitions/isGeneratorProvided"
  1102. },
  1103. "install": {
  1104. "$ref": "#/definitions/install"
  1105. },
  1106. "link": {
  1107. "$ref": "#/definitions/link"
  1108. },
  1109. "archive": {
  1110. "$ref": "#/definitions/archive"
  1111. },
  1112. "dependencies": {
  1113. "$ref": "#/definitions/dependencies"
  1114. },
  1115. "sources": {
  1116. "$ref": "#/definitions/sourcesV2_0"
  1117. },
  1118. "sourceGroups": {
  1119. "$ref": "#/definitions/sourceGroups"
  1120. },
  1121. "compileGroups": {
  1122. "$ref": "#/definitions/compileGroupsV2_1"
  1123. },
  1124. "backtraceGraph": {
  1125. "$ref": "#/definitions/backtraceGraph"
  1126. }
  1127. },
  1128. "additionalProperties": false
  1129. },
  1130. "codemodelV2_2": {
  1131. "required": [
  1132. "name",
  1133. "id",
  1134. "type",
  1135. "paths",
  1136. "sources",
  1137. "backtraceGraph"
  1138. ],
  1139. "properties": {
  1140. "name": {
  1141. "$ref": "#/definitions/name"
  1142. },
  1143. "id": {
  1144. "$ref": "#/definitions/id"
  1145. },
  1146. "type": {
  1147. "$ref": "#/definitions/typeV2_0"
  1148. },
  1149. "backtrace": {
  1150. "$ref": "#/definitions/backtrace"
  1151. },
  1152. "folder": {
  1153. "$ref": "#/definitions/folder"
  1154. },
  1155. "paths": {
  1156. "$ref": "#/definitions/paths"
  1157. },
  1158. "nameOnDisk": {
  1159. "$ref": "#/definitions/nameOnDisk"
  1160. },
  1161. "artifacts": {
  1162. "$ref": "#/definitions/artifacts"
  1163. },
  1164. "isGeneratorProvided": {
  1165. "$ref": "#/definitions/isGeneratorProvided"
  1166. },
  1167. "install": {
  1168. "$ref": "#/definitions/install"
  1169. },
  1170. "link": {
  1171. "$ref": "#/definitions/link"
  1172. },
  1173. "archive": {
  1174. "$ref": "#/definitions/archive"
  1175. },
  1176. "dependencies": {
  1177. "$ref": "#/definitions/dependencies"
  1178. },
  1179. "sources": {
  1180. "$ref": "#/definitions/sourcesV2_0"
  1181. },
  1182. "sourceGroups": {
  1183. "$ref": "#/definitions/sourceGroups"
  1184. },
  1185. "compileGroups": {
  1186. "$ref": "#/definitions/compileGroupsV2_2"
  1187. },
  1188. "backtraceGraph": {
  1189. "$ref": "#/definitions/backtraceGraph"
  1190. }
  1191. },
  1192. "additionalProperties": false
  1193. },
  1194. "codemodelV2_5": {
  1195. "required": [
  1196. "name",
  1197. "id",
  1198. "type",
  1199. "paths",
  1200. "sources",
  1201. "backtraceGraph"
  1202. ],
  1203. "properties": {
  1204. "name": {
  1205. "$ref": "#/definitions/name"
  1206. },
  1207. "id": {
  1208. "$ref": "#/definitions/id"
  1209. },
  1210. "type": {
  1211. "$ref": "#/definitions/typeV2_0"
  1212. },
  1213. "backtrace": {
  1214. "$ref": "#/definitions/backtrace"
  1215. },
  1216. "folder": {
  1217. "$ref": "#/definitions/folder"
  1218. },
  1219. "paths": {
  1220. "$ref": "#/definitions/paths"
  1221. },
  1222. "nameOnDisk": {
  1223. "$ref": "#/definitions/nameOnDisk"
  1224. },
  1225. "artifacts": {
  1226. "$ref": "#/definitions/artifacts"
  1227. },
  1228. "isGeneratorProvided": {
  1229. "$ref": "#/definitions/isGeneratorProvided"
  1230. },
  1231. "install": {
  1232. "$ref": "#/definitions/install"
  1233. },
  1234. "link": {
  1235. "$ref": "#/definitions/link"
  1236. },
  1237. "archive": {
  1238. "$ref": "#/definitions/archive"
  1239. },
  1240. "dependencies": {
  1241. "$ref": "#/definitions/dependencies"
  1242. },
  1243. "fileSets": {
  1244. "$ref": "#/definitions/fileSetsV2_5"
  1245. },
  1246. "sources": {
  1247. "$ref": "#/definitions/sourcesV2_5"
  1248. },
  1249. "sourceGroups": {
  1250. "$ref": "#/definitions/sourceGroups"
  1251. },
  1252. "compileGroups": {
  1253. "$ref": "#/definitions/compileGroupsV2_2"
  1254. },
  1255. "backtraceGraph": {
  1256. "$ref": "#/definitions/backtraceGraph"
  1257. }
  1258. },
  1259. "additionalProperties": false
  1260. },
  1261. "codemodelV2_6": {
  1262. "required": [
  1263. "name",
  1264. "id",
  1265. "type",
  1266. "paths",
  1267. "sources",
  1268. "backtraceGraph"
  1269. ],
  1270. "properties": {
  1271. "name": {
  1272. "$ref": "#/definitions/name"
  1273. },
  1274. "id": {
  1275. "$ref": "#/definitions/id"
  1276. },
  1277. "type": {
  1278. "$ref": "#/definitions/typeV2_0"
  1279. },
  1280. "backtrace": {
  1281. "$ref": "#/definitions/backtrace"
  1282. },
  1283. "folder": {
  1284. "$ref": "#/definitions/folder"
  1285. },
  1286. "paths": {
  1287. "$ref": "#/definitions/paths"
  1288. },
  1289. "nameOnDisk": {
  1290. "$ref": "#/definitions/nameOnDisk"
  1291. },
  1292. "artifacts": {
  1293. "$ref": "#/definitions/artifacts"
  1294. },
  1295. "isGeneratorProvided": {
  1296. "$ref": "#/definitions/isGeneratorProvided"
  1297. },
  1298. "install": {
  1299. "$ref": "#/definitions/install"
  1300. },
  1301. "link": {
  1302. "$ref": "#/definitions/link"
  1303. },
  1304. "archive": {
  1305. "$ref": "#/definitions/archive"
  1306. },
  1307. "dependencies": {
  1308. "$ref": "#/definitions/dependencies"
  1309. },
  1310. "fileSets": {
  1311. "$ref": "#/definitions/fileSetsV2_5"
  1312. },
  1313. "sources": {
  1314. "$ref": "#/definitions/sourcesV2_5"
  1315. },
  1316. "sourceGroups": {
  1317. "$ref": "#/definitions/sourceGroups"
  1318. },
  1319. "compileGroups": {
  1320. "$ref": "#/definitions/compileGroupsV2_6"
  1321. },
  1322. "backtraceGraph": {
  1323. "$ref": "#/definitions/backtraceGraph"
  1324. }
  1325. },
  1326. "additionalProperties": false
  1327. },
  1328. "codemodelV2_7": {
  1329. "required": [
  1330. "name",
  1331. "id",
  1332. "type",
  1333. "paths",
  1334. "sources",
  1335. "backtraceGraph"
  1336. ],
  1337. "properties": {
  1338. "name": {
  1339. "$ref": "#/definitions/name"
  1340. },
  1341. "id": {
  1342. "$ref": "#/definitions/id"
  1343. },
  1344. "type": {
  1345. "$ref": "#/definitions/typeV2_0"
  1346. },
  1347. "backtrace": {
  1348. "$ref": "#/definitions/backtrace"
  1349. },
  1350. "folder": {
  1351. "$ref": "#/definitions/folder"
  1352. },
  1353. "paths": {
  1354. "$ref": "#/definitions/paths"
  1355. },
  1356. "nameOnDisk": {
  1357. "$ref": "#/definitions/nameOnDisk"
  1358. },
  1359. "artifacts": {
  1360. "$ref": "#/definitions/artifacts"
  1361. },
  1362. "isGeneratorProvided": {
  1363. "$ref": "#/definitions/isGeneratorProvided"
  1364. },
  1365. "install": {
  1366. "$ref": "#/definitions/install"
  1367. },
  1368. "launchers": {
  1369. "$ref": "#/definitions/launchersV2_7"
  1370. },
  1371. "link": {
  1372. "$ref": "#/definitions/link"
  1373. },
  1374. "archive": {
  1375. "$ref": "#/definitions/archive"
  1376. },
  1377. "dependencies": {
  1378. "$ref": "#/definitions/dependencies"
  1379. },
  1380. "fileSets": {
  1381. "$ref": "#/definitions/fileSetsV2_5"
  1382. },
  1383. "sources": {
  1384. "$ref": "#/definitions/sourcesV2_5"
  1385. },
  1386. "sourceGroups": {
  1387. "$ref": "#/definitions/sourceGroups"
  1388. },
  1389. "compileGroups": {
  1390. "$ref": "#/definitions/compileGroupsV2_6"
  1391. },
  1392. "backtraceGraph": {
  1393. "$ref": "#/definitions/backtraceGraph"
  1394. }
  1395. },
  1396. "additionalProperties": false
  1397. },
  1398. "codemodelV2_8": {
  1399. "required": [
  1400. "name",
  1401. "id",
  1402. "type",
  1403. "paths",
  1404. "sources",
  1405. "backtraceGraph"
  1406. ],
  1407. "properties": {
  1408. "name": {
  1409. "$ref": "#/definitions/name"
  1410. },
  1411. "id": {
  1412. "$ref": "#/definitions/id"
  1413. },
  1414. "type": {
  1415. "$ref": "#/definitions/typeV2_0"
  1416. },
  1417. "backtrace": {
  1418. "$ref": "#/definitions/backtrace"
  1419. },
  1420. "folder": {
  1421. "$ref": "#/definitions/folder"
  1422. },
  1423. "paths": {
  1424. "$ref": "#/definitions/paths"
  1425. },
  1426. "nameOnDisk": {
  1427. "$ref": "#/definitions/nameOnDisk"
  1428. },
  1429. "artifacts": {
  1430. "$ref": "#/definitions/artifacts"
  1431. },
  1432. "isGeneratorProvided": {
  1433. "$ref": "#/definitions/isGeneratorProvided"
  1434. },
  1435. "install": {
  1436. "$ref": "#/definitions/install"
  1437. },
  1438. "launchers": {
  1439. "$ref": "#/definitions/launchersV2_7"
  1440. },
  1441. "link": {
  1442. "$ref": "#/definitions/link"
  1443. },
  1444. "archive": {
  1445. "$ref": "#/definitions/archive"
  1446. },
  1447. "debugger": {
  1448. "$ref": "#/definitions/debuggerV2_8"
  1449. },
  1450. "dependencies": {
  1451. "$ref": "#/definitions/dependencies"
  1452. },
  1453. "fileSets": {
  1454. "$ref": "#/definitions/fileSetsV2_5"
  1455. },
  1456. "sources": {
  1457. "$ref": "#/definitions/sourcesV2_5"
  1458. },
  1459. "sourceGroups": {
  1460. "$ref": "#/definitions/sourceGroups"
  1461. },
  1462. "compileGroups": {
  1463. "$ref": "#/definitions/compileGroupsV2_6"
  1464. },
  1465. "backtraceGraph": {
  1466. "$ref": "#/definitions/backtraceGraph"
  1467. }
  1468. },
  1469. "additionalProperties": false
  1470. },
  1471. "codemodelV2_9": {
  1472. "required": [
  1473. "codemodelVersion",
  1474. "name",
  1475. "id",
  1476. "type",
  1477. "paths",
  1478. "sources",
  1479. "backtraceGraph"
  1480. ],
  1481. "properties": {
  1482. "codemodelVersion": {
  1483. "$ref": "#/definitions/codemodelVersionV2_9"
  1484. },
  1485. "name": {
  1486. "$ref": "#/definitions/name"
  1487. },
  1488. "id": {
  1489. "$ref": "#/definitions/id"
  1490. },
  1491. "type": {
  1492. "$ref": "#/definitions/typeV2_9"
  1493. },
  1494. "imported": {
  1495. "$ref": "#/definitions/importedV2_9"
  1496. },
  1497. "local": {
  1498. "$ref": "#/definitions/localV2_9"
  1499. },
  1500. "abstract": {
  1501. "$ref": "#/definitions/abstractV2_9"
  1502. },
  1503. "backtrace": {
  1504. "$ref": "#/definitions/backtrace"
  1505. },
  1506. "folder": {
  1507. "$ref": "#/definitions/folder"
  1508. },
  1509. "paths": {
  1510. "$ref": "#/definitions/paths"
  1511. },
  1512. "nameOnDisk": {
  1513. "$ref": "#/definitions/nameOnDisk"
  1514. },
  1515. "artifacts": {
  1516. "$ref": "#/definitions/artifacts"
  1517. },
  1518. "isGeneratorProvided": {
  1519. "$ref": "#/definitions/isGeneratorProvided"
  1520. },
  1521. "install": {
  1522. "$ref": "#/definitions/install"
  1523. },
  1524. "launchers": {
  1525. "$ref": "#/definitions/launchersV2_7"
  1526. },
  1527. "link": {
  1528. "$ref": "#/definitions/link"
  1529. },
  1530. "archive": {
  1531. "$ref": "#/definitions/archive"
  1532. },
  1533. "debugger": {
  1534. "$ref": "#/definitions/debuggerV2_8"
  1535. },
  1536. "dependencies": {
  1537. "$ref": "#/definitions/dependencies"
  1538. },
  1539. "linkLibraries": {
  1540. "$ref": "#/definitions/linkLibrariesV2_9"
  1541. },
  1542. "interfaceLinkLibraries": {
  1543. "$ref": "#/definitions/interfaceLinkLibrariesV2_9"
  1544. },
  1545. "compileDependencies": {
  1546. "$ref": "#/definitions/compileDependenciesV2_9"
  1547. },
  1548. "interfaceCompileDependencies": {
  1549. "$ref": "#/definitions/interfaceCompileDependenciesV2_9"
  1550. },
  1551. "objectDependencies": {
  1552. "$ref": "#/definitions/onlyTargetDependenciesArrayV2_9"
  1553. },
  1554. "orderDependencies": {
  1555. "$ref": "#/definitions/onlyTargetDependenciesArrayV2_9"
  1556. },
  1557. "fileSets": {
  1558. "$ref": "#/definitions/fileSetsV2_5"
  1559. },
  1560. "sources": {
  1561. "$ref": "#/definitions/sourcesV2_5"
  1562. },
  1563. "symbolic": {
  1564. "$ref": "#/definitions/symbolicV2_9"
  1565. },
  1566. "sourceGroups": {
  1567. "$ref": "#/definitions/sourceGroups"
  1568. },
  1569. "compileGroups": {
  1570. "$ref": "#/definitions/compileGroupsV2_6"
  1571. },
  1572. "backtraceGraph": {
  1573. "$ref": "#/definitions/backtraceGraph"
  1574. }
  1575. },
  1576. "additionalProperties": false
  1577. }
  1578. }
  1579. }