@nguyenphp/antigravity-marketing 1.0.18 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (231) hide show
  1. package/README.md +130 -78
  2. package/package.json +4 -3
  3. package/templates/.agent/skills/marketing-report-expert/SKILL.md +70 -0
  4. package/templates/.agent/skills/minimax-docx/LICENSE +21 -0
  5. package/templates/.agent/skills/minimax-docx/SKILL.md +274 -0
  6. package/templates/.agent/skills/minimax-docx/assets/styles/academic_styles.xml +250 -0
  7. package/templates/.agent/skills/minimax-docx/assets/styles/corporate_styles.xml +284 -0
  8. package/templates/.agent/skills/minimax-docx/assets/styles/default_styles.xml +449 -0
  9. package/templates/.agent/skills/minimax-docx/assets/xsd/aesthetic-rules.xsd +470 -0
  10. package/templates/.agent/skills/minimax-docx/assets/xsd/business-rules.xsd +130 -0
  11. package/templates/.agent/skills/minimax-docx/assets/xsd/common-types.xsd +159 -0
  12. package/templates/.agent/skills/minimax-docx/assets/xsd/wml-subset.xsd +589 -0
  13. package/templates/.agent/skills/minimax-docx/references/cjk_typography.md +357 -0
  14. package/templates/.agent/skills/minimax-docx/references/cjk_university_template_guide.md +184 -0
  15. package/templates/.agent/skills/minimax-docx/references/comments_guide.md +191 -0
  16. package/templates/.agent/skills/minimax-docx/references/design_good_bad_examples.md +829 -0
  17. package/templates/.agent/skills/minimax-docx/references/design_principles.md +819 -0
  18. package/templates/.agent/skills/minimax-docx/references/openxml_element_order.md +308 -0
  19. package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part1.md +4061 -0
  20. package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part2.md +2820 -0
  21. package/templates/.agent/skills/minimax-docx/references/openxml_encyclopedia_part3.md +3381 -0
  22. package/templates/.agent/skills/minimax-docx/references/openxml_namespaces.md +82 -0
  23. package/templates/.agent/skills/minimax-docx/references/openxml_units.md +72 -0
  24. package/templates/.agent/skills/minimax-docx/references/scenario_a_create.md +284 -0
  25. package/templates/.agent/skills/minimax-docx/references/scenario_b_edit_content.md +295 -0
  26. package/templates/.agent/skills/minimax-docx/references/scenario_c_apply_template.md +456 -0
  27. package/templates/.agent/skills/minimax-docx/references/track_changes_guide.md +200 -0
  28. package/templates/.agent/skills/minimax-docx/references/troubleshooting.md +506 -0
  29. package/templates/.agent/skills/minimax-docx/references/typography_guide.md +294 -0
  30. package/templates/.agent/skills/minimax-docx/references/xsd_validation_guide.md +158 -0
  31. package/templates/.agent/skills/minimax-docx/scripts/doc_to_docx.sh +40 -0
  32. package/templates/.agent/skills/minimax-docx/scripts/docx_preview.sh +37 -0
  33. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/MiniMaxAIDocx.Cli.csproj +19 -0
  34. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Cli/Program.cs +18 -0
  35. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/AnalyzeCommand.cs +147 -0
  36. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ApplyTemplateCommand.cs +322 -0
  37. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/CreateCommand.cs +324 -0
  38. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/DiffCommand.cs +155 -0
  39. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/EditContentCommand.cs +487 -0
  40. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/FixOrderCommand.cs +108 -0
  41. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/MergeRunsCommand.cs +122 -0
  42. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Commands/ValidateCommand.cs +107 -0
  43. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/MiniMaxAIDocx.Core.csproj +15 -0
  44. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/CommentSynchronizer.cs +169 -0
  45. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/ElementOrder.cs +80 -0
  46. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/NamespaceConstants.cs +42 -0
  47. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/RunMerger.cs +81 -0
  48. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/StyleAnalyzer.cs +81 -0
  49. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/TrackChangesHelper.cs +99 -0
  50. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/OpenXml/UnitConverter.cs +23 -0
  51. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples.cs +1832 -0
  52. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch1.cs +910 -0
  53. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch2.cs +999 -0
  54. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch3.cs +1048 -0
  55. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/AestheticRecipeSamples_Batch4.cs +1038 -0
  56. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/CharacterFormattingSamples.cs +1020 -0
  57. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/DocumentCreationSamples.cs +1121 -0
  58. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FieldAndTocSamples.cs +624 -0
  59. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/FootnoteAndCommentSamples.cs +675 -0
  60. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/HeaderFooterSamples.cs +838 -0
  61. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ImageSamples.cs +917 -0
  62. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ListAndNumberingSamples.cs +826 -0
  63. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/ParagraphFormattingSamples.cs +1199 -0
  64. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/StyleSystemSamples.cs +1487 -0
  65. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TableSamples.cs +1163 -0
  66. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Samples/TrackChangesSamples.cs +595 -0
  67. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/CjkHelper.cs +39 -0
  68. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/FontDefaults.cs +24 -0
  69. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Typography/PageSizes.cs +20 -0
  70. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/BusinessRuleValidator.cs +224 -0
  71. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/GateCheckValidator.cs +148 -0
  72. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/ValidationResult.cs +23 -0
  73. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.Core/Validation/XsdValidator.cs +69 -0
  74. package/templates/.agent/skills/minimax-docx/scripts/dotnet/MiniMaxAIDocx.slnx +4 -0
  75. package/templates/.agent/skills/minimax-docx/scripts/env_check.sh +196 -0
  76. package/templates/.agent/skills/minimax-docx/scripts/setup.ps1 +274 -0
  77. package/templates/.agent/skills/minimax-docx/scripts/setup.sh +504 -0
  78. package/templates/.agent/skills/minimax-multimodal-toolkit/SKILL.md +359 -0
  79. package/templates/.agent/skills/minimax-pdf/README.md +222 -0
  80. package/templates/.agent/skills/minimax-pdf/SKILL.md +201 -0
  81. package/templates/.agent/skills/minimax-pdf/design/design.md +381 -0
  82. package/templates/.agent/skills/minimax-pdf/scripts/cover.py +1579 -0
  83. package/templates/.agent/skills/minimax-pdf/scripts/fill_inspect.py +200 -0
  84. package/templates/.agent/skills/minimax-pdf/scripts/fill_write.py +242 -0
  85. package/templates/.agent/skills/minimax-pdf/scripts/make.sh +491 -0
  86. package/templates/.agent/skills/minimax-pdf/scripts/merge.py +112 -0
  87. package/templates/.agent/skills/minimax-pdf/scripts/palette.py +559 -0
  88. package/templates/.agent/skills/minimax-pdf/scripts/reformat_parse.py +374 -0
  89. package/templates/.agent/skills/minimax-pdf/scripts/render_body.py +1055 -0
  90. package/templates/.agent/skills/minimax-pdf/scripts/render_cover.cjs +111 -0
  91. package/templates/.agent/skills/minimax-xlsx/SKILL.md +138 -0
  92. package/templates/.agent/skills/minimax-xlsx/references/create.md +691 -0
  93. package/templates/.agent/skills/minimax-xlsx/references/edit.md +684 -0
  94. package/templates/.agent/skills/minimax-xlsx/references/fix.md +37 -0
  95. package/templates/.agent/skills/minimax-xlsx/references/format.md +768 -0
  96. package/templates/.agent/skills/minimax-xlsx/references/ooxml-cheatsheet.md +231 -0
  97. package/templates/.agent/skills/minimax-xlsx/references/read-analyze.md +97 -0
  98. package/templates/.agent/skills/minimax-xlsx/references/validate.md +772 -0
  99. package/templates/.agent/skills/minimax-xlsx/scripts/formula_check.py +422 -0
  100. package/templates/.agent/skills/minimax-xlsx/scripts/libreoffice_recalc.py +248 -0
  101. package/templates/.agent/skills/minimax-xlsx/scripts/shared_strings_builder.py +163 -0
  102. package/templates/.agent/skills/minimax-xlsx/scripts/style_audit.py +575 -0
  103. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_add_column.py +395 -0
  104. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_insert_row.py +274 -0
  105. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_pack.py +87 -0
  106. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_reader.py +362 -0
  107. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_shift_rows.py +396 -0
  108. package/templates/.agent/skills/minimax-xlsx/scripts/xlsx_unpack.py +130 -0
  109. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/[Content_Types].xml +9 -0
  110. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/_rels/.rels +6 -0
  111. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/_rels/workbook.xml.rels +19 -0
  112. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/sharedStrings.xml +33 -0
  113. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/styles.xml +160 -0
  114. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/workbook.xml +30 -0
  115. package/templates/.agent/skills/minimax-xlsx/templates/minimal_xlsx/xl/worksheets/sheet1.xml +70 -0
  116. package/templates/.agent/skills/pptx-generator/SKILL.md +249 -0
  117. package/templates/.agent/skills/pptx-generator/references/design-system.md +392 -0
  118. package/templates/.agent/skills/pptx-generator/references/editing.md +162 -0
  119. package/templates/.agent/skills/pptx-generator/references/pitfalls.md +112 -0
  120. package/templates/.agent/skills/pptx-generator/references/pptxgenjs.md +420 -0
  121. package/templates/.agent/skills/pptx-generator/references/slide-types.md +413 -0
  122. package/templates/.agent/skills/tutorial-video-expert/SKILL.md +88 -0
  123. package/templates/.agent/skills/ui-ux-pro-max/SKILL.md +170 -585
  124. package/templates/.agent/skills/vision-analysis/SKILL.md +174 -0
  125. package/templates/.agent/workflows/analyze.md +3 -0
  126. package/templates/.agent/workflows/brand-report.md +44 -0
  127. package/templates/.agent/workflows/report.md +49 -0
  128. package/templates/.agent/agents/backend-specialist.md +0 -263
  129. package/templates/.agent/agents/database-architect.md +0 -226
  130. package/templates/.agent/agents/debugger.md +0 -225
  131. package/templates/.agent/agents/devops-engineer.md +0 -242
  132. package/templates/.agent/agents/frontend-specialist.md +0 -527
  133. package/templates/.agent/agents/game-developer.md +0 -162
  134. package/templates/.agent/agents/mobile-developer.md +0 -377
  135. package/templates/.agent/agents/penetration-tester.md +0 -188
  136. package/templates/.agent/agents/security-auditor.md +0 -170
  137. package/templates/.agent/agents/test-engineer.md +0 -158
  138. package/templates/.agent/skills/api-patterns/SKILL.md +0 -81
  139. package/templates/.agent/skills/api-patterns/api-style.md +0 -42
  140. package/templates/.agent/skills/api-patterns/auth.md +0 -24
  141. package/templates/.agent/skills/api-patterns/documentation.md +0 -26
  142. package/templates/.agent/skills/api-patterns/graphql.md +0 -41
  143. package/templates/.agent/skills/api-patterns/rate-limiting.md +0 -31
  144. package/templates/.agent/skills/api-patterns/response.md +0 -37
  145. package/templates/.agent/skills/api-patterns/rest.md +0 -40
  146. package/templates/.agent/skills/api-patterns/scripts/api_validator.py +0 -211
  147. package/templates/.agent/skills/api-patterns/security-testing.md +0 -122
  148. package/templates/.agent/skills/api-patterns/trpc.md +0 -41
  149. package/templates/.agent/skills/api-patterns/versioning.md +0 -22
  150. package/templates/.agent/skills/app-builder/SKILL.md +0 -75
  151. package/templates/.agent/skills/app-builder/agent-coordination.md +0 -71
  152. package/templates/.agent/skills/app-builder/feature-building.md +0 -53
  153. package/templates/.agent/skills/app-builder/project-detection.md +0 -34
  154. package/templates/.agent/skills/app-builder/scaffolding.md +0 -118
  155. package/templates/.agent/skills/app-builder/tech-stack.md +0 -40
  156. package/templates/.agent/skills/app-builder/templates/SKILL.md +0 -39
  157. package/templates/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +0 -76
  158. package/templates/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +0 -92
  159. package/templates/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +0 -88
  160. package/templates/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +0 -88
  161. package/templates/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +0 -83
  162. package/templates/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +0 -90
  163. package/templates/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +0 -90
  164. package/templates/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +0 -82
  165. package/templates/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +0 -100
  166. package/templates/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +0 -106
  167. package/templates/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +0 -101
  168. package/templates/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +0 -83
  169. package/templates/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +0 -93
  170. package/templates/.agent/skills/architecture/SKILL.md +0 -55
  171. package/templates/.agent/skills/architecture/context-discovery.md +0 -43
  172. package/templates/.agent/skills/architecture/examples.md +0 -94
  173. package/templates/.agent/skills/architecture/pattern-selection.md +0 -68
  174. package/templates/.agent/skills/architecture/patterns-reference.md +0 -50
  175. package/templates/.agent/skills/architecture/trade-off-analysis.md +0 -77
  176. package/templates/.agent/skills/bash-linux/SKILL.md +0 -199
  177. package/templates/.agent/skills/behavioral-modes/SKILL.md +0 -242
  178. package/templates/.agent/skills/clean-code/SKILL.md +0 -201
  179. package/templates/.agent/skills/code-review-checklist/SKILL.md +0 -109
  180. package/templates/.agent/skills/database-design/SKILL.md +0 -52
  181. package/templates/.agent/skills/database-design/database-selection.md +0 -43
  182. package/templates/.agent/skills/database-design/indexing.md +0 -39
  183. package/templates/.agent/skills/database-design/migrations.md +0 -48
  184. package/templates/.agent/skills/database-design/optimization.md +0 -36
  185. package/templates/.agent/skills/database-design/orm-selection.md +0 -30
  186. package/templates/.agent/skills/database-design/schema-design.md +0 -56
  187. package/templates/.agent/skills/database-design/scripts/schema_validator.py +0 -172
  188. package/templates/.agent/skills/deployment-procedures/SKILL.md +0 -241
  189. package/templates/.agent/skills/docker-expert/SKILL.md +0 -409
  190. package/templates/.agent/skills/game-development/2d-games/SKILL.md +0 -119
  191. package/templates/.agent/skills/game-development/3d-games/SKILL.md +0 -135
  192. package/templates/.agent/skills/game-development/SKILL.md +0 -167
  193. package/templates/.agent/skills/game-development/game-art/SKILL.md +0 -185
  194. package/templates/.agent/skills/game-development/game-audio/SKILL.md +0 -190
  195. package/templates/.agent/skills/game-development/game-design/SKILL.md +0 -129
  196. package/templates/.agent/skills/game-development/mobile-games/SKILL.md +0 -108
  197. package/templates/.agent/skills/game-development/multiplayer/SKILL.md +0 -132
  198. package/templates/.agent/skills/game-development/pc-games/SKILL.md +0 -144
  199. package/templates/.agent/skills/game-development/vr-ar/SKILL.md +0 -123
  200. package/templates/.agent/skills/game-development/web-games/SKILL.md +0 -150
  201. package/templates/.agent/skills/lint-and-validate/SKILL.md +0 -45
  202. package/templates/.agent/skills/lint-and-validate/scripts/lint_runner.py +0 -172
  203. package/templates/.agent/skills/lint-and-validate/scripts/type_coverage.py +0 -173
  204. package/templates/.agent/skills/mcp-builder/SKILL.md +0 -176
  205. package/templates/.agent/skills/nestjs-expert/SKILL.md +0 -552
  206. package/templates/.agent/skills/nextjs-best-practices/SKILL.md +0 -203
  207. package/templates/.agent/skills/nodejs-best-practices/SKILL.md +0 -333
  208. package/templates/.agent/skills/parallel-agents/SKILL.md +0 -175
  209. package/templates/.agent/skills/performance-profiling/SKILL.md +0 -143
  210. package/templates/.agent/skills/performance-profiling/scripts/lighthouse_audit.py +0 -76
  211. package/templates/.agent/skills/powershell-windows/SKILL.md +0 -167
  212. package/templates/.agent/skills/prisma-expert/SKILL.md +0 -355
  213. package/templates/.agent/skills/python-patterns/SKILL.md +0 -441
  214. package/templates/.agent/skills/react-patterns/SKILL.md +0 -198
  215. package/templates/.agent/skills/red-team-tactics/SKILL.md +0 -199
  216. package/templates/.agent/skills/server-management/SKILL.md +0 -161
  217. package/templates/.agent/skills/systematic-debugging/SKILL.md +0 -109
  218. package/templates/.agent/skills/tdd-workflow/SKILL.md +0 -149
  219. package/templates/.agent/skills/testing-patterns/SKILL.md +0 -178
  220. package/templates/.agent/skills/testing-patterns/scripts/test_runner.py +0 -219
  221. package/templates/.agent/skills/typescript-expert/SKILL.md +0 -429
  222. package/templates/.agent/skills/vue-expert/SKILL.md +0 -374
  223. package/templates/.agent/skills/vulnerability-scanner/SKILL.md +0 -276
  224. package/templates/.agent/skills/vulnerability-scanner/checklists.md +0 -121
  225. package/templates/.agent/skills/vulnerability-scanner/scripts/security_scan.py +0 -458
  226. package/templates/.agent/skills/webapp-testing/SKILL.md +0 -187
  227. package/templates/.agent/skills/webapp-testing/scripts/playwright_runner.py +0 -173
  228. package/templates/.agent/workflows/debug.md +0 -103
  229. package/templates/.agent/workflows/deploy.md +0 -176
  230. package/templates/.agent/workflows/enhance.md +0 -63
  231. package/templates/.agent/workflows/test.md +0 -144
@@ -0,0 +1,589 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- WordprocessingML Subset Schema for minimax-docx -->
3
+ <!-- Curated subset of ISO 29500 covering elements agents commonly generate -->
4
+ <!-- MIT License - minimax-docx project -->
5
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
6
+ xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
7
+ xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
8
+ xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
9
+ targetNamespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
10
+ elementFormDefault="qualified">
11
+
12
+ <xs:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"/>
13
+ <xs:import namespace="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"/>
14
+
15
+ <!-- ============================================================ -->
16
+ <!-- Root element -->
17
+ <!-- ============================================================ -->
18
+ <xs:element name="document" type="w:CT_Document"/>
19
+
20
+ <xs:complexType name="CT_Document">
21
+ <xs:sequence>
22
+ <xs:element name="body" type="w:CT_Body" minOccurs="0"/>
23
+ </xs:sequence>
24
+ </xs:complexType>
25
+
26
+ <!-- ============================================================ -->
27
+ <!-- Body -->
28
+ <!-- ============================================================ -->
29
+ <xs:complexType name="CT_Body">
30
+ <xs:sequence>
31
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
32
+ <xs:element name="p" type="w:CT_P"/>
33
+ <xs:element name="tbl" type="w:CT_Tbl"/>
34
+ <xs:element name="sdt" type="w:CT_SdtBlock"/>
35
+ <xs:element name="bookmarkStart" type="w:CT_BookmarkStart"/>
36
+ <xs:element name="bookmarkEnd" type="w:CT_BookmarkEnd"/>
37
+ </xs:choice>
38
+ <xs:element name="sectPr" type="w:CT_SectPr" minOccurs="0"/>
39
+ </xs:sequence>
40
+ </xs:complexType>
41
+
42
+ <!-- ============================================================ -->
43
+ <!-- Paragraph -->
44
+ <!-- ============================================================ -->
45
+ <xs:complexType name="CT_P">
46
+ <xs:sequence>
47
+ <xs:element name="pPr" type="w:CT_PPr" minOccurs="0"/>
48
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
49
+ <xs:element name="r" type="w:CT_R"/>
50
+ <xs:element name="hyperlink" type="w:CT_Hyperlink"/>
51
+ <xs:element name="bookmarkStart" type="w:CT_BookmarkStart"/>
52
+ <xs:element name="bookmarkEnd" type="w:CT_BookmarkEnd"/>
53
+ <xs:element name="commentRangeStart" type="w:CT_MarkupRange"/>
54
+ <xs:element name="commentRangeEnd" type="w:CT_MarkupRange"/>
55
+ <xs:element name="ins" type="w:CT_RunTrackChange"/>
56
+ <xs:element name="del" type="w:CT_RunTrackChange"/>
57
+ </xs:choice>
58
+ </xs:sequence>
59
+ <xs:attribute ref="r:id" use="optional"/>
60
+ </xs:complexType>
61
+
62
+ <!-- Paragraph Properties -->
63
+ <xs:complexType name="CT_PPr">
64
+ <xs:all>
65
+ <xs:element name="pStyle" minOccurs="0">
66
+ <xs:complexType>
67
+ <xs:attribute name="val" type="xs:string" use="required"/>
68
+ </xs:complexType>
69
+ </xs:element>
70
+ <xs:element name="keepNext" type="w:CT_OnOff" minOccurs="0"/>
71
+ <xs:element name="keepLines" type="w:CT_OnOff" minOccurs="0"/>
72
+ <xs:element name="pageBreakBefore" type="w:CT_OnOff" minOccurs="0"/>
73
+ <xs:element name="widowControl" type="w:CT_OnOff" minOccurs="0"/>
74
+ <xs:element name="numPr" type="w:CT_NumPr" minOccurs="0"/>
75
+ <xs:element name="spacing" type="w:CT_Spacing" minOccurs="0"/>
76
+ <xs:element name="ind" type="w:CT_Ind" minOccurs="0"/>
77
+ <xs:element name="jc" minOccurs="0">
78
+ <xs:complexType>
79
+ <xs:attribute name="val" type="xs:string" use="required"/>
80
+ </xs:complexType>
81
+ </xs:element>
82
+ <xs:element name="outlineLvl" minOccurs="0">
83
+ <xs:complexType>
84
+ <xs:attribute name="val" type="xs:integer" use="required"/>
85
+ </xs:complexType>
86
+ </xs:element>
87
+ <xs:element name="rPr" type="w:CT_RPr" minOccurs="0"/>
88
+ <xs:element name="pBdr" type="w:CT_PBdr" minOccurs="0"/>
89
+ <xs:element name="shd" type="w:CT_Shd" minOccurs="0"/>
90
+ <xs:element name="tabs" type="w:CT_Tabs" minOccurs="0"/>
91
+ <xs:element name="sectPr" type="w:CT_SectPr" minOccurs="0"/>
92
+ </xs:all>
93
+ </xs:complexType>
94
+
95
+ <!-- ============================================================ -->
96
+ <!-- Run -->
97
+ <!-- ============================================================ -->
98
+ <xs:complexType name="CT_R">
99
+ <xs:sequence>
100
+ <xs:element name="rPr" type="w:CT_RPr" minOccurs="0"/>
101
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
102
+ <xs:element name="t" type="w:CT_Text"/>
103
+ <xs:element name="delText" type="w:CT_Text"/>
104
+ <xs:element name="br" type="w:CT_Br"/>
105
+ <xs:element name="tab" type="w:CT_Empty"/>
106
+ <xs:element name="cr" type="w:CT_Empty"/>
107
+ <xs:element name="drawing" type="w:CT_Drawing"/>
108
+ <xs:element name="commentReference" type="w:CT_MarkupRef"/>
109
+ <xs:element name="footnoteReference" type="w:CT_FtnEdnRef"/>
110
+ <xs:element name="endnoteReference" type="w:CT_FtnEdnRef"/>
111
+ </xs:choice>
112
+ </xs:sequence>
113
+ </xs:complexType>
114
+
115
+ <!-- Run Properties -->
116
+ <xs:complexType name="CT_RPr">
117
+ <xs:all>
118
+ <xs:element name="rStyle" minOccurs="0">
119
+ <xs:complexType>
120
+ <xs:attribute name="val" type="xs:string" use="required"/>
121
+ </xs:complexType>
122
+ </xs:element>
123
+ <xs:element name="rFonts" type="w:CT_Fonts" minOccurs="0"/>
124
+ <xs:element name="b" type="w:CT_OnOff" minOccurs="0"/>
125
+ <xs:element name="bCs" type="w:CT_OnOff" minOccurs="0"/>
126
+ <xs:element name="i" type="w:CT_OnOff" minOccurs="0"/>
127
+ <xs:element name="iCs" type="w:CT_OnOff" minOccurs="0"/>
128
+ <xs:element name="caps" type="w:CT_OnOff" minOccurs="0"/>
129
+ <xs:element name="smallCaps" type="w:CT_OnOff" minOccurs="0"/>
130
+ <xs:element name="strike" type="w:CT_OnOff" minOccurs="0"/>
131
+ <xs:element name="dstrike" type="w:CT_OnOff" minOccurs="0"/>
132
+ <xs:element name="vanish" type="w:CT_OnOff" minOccurs="0"/>
133
+ <xs:element name="color" minOccurs="0">
134
+ <xs:complexType>
135
+ <xs:attribute name="val" type="xs:string" use="required"/>
136
+ <xs:attribute name="themeColor" type="xs:string" use="optional"/>
137
+ </xs:complexType>
138
+ </xs:element>
139
+ <xs:element name="spacing" minOccurs="0">
140
+ <xs:complexType>
141
+ <xs:attribute name="val" type="xs:integer" use="required"/>
142
+ </xs:complexType>
143
+ </xs:element>
144
+ <xs:element name="sz" minOccurs="0">
145
+ <xs:complexType>
146
+ <xs:attribute name="val" type="xs:positiveInteger" use="required"/>
147
+ </xs:complexType>
148
+ </xs:element>
149
+ <xs:element name="szCs" minOccurs="0">
150
+ <xs:complexType>
151
+ <xs:attribute name="val" type="xs:positiveInteger" use="required"/>
152
+ </xs:complexType>
153
+ </xs:element>
154
+ <xs:element name="highlight" minOccurs="0">
155
+ <xs:complexType>
156
+ <xs:attribute name="val" type="xs:string" use="required"/>
157
+ </xs:complexType>
158
+ </xs:element>
159
+ <xs:element name="u" minOccurs="0">
160
+ <xs:complexType>
161
+ <xs:attribute name="val" type="xs:string" use="required"/>
162
+ <xs:attribute name="color" type="xs:string" use="optional"/>
163
+ </xs:complexType>
164
+ </xs:element>
165
+ <xs:element name="vertAlign" minOccurs="0">
166
+ <xs:complexType>
167
+ <xs:attribute name="val" type="xs:string" use="required"/>
168
+ </xs:complexType>
169
+ </xs:element>
170
+ <xs:element name="lang" minOccurs="0">
171
+ <xs:complexType>
172
+ <xs:attribute name="val" type="xs:string" use="optional"/>
173
+ <xs:attribute name="eastAsia" type="xs:string" use="optional"/>
174
+ <xs:attribute name="bidi" type="xs:string" use="optional"/>
175
+ </xs:complexType>
176
+ </xs:element>
177
+ </xs:all>
178
+ </xs:complexType>
179
+
180
+ <!-- ============================================================ -->
181
+ <!-- Text -->
182
+ <!-- ============================================================ -->
183
+ <xs:complexType name="CT_Text" mixed="true">
184
+ <xs:attribute ref="xml:space" use="optional"/>
185
+ </xs:complexType>
186
+
187
+ <!-- ============================================================ -->
188
+ <!-- Table -->
189
+ <!-- ============================================================ -->
190
+ <xs:complexType name="CT_Tbl">
191
+ <xs:sequence>
192
+ <xs:element name="tblPr" type="w:CT_TblPr" minOccurs="0"/>
193
+ <xs:element name="tblGrid" type="w:CT_TblGrid" minOccurs="0"/>
194
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
195
+ <xs:element name="tr" type="w:CT_Row"/>
196
+ <xs:element name="bookmarkStart" type="w:CT_BookmarkStart"/>
197
+ <xs:element name="bookmarkEnd" type="w:CT_BookmarkEnd"/>
198
+ </xs:choice>
199
+ </xs:sequence>
200
+ </xs:complexType>
201
+
202
+ <xs:complexType name="CT_TblPr">
203
+ <xs:all>
204
+ <xs:element name="tblStyle" minOccurs="0">
205
+ <xs:complexType>
206
+ <xs:attribute name="val" type="xs:string" use="required"/>
207
+ </xs:complexType>
208
+ </xs:element>
209
+ <xs:element name="tblW" type="w:CT_TblWidth" minOccurs="0"/>
210
+ <xs:element name="jc" minOccurs="0">
211
+ <xs:complexType>
212
+ <xs:attribute name="val" type="xs:string" use="required"/>
213
+ </xs:complexType>
214
+ </xs:element>
215
+ <xs:element name="tblInd" type="w:CT_TblWidth" minOccurs="0"/>
216
+ <xs:element name="tblBorders" type="w:CT_TblBorders" minOccurs="0"/>
217
+ <xs:element name="shd" type="w:CT_Shd" minOccurs="0"/>
218
+ <xs:element name="tblLayout" minOccurs="0">
219
+ <xs:complexType>
220
+ <xs:attribute name="type" type="xs:string" use="required"/>
221
+ </xs:complexType>
222
+ </xs:element>
223
+ <xs:element name="tblCellMar" type="w:CT_TblCellMar" minOccurs="0"/>
224
+ <xs:element name="tblLook" minOccurs="0">
225
+ <xs:complexType>
226
+ <xs:attribute name="val" type="xs:string" use="optional"/>
227
+ <xs:attribute name="firstRow" type="xs:string" use="optional"/>
228
+ <xs:attribute name="lastRow" type="xs:string" use="optional"/>
229
+ <xs:attribute name="firstColumn" type="xs:string" use="optional"/>
230
+ <xs:attribute name="lastColumn" type="xs:string" use="optional"/>
231
+ <xs:attribute name="noHBand" type="xs:string" use="optional"/>
232
+ <xs:attribute name="noVBand" type="xs:string" use="optional"/>
233
+ </xs:complexType>
234
+ </xs:element>
235
+ </xs:all>
236
+ </xs:complexType>
237
+
238
+ <xs:complexType name="CT_TblGrid">
239
+ <xs:sequence>
240
+ <xs:element name="gridCol" minOccurs="0" maxOccurs="unbounded">
241
+ <xs:complexType>
242
+ <xs:attribute name="w" type="xs:nonNegativeInteger" use="optional"/>
243
+ </xs:complexType>
244
+ </xs:element>
245
+ </xs:sequence>
246
+ </xs:complexType>
247
+
248
+ <xs:complexType name="CT_Row">
249
+ <xs:sequence>
250
+ <xs:element name="trPr" type="w:CT_TrPr" minOccurs="0"/>
251
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
252
+ <xs:element name="tc" type="w:CT_Cell"/>
253
+ <xs:element name="bookmarkStart" type="w:CT_BookmarkStart"/>
254
+ <xs:element name="bookmarkEnd" type="w:CT_BookmarkEnd"/>
255
+ </xs:choice>
256
+ </xs:sequence>
257
+ </xs:complexType>
258
+
259
+ <xs:complexType name="CT_TrPr">
260
+ <xs:all>
261
+ <xs:element name="trHeight" minOccurs="0">
262
+ <xs:complexType>
263
+ <xs:attribute name="val" type="xs:nonNegativeInteger" use="optional"/>
264
+ <xs:attribute name="hRule" type="xs:string" use="optional"/>
265
+ </xs:complexType>
266
+ </xs:element>
267
+ <xs:element name="tblHeader" type="w:CT_OnOff" minOccurs="0"/>
268
+ <xs:element name="jc" minOccurs="0">
269
+ <xs:complexType>
270
+ <xs:attribute name="val" type="xs:string" use="required"/>
271
+ </xs:complexType>
272
+ </xs:element>
273
+ </xs:all>
274
+ </xs:complexType>
275
+
276
+ <xs:complexType name="CT_Cell">
277
+ <xs:sequence>
278
+ <xs:element name="tcPr" type="w:CT_TcPr" minOccurs="0"/>
279
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
280
+ <xs:element name="p" type="w:CT_P"/>
281
+ <xs:element name="tbl" type="w:CT_Tbl"/>
282
+ </xs:choice>
283
+ </xs:sequence>
284
+ </xs:complexType>
285
+
286
+ <xs:complexType name="CT_TcPr">
287
+ <xs:all>
288
+ <xs:element name="tcW" type="w:CT_TblWidth" minOccurs="0"/>
289
+ <xs:element name="gridSpan" minOccurs="0">
290
+ <xs:complexType>
291
+ <xs:attribute name="val" type="xs:positiveInteger" use="required"/>
292
+ </xs:complexType>
293
+ </xs:element>
294
+ <xs:element name="vMerge" minOccurs="0">
295
+ <xs:complexType>
296
+ <xs:attribute name="val" type="xs:string" use="optional"/>
297
+ </xs:complexType>
298
+ </xs:element>
299
+ <xs:element name="tcBorders" type="w:CT_TcBorders" minOccurs="0"/>
300
+ <xs:element name="shd" type="w:CT_Shd" minOccurs="0"/>
301
+ <xs:element name="vAlign" minOccurs="0">
302
+ <xs:complexType>
303
+ <xs:attribute name="val" type="xs:string" use="required"/>
304
+ </xs:complexType>
305
+ </xs:element>
306
+ <xs:element name="noWrap" type="w:CT_OnOff" minOccurs="0"/>
307
+ </xs:all>
308
+ </xs:complexType>
309
+
310
+ <!-- ============================================================ -->
311
+ <!-- Section Properties -->
312
+ <!-- ============================================================ -->
313
+ <xs:complexType name="CT_SectPr">
314
+ <xs:all>
315
+ <xs:element name="headerReference" minOccurs="0">
316
+ <xs:complexType>
317
+ <xs:attribute name="type" type="xs:string" use="required"/>
318
+ <xs:attribute ref="r:id" use="required"/>
319
+ </xs:complexType>
320
+ </xs:element>
321
+ <xs:element name="footerReference" minOccurs="0">
322
+ <xs:complexType>
323
+ <xs:attribute name="type" type="xs:string" use="required"/>
324
+ <xs:attribute ref="r:id" use="required"/>
325
+ </xs:complexType>
326
+ </xs:element>
327
+ <xs:element name="type" minOccurs="0">
328
+ <xs:complexType>
329
+ <xs:attribute name="val" type="xs:string" use="required"/>
330
+ </xs:complexType>
331
+ </xs:element>
332
+ <xs:element name="pgSz" minOccurs="0">
333
+ <xs:complexType>
334
+ <xs:attribute name="w" type="xs:nonNegativeInteger" use="required"/>
335
+ <xs:attribute name="h" type="xs:nonNegativeInteger" use="required"/>
336
+ <xs:attribute name="orient" type="xs:string" use="optional"/>
337
+ </xs:complexType>
338
+ </xs:element>
339
+ <xs:element name="pgMar" minOccurs="0">
340
+ <xs:complexType>
341
+ <xs:attribute name="top" type="xs:integer" use="required"/>
342
+ <xs:attribute name="right" type="xs:nonNegativeInteger" use="required"/>
343
+ <xs:attribute name="bottom" type="xs:integer" use="required"/>
344
+ <xs:attribute name="left" type="xs:nonNegativeInteger" use="required"/>
345
+ <xs:attribute name="header" type="xs:nonNegativeInteger" use="optional"/>
346
+ <xs:attribute name="footer" type="xs:nonNegativeInteger" use="optional"/>
347
+ <xs:attribute name="gutter" type="xs:nonNegativeInteger" use="optional"/>
348
+ </xs:complexType>
349
+ </xs:element>
350
+ <xs:element name="pgNumType" minOccurs="0">
351
+ <xs:complexType>
352
+ <xs:attribute name="fmt" type="xs:string" use="optional"/>
353
+ <xs:attribute name="start" type="xs:nonNegativeInteger" use="optional"/>
354
+ </xs:complexType>
355
+ </xs:element>
356
+ <xs:element name="cols" minOccurs="0">
357
+ <xs:complexType>
358
+ <xs:attribute name="space" type="xs:nonNegativeInteger" use="optional"/>
359
+ <xs:attribute name="num" type="xs:positiveInteger" use="optional"/>
360
+ </xs:complexType>
361
+ </xs:element>
362
+ <xs:element name="docGrid" minOccurs="0">
363
+ <xs:complexType>
364
+ <xs:attribute name="linePitch" type="xs:nonNegativeInteger" use="optional"/>
365
+ <xs:attribute name="type" type="xs:string" use="optional"/>
366
+ </xs:complexType>
367
+ </xs:element>
368
+ <xs:element name="titlePg" type="w:CT_OnOff" minOccurs="0"/>
369
+ </xs:all>
370
+ </xs:complexType>
371
+
372
+ <!-- ============================================================ -->
373
+ <!-- Hyperlink -->
374
+ <!-- ============================================================ -->
375
+ <xs:complexType name="CT_Hyperlink">
376
+ <xs:sequence>
377
+ <xs:element name="r" type="w:CT_R" minOccurs="0" maxOccurs="unbounded"/>
378
+ </xs:sequence>
379
+ <xs:attribute ref="r:id" use="optional"/>
380
+ <xs:attribute name="anchor" type="xs:string" use="optional"/>
381
+ <xs:attribute name="history" type="xs:string" use="optional"/>
382
+ </xs:complexType>
383
+
384
+ <!-- ============================================================ -->
385
+ <!-- Track Changes -->
386
+ <!-- ============================================================ -->
387
+ <xs:complexType name="CT_RunTrackChange">
388
+ <xs:sequence>
389
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
390
+ <xs:element name="r" type="w:CT_R"/>
391
+ </xs:choice>
392
+ </xs:sequence>
393
+ <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/>
394
+ <xs:attribute name="author" type="xs:string" use="required"/>
395
+ <xs:attribute name="date" type="xs:dateTime" use="optional"/>
396
+ </xs:complexType>
397
+
398
+ <!-- ============================================================ -->
399
+ <!-- Bookmarks -->
400
+ <!-- ============================================================ -->
401
+ <xs:complexType name="CT_BookmarkStart">
402
+ <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/>
403
+ <xs:attribute name="name" type="xs:string" use="required"/>
404
+ </xs:complexType>
405
+
406
+ <xs:complexType name="CT_BookmarkEnd">
407
+ <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/>
408
+ </xs:complexType>
409
+
410
+ <!-- ============================================================ -->
411
+ <!-- Comments -->
412
+ <!-- ============================================================ -->
413
+ <xs:complexType name="CT_MarkupRange">
414
+ <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/>
415
+ </xs:complexType>
416
+
417
+ <xs:complexType name="CT_MarkupRef">
418
+ <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/>
419
+ </xs:complexType>
420
+
421
+ <!-- ============================================================ -->
422
+ <!-- Footnote/Endnote reference -->
423
+ <!-- ============================================================ -->
424
+ <xs:complexType name="CT_FtnEdnRef">
425
+ <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/>
426
+ </xs:complexType>
427
+
428
+ <!-- ============================================================ -->
429
+ <!-- Drawing (basic inline image) -->
430
+ <!-- ============================================================ -->
431
+ <xs:complexType name="CT_Drawing">
432
+ <xs:sequence>
433
+ <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
434
+ </xs:sequence>
435
+ </xs:complexType>
436
+
437
+ <!-- ============================================================ -->
438
+ <!-- Structured Document Tag (content control) -->
439
+ <!-- ============================================================ -->
440
+ <xs:complexType name="CT_SdtBlock">
441
+ <xs:sequence>
442
+ <xs:element name="sdtPr" minOccurs="0">
443
+ <xs:complexType>
444
+ <xs:sequence>
445
+ <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
446
+ </xs:sequence>
447
+ </xs:complexType>
448
+ </xs:element>
449
+ <xs:element name="sdtContent" minOccurs="0">
450
+ <xs:complexType>
451
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
452
+ <xs:element name="p" type="w:CT_P"/>
453
+ <xs:element name="tbl" type="w:CT_Tbl"/>
454
+ </xs:choice>
455
+ </xs:complexType>
456
+ </xs:element>
457
+ </xs:sequence>
458
+ </xs:complexType>
459
+
460
+ <!-- ============================================================ -->
461
+ <!-- Helper types -->
462
+ <!-- ============================================================ -->
463
+ <xs:complexType name="CT_OnOff">
464
+ <xs:attribute name="val" type="xs:string" use="optional"/>
465
+ </xs:complexType>
466
+
467
+ <xs:complexType name="CT_Empty"/>
468
+
469
+ <xs:complexType name="CT_Br">
470
+ <xs:attribute name="type" type="xs:string" use="optional"/>
471
+ <xs:attribute name="clear" type="xs:string" use="optional"/>
472
+ </xs:complexType>
473
+
474
+ <xs:complexType name="CT_Fonts">
475
+ <xs:attribute name="ascii" type="xs:string" use="optional"/>
476
+ <xs:attribute name="hAnsi" type="xs:string" use="optional"/>
477
+ <xs:attribute name="eastAsia" type="xs:string" use="optional"/>
478
+ <xs:attribute name="cs" type="xs:string" use="optional"/>
479
+ <xs:attribute name="asciiTheme" type="xs:string" use="optional"/>
480
+ <xs:attribute name="hAnsiTheme" type="xs:string" use="optional"/>
481
+ <xs:attribute name="eastAsiaTheme" type="xs:string" use="optional"/>
482
+ <xs:attribute name="cstheme" type="xs:string" use="optional"/>
483
+ </xs:complexType>
484
+
485
+ <xs:complexType name="CT_NumPr">
486
+ <xs:all>
487
+ <xs:element name="ilvl" minOccurs="0">
488
+ <xs:complexType>
489
+ <xs:attribute name="val" type="xs:nonNegativeInteger" use="required"/>
490
+ </xs:complexType>
491
+ </xs:element>
492
+ <xs:element name="numId" minOccurs="0">
493
+ <xs:complexType>
494
+ <xs:attribute name="val" type="xs:nonNegativeInteger" use="required"/>
495
+ </xs:complexType>
496
+ </xs:element>
497
+ </xs:all>
498
+ </xs:complexType>
499
+
500
+ <xs:complexType name="CT_Spacing">
501
+ <xs:attribute name="before" type="xs:nonNegativeInteger" use="optional"/>
502
+ <xs:attribute name="after" type="xs:nonNegativeInteger" use="optional"/>
503
+ <xs:attribute name="line" type="xs:integer" use="optional"/>
504
+ <xs:attribute name="lineRule" type="xs:string" use="optional"/>
505
+ <xs:attribute name="beforeAutospacing" type="xs:string" use="optional"/>
506
+ <xs:attribute name="afterAutospacing" type="xs:string" use="optional"/>
507
+ </xs:complexType>
508
+
509
+ <xs:complexType name="CT_Ind">
510
+ <xs:attribute name="left" type="xs:integer" use="optional"/>
511
+ <xs:attribute name="right" type="xs:integer" use="optional"/>
512
+ <xs:attribute name="hanging" type="xs:nonNegativeInteger" use="optional"/>
513
+ <xs:attribute name="firstLine" type="xs:nonNegativeInteger" use="optional"/>
514
+ <xs:attribute name="start" type="xs:integer" use="optional"/>
515
+ <xs:attribute name="end" type="xs:integer" use="optional"/>
516
+ </xs:complexType>
517
+
518
+ <xs:complexType name="CT_TblWidth">
519
+ <xs:attribute name="w" type="xs:string" use="optional"/>
520
+ <xs:attribute name="type" type="xs:string" use="optional"/>
521
+ </xs:complexType>
522
+
523
+ <xs:complexType name="CT_Shd">
524
+ <xs:attribute name="val" type="xs:string" use="optional"/>
525
+ <xs:attribute name="color" type="xs:string" use="optional"/>
526
+ <xs:attribute name="fill" type="xs:string" use="optional"/>
527
+ <xs:attribute name="themeFill" type="xs:string" use="optional"/>
528
+ </xs:complexType>
529
+
530
+ <xs:complexType name="CT_Border">
531
+ <xs:attribute name="val" type="xs:string" use="required"/>
532
+ <xs:attribute name="sz" type="xs:nonNegativeInteger" use="optional"/>
533
+ <xs:attribute name="space" type="xs:nonNegativeInteger" use="optional"/>
534
+ <xs:attribute name="color" type="xs:string" use="optional"/>
535
+ <xs:attribute name="themeColor" type="xs:string" use="optional"/>
536
+ </xs:complexType>
537
+
538
+ <xs:complexType name="CT_PBdr">
539
+ <xs:all>
540
+ <xs:element name="top" type="w:CT_Border" minOccurs="0"/>
541
+ <xs:element name="left" type="w:CT_Border" minOccurs="0"/>
542
+ <xs:element name="bottom" type="w:CT_Border" minOccurs="0"/>
543
+ <xs:element name="right" type="w:CT_Border" minOccurs="0"/>
544
+ <xs:element name="between" type="w:CT_Border" minOccurs="0"/>
545
+ </xs:all>
546
+ </xs:complexType>
547
+
548
+ <xs:complexType name="CT_TblBorders">
549
+ <xs:all>
550
+ <xs:element name="top" type="w:CT_Border" minOccurs="0"/>
551
+ <xs:element name="left" type="w:CT_Border" minOccurs="0"/>
552
+ <xs:element name="bottom" type="w:CT_Border" minOccurs="0"/>
553
+ <xs:element name="right" type="w:CT_Border" minOccurs="0"/>
554
+ <xs:element name="insideH" type="w:CT_Border" minOccurs="0"/>
555
+ <xs:element name="insideV" type="w:CT_Border" minOccurs="0"/>
556
+ </xs:all>
557
+ </xs:complexType>
558
+
559
+ <xs:complexType name="CT_TcBorders">
560
+ <xs:all>
561
+ <xs:element name="top" type="w:CT_Border" minOccurs="0"/>
562
+ <xs:element name="left" type="w:CT_Border" minOccurs="0"/>
563
+ <xs:element name="bottom" type="w:CT_Border" minOccurs="0"/>
564
+ <xs:element name="right" type="w:CT_Border" minOccurs="0"/>
565
+ </xs:all>
566
+ </xs:complexType>
567
+
568
+ <xs:complexType name="CT_TblCellMar">
569
+ <xs:all>
570
+ <xs:element name="top" type="w:CT_TblWidth" minOccurs="0"/>
571
+ <xs:element name="left" type="w:CT_TblWidth" minOccurs="0"/>
572
+ <xs:element name="bottom" type="w:CT_TblWidth" minOccurs="0"/>
573
+ <xs:element name="right" type="w:CT_TblWidth" minOccurs="0"/>
574
+ </xs:all>
575
+ </xs:complexType>
576
+
577
+ <xs:complexType name="CT_Tabs">
578
+ <xs:sequence>
579
+ <xs:element name="tab" minOccurs="0" maxOccurs="unbounded">
580
+ <xs:complexType>
581
+ <xs:attribute name="val" type="xs:string" use="required"/>
582
+ <xs:attribute name="pos" type="xs:integer" use="required"/>
583
+ <xs:attribute name="leader" type="xs:string" use="optional"/>
584
+ </xs:complexType>
585
+ </xs:element>
586
+ </xs:sequence>
587
+ </xs:complexType>
588
+
589
+ </xs:schema>