office-open 0.12.0 → 0.12.2

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.
@@ -6,6 +6,21 @@ var docx_schema_default = {
6
6
  $ref: "#/definitions/DocumentOptions",
7
7
  $schema: "http://json-schema.org/draft-07/schema#",
8
8
  definitions: {
9
+ "AbsoluteSizeAnchorOptions": {
10
+ "additionalProperties": false,
11
+ "description": "Absolute anchor (cdr:absSizeAnchor): fixed EMU size at the `from` marker.",
12
+ "properties": {
13
+ "extent": { "$ref": "#/definitions/UserShapeExtentOptions" },
14
+ "from": { "$ref": "#/definitions/UserShapeMarkerOptions" },
15
+ "object": { "$ref": "#/definitions/UserShapeObjectOptions" }
16
+ },
17
+ "required": [
18
+ "from",
19
+ "extent",
20
+ "object"
21
+ ],
22
+ "type": "object"
23
+ },
9
24
  "AbstractNumberingPropertiesOptions": {
10
25
  "additionalProperties": false,
11
26
  "description": "w:abstractNum attributes + child elements + w15 restart.",
@@ -1116,6 +1131,33 @@ var docx_schema_default = {
1116
1131
  },
1117
1132
  "type": "object"
1118
1133
  },
1134
+ "BlipFillOptions": {
1135
+ "additionalProperties": false,
1136
+ "description": "Options for blip fill properties.",
1137
+ "properties": {
1138
+ "blipEffects": {
1139
+ "$ref": "#/definitions/BlipEffectsOptions",
1140
+ "description": "Image adjustment effects (brightness, contrast, grayscale, etc.)"
1141
+ },
1142
+ "dpi": {
1143
+ "description": "DPI of the image",
1144
+ "type": "number"
1145
+ },
1146
+ "rotWithShape": {
1147
+ "description": "Whether the fill rotates with the shape",
1148
+ "type": "boolean"
1149
+ },
1150
+ "sourceRectangle": {
1151
+ "$ref": "#/definitions/SourceRectangleOptions",
1152
+ "description": "Source rectangle for cropping"
1153
+ },
1154
+ "tile": {
1155
+ "$ref": "#/definitions/TileOptions",
1156
+ "description": "Tile fill mode (if omitted, defaults to stretch)"
1157
+ }
1158
+ },
1159
+ "type": "object"
1160
+ },
1119
1161
  "BlockContentChild": {
1120
1162
  "$ref": "#/definitions/SectionChild",
1121
1163
  "description": "SectionChild minus the body-only w:altChunk leg — the content model of customXml and sdt containers (EG_ContentBlockContent has no altChunk, unlike the body-level EG_BlockLevelElts and w:txbxContent)."
@@ -2223,8 +2265,8 @@ var docx_schema_default = {
2223
2265
  "type": "number"
2224
2266
  },
2225
2267
  "userShapes": {
2226
- "description": "User-drawn shapes relationship id (c:userShapes r:id, after printSettings).",
2227
- "type": "string"
2268
+ "$ref": "#/definitions/ChartUserShapesOptions",
2269
+ "description": "User-drawn shapes layered over the chart (c:userShapes, after printSettings)."
2228
2270
  },
2229
2271
  "varyColors": {
2230
2272
  "description": "Vary data-point colors (chart-group-level c:varyColors). Emitted only when set — the corpus is mixed and fresh output stays bare.",
@@ -2564,7 +2606,10 @@ var docx_schema_default = {
2564
2606
  "type": "boolean"
2565
2607
  },
2566
2608
  "upDownBarsGapWidth": { "$ref": "#/definitions/ChartOptions/properties/upDownBarsGapWidth" },
2567
- "userShapes": { "$ref": "#/definitions/ChartOptions/properties/userShapes" },
2609
+ "userShapes": {
2610
+ "$ref": "#/definitions/ChartUserShapesOptions",
2611
+ "description": "User-drawn shapes layered over the chart (c:userShapes, after printSettings)."
2612
+ },
2568
2613
  "varyColors": { "$ref": "#/definitions/ChartOptions/properties/varyColors" },
2569
2614
  "view3D": { "$ref": "#/definitions/View3DOptions" },
2570
2615
  "wireframe": {
@@ -2630,6 +2675,23 @@ var docx_schema_default = {
2630
2675
  ],
2631
2676
  "type": "string"
2632
2677
  },
2678
+ "ChartUserShapesOptions": {
2679
+ "additionalProperties": false,
2680
+ "description": "User-drawn shapes layered over a chart: the c:userShapes reference on the chart space plus the companion part body the format compilers register.",
2681
+ "properties": {
2682
+ "anchors": {
2683
+ "description": "Anchored shapes (the cdr:userShapes part body).",
2684
+ "items": { "anyOf": [{ "$ref": "#/definitions/RelativeSizeAnchorOptions" }, { "$ref": "#/definitions/AbsoluteSizeAnchorOptions" }] },
2685
+ "type": "array"
2686
+ },
2687
+ "relationshipId": {
2688
+ "description": "Chart-part relationship id of the shapes part. Round-trips verbatim; fresh authoring omits it and the reference defaults to rId1 — set an unused id when the same chart also carries externalData.",
2689
+ "type": "string"
2690
+ }
2691
+ },
2692
+ "required": ["anchors"],
2693
+ "type": "object"
2694
+ },
2633
2695
  "CheckBoxOptions": {
2634
2696
  "additionalProperties": false,
2635
2697
  "description": "Options for a checkbox form field.",
@@ -4049,9 +4111,30 @@ var docx_schema_default = {
4049
4111
  },
4050
4112
  "DataLabelsOptions": {
4051
4113
  "additionalProperties": false,
4114
+ "allOf": [{
4115
+ "if": {
4116
+ "properties": { "delete": { "const": true } },
4117
+ "required": ["delete"]
4118
+ },
4119
+ "then": { "not": { "anyOf": [
4120
+ { "required": ["numberFormat"] },
4121
+ { "required": ["shapeProperties"] },
4122
+ { "required": ["textProperties"] },
4123
+ { "required": ["position"] },
4124
+ { "required": ["showLegendKey"] },
4125
+ { "required": ["showVal"] },
4126
+ { "required": ["showCatName"] },
4127
+ { "required": ["showSerName"] },
4128
+ { "required": ["showPercent"] },
4129
+ { "required": ["showBubbleSize"] },
4130
+ { "required": ["separator"] },
4131
+ { "required": ["showLeaderLines"] },
4132
+ { "required": ["leaderLines"] }
4133
+ ] } }
4134
+ }],
4052
4135
  "properties": {
4053
4136
  "delete": {
4054
- "description": "Labels deleted at the group level (c:delete inside c:dLbls) Office writes val=\"0\" explicitly to keep labels on; round-trips the attribute.",
4137
+ "description": "Drop every label for this series (c:delete). Choice vs the shared settings below: `true` ignores them all; `false` keeps labels on and emits its element only when no setting is set (round-trip).",
4055
4138
  "type": "boolean"
4056
4139
  },
4057
4140
  "labels": {
@@ -4589,14 +4672,8 @@ var docx_schema_default = {
4589
4672
  "$ref": "#/definitions/Guid",
4590
4673
  "description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
4591
4674
  },
4592
- "description": {
4593
- "description": "XSD `@descr` — alt text for accessibility; emitted only when present.",
4594
- "type": "string"
4595
- },
4596
- "ext": {
4597
- "description": "Verbatim `a:extLst` inner XML for extensions beyond creationId (a14 picture effects, useLocalDpi, …). Round-trip only: takes precedence over `creationId`, which it subsumes when the source list carries both.",
4598
- "type": "string"
4599
- },
4675
+ "description": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/description" },
4676
+ "ext": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/ext" },
4600
4677
  "hidden": {
4601
4678
  "description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
4602
4679
  "type": "boolean"
@@ -6251,6 +6328,18 @@ var docx_schema_default = {
6251
6328
  "required": ["position", "color"],
6252
6329
  "type": "object"
6253
6330
  },
6331
+ "GraphicFrameLockingOptions": {
6332
+ "additionalProperties": false,
6333
+ "properties": {
6334
+ "noChangeAspect": { "type": "boolean" },
6335
+ "noDrilldown": { "type": "boolean" },
6336
+ "noGrp": { "type": "boolean" },
6337
+ "noMove": { "type": "boolean" },
6338
+ "noResize": { "type": "boolean" },
6339
+ "noSelect": { "type": "boolean" }
6340
+ },
6341
+ "type": "object"
6342
+ },
6254
6343
  "GraphicFrameLocksOptions": {
6255
6344
  "additionalProperties": false,
6256
6345
  "description": "Locking flags for wp:cNvGraphicFramePr.",
@@ -6495,14 +6584,14 @@ var docx_schema_default = {
6495
6584
  "$ref": "#/definitions/Guid",
6496
6585
  "description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
6497
6586
  },
6498
- "description": { "$ref": "#/definitions/DocPropertiesOptions/properties/description" },
6499
- "ext": { "$ref": "#/definitions/DocPropertiesOptions/properties/ext" },
6587
+ "description": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/description" },
6588
+ "ext": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/ext" },
6500
6589
  "hidden": {
6501
6590
  "description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
6502
6591
  "type": "boolean"
6503
6592
  },
6504
6593
  "id": { "type": "number" },
6505
- "name": { "$ref": "#/definitions/NonVisualPropertiesOptions/properties/name" },
6594
+ "name": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/name" },
6506
6595
  "pictureLocks": { "$ref": "#/definitions/NonVisualPropertiesOptions/properties/pictureLocks" },
6507
6596
  "preferRelativeResize": { "$ref": "#/definitions/NonVisualPropertiesOptions/properties/preferRelativeResize" },
6508
6597
  "title": {
@@ -6595,6 +6684,40 @@ var docx_schema_default = {
6595
6684
  },
6596
6685
  "type": "object"
6597
6686
  },
6687
+ "GroupShapePropertiesOptions": {
6688
+ "additionalProperties": false,
6689
+ "description": "Group shape properties. Field order follows the XSD content model. The transform fields come from {@link GroupTransform2DOptions } (flat x/y/width/height/flip/rotation/childOffset/childExtent); the serializer emits them as a single a:xfrm group transform. The container-only `@bwMode` attribute and the wrapping tag are the caller's responsibility (mirrors shapePropertiesDesc).",
6690
+ "properties": {
6691
+ "childExtentHeight": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6692
+ "childExtentWidth": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6693
+ "childOffsetX": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6694
+ "childOffsetY": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6695
+ "effectDag": { "$ref": "#/definitions/EffectDagOptions" },
6696
+ "effects": {
6697
+ "$ref": "#/definitions/EffectListOptions",
6698
+ "description": "EG_EffectProperties (choice: a:effectDag | a:effectLst)."
6699
+ },
6700
+ "fill": {
6701
+ "$ref": "#/definitions/FillOptions",
6702
+ "description": "EG_FillProperties."
6703
+ },
6704
+ "flipHorizontal": { "type": "boolean" },
6705
+ "flipVertical": { "type": "boolean" },
6706
+ "height": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6707
+ "rotation": {
6708
+ "description": "Rotation angle in degrees (e.g., 45 = 45°).",
6709
+ "type": "number"
6710
+ },
6711
+ "scene3d": {
6712
+ "$ref": "#/definitions/Scene3DOptions",
6713
+ "description": "a:scene3d."
6714
+ },
6715
+ "width": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6716
+ "x": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
6717
+ "y": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] }
6718
+ },
6719
+ "type": "object"
6720
+ },
6598
6721
  "Guid": {
6599
6722
  "description": "GUID in braced upper-case form (ST_Guid).",
6600
6723
  "examples": ["{1DF903F5-8FC7-4C6A-9DF9-2AB1D10E6D84}"],
@@ -9076,25 +9199,53 @@ var docx_schema_default = {
9076
9199
  },
9077
9200
  "type": "object"
9078
9201
  },
9079
- "NonVisualPropertiesOptions": {
9202
+ "NonVisualDrawingPropertiesOptions": {
9080
9203
  "additionalProperties": false,
9081
- "description": "Round-trip of `pic:cNvPr`the picture non-visual id/name/description. All fields optional to mirror the source element: `description` is omitted when absent rather than emitted as an empty attribute (Word never writes it empty).",
9204
+ "description": "Mirrors a: — name/descr/title/hidden. id is runtime; hyperlinks stay package-side.",
9082
9205
  "properties": {
9083
9206
  "creationId": {
9084
9207
  "$ref": "#/definitions/Guid",
9085
9208
  "description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
9086
9209
  },
9087
- "description": { "$ref": "#/definitions/DocPropertiesOptions/properties/description" },
9088
- "ext": { "$ref": "#/definitions/DocPropertiesOptions/properties/ext" },
9210
+ "description": {
9211
+ "description": "XSD `@descr` — alt text for accessibility; emitted only when present.",
9212
+ "type": "string"
9213
+ },
9214
+ "ext": {
9215
+ "description": "Verbatim `a:extLst` inner XML for extensions beyond creationId (a14 picture effects, useLocalDpi, …). Round-trip only: takes precedence over `creationId`, which it subsumes when the source list carries both.",
9216
+ "type": "string"
9217
+ },
9089
9218
  "hidden": {
9090
9219
  "description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
9091
9220
  "type": "boolean"
9092
9221
  },
9093
- "id": { "type": "number" },
9094
9222
  "name": {
9095
9223
  "description": "XSD `@name` (required in XML); API-optional, the descriptor synthesizes a fallback.",
9096
9224
  "type": "string"
9097
9225
  },
9226
+ "title": {
9227
+ "description": "XSD `@title`.",
9228
+ "type": "string"
9229
+ }
9230
+ },
9231
+ "type": "object"
9232
+ },
9233
+ "NonVisualPropertiesOptions": {
9234
+ "additionalProperties": false,
9235
+ "description": "Round-trip of `pic:cNvPr` — the picture non-visual id/name/description. All fields optional to mirror the source element: `description` is omitted when absent rather than emitted as an empty attribute (Word never writes it empty).",
9236
+ "properties": {
9237
+ "creationId": {
9238
+ "$ref": "#/definitions/Guid",
9239
+ "description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
9240
+ },
9241
+ "description": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/description" },
9242
+ "ext": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/ext" },
9243
+ "hidden": {
9244
+ "description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
9245
+ "type": "boolean"
9246
+ },
9247
+ "id": { "type": "number" },
9248
+ "name": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions/properties/name" },
9098
9249
  "pictureLocks": {
9099
9250
  "anyOf": [{ "$ref": "#/definitions/PictureLockingOptions" }, { "type": "null" }],
9100
9251
  "description": "Picture locks from pic:cNvPicPr/a:picLocks. `null` = source carried none (round-trips as a bare pic:cNvPicPr); omitted = authoring default (noChangeAspect=\"1\", matching Word's fresh-insert behavior); an object = explicit lock flags."
@@ -12519,6 +12670,21 @@ var docx_schema_default = {
12519
12670
  },
12520
12671
  "type": "object"
12521
12672
  },
12673
+ "RelativeSizeAnchorOptions": {
12674
+ "additionalProperties": false,
12675
+ "description": "Relative anchor (cdr:relSizeAnchor): the object spans from `from` to `to`.",
12676
+ "properties": {
12677
+ "from": { "$ref": "#/definitions/UserShapeMarkerOptions" },
12678
+ "object": { "$ref": "#/definitions/UserShapeObjectOptions" },
12679
+ "to": { "$ref": "#/definitions/UserShapeMarkerOptions" }
12680
+ },
12681
+ "required": [
12682
+ "from",
12683
+ "to",
12684
+ "object"
12685
+ ],
12686
+ "type": "object"
12687
+ },
12522
12688
  "RelativeSizeOptions": {
12523
12689
  "additionalProperties": false,
12524
12690
  "description": "Options for sizing a floating drawing relative to a page base.",
@@ -18277,6 +18443,22 @@ var docx_schema_default = {
18277
18443
  ],
18278
18444
  "description": "Children allowed inside a track-change wrapper (w:ins/w:del/w:moveFrom/ w:moveTo) — runs, the comment range markers Word anchors directly inside the wrapper, complete field chains, and nested same-type wrappers."
18279
18445
  },
18446
+ "Transform2DOptions": {
18447
+ "additionalProperties": false,
18448
+ "properties": {
18449
+ "flipHorizontal": { "type": "boolean" },
18450
+ "flipVertical": { "type": "boolean" },
18451
+ "height": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
18452
+ "rotation": {
18453
+ "description": "Rotation angle in degrees (e.g., 45 = 45°).",
18454
+ "type": "number"
18455
+ },
18456
+ "width": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
18457
+ "x": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
18458
+ "y": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] }
18459
+ },
18460
+ "type": "object"
18461
+ },
18280
18462
  "TransformEffectOptions": {
18281
18463
  "additionalProperties": false,
18282
18464
  "description": "Transform effect — scale, skew, translate.",
@@ -18373,6 +18555,220 @@ var docx_schema_default = {
18373
18555
  "pattern": "^-?(\\d+(\\.\\d+)?|\\.\\d+)(mm|cm|in|pt|pc|pi|px)$",
18374
18556
  "type": "string"
18375
18557
  },
18558
+ "UserShapeConnectorOptions": {
18559
+ "additionalProperties": false,
18560
+ "properties": {
18561
+ "id": {
18562
+ "description": "cNvPr drawing id (schema-required)",
18563
+ "type": "number"
18564
+ },
18565
+ "macro": {
18566
+ "description": "Macro reference (`@macro`)",
18567
+ "type": "string"
18568
+ },
18569
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
18570
+ "published": {
18571
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
18572
+ "type": "boolean"
18573
+ },
18574
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
18575
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
18576
+ "type": {
18577
+ "const": "connector",
18578
+ "type": "string"
18579
+ }
18580
+ },
18581
+ "required": [
18582
+ "id",
18583
+ "shapeProperties",
18584
+ "type"
18585
+ ],
18586
+ "type": "object"
18587
+ },
18588
+ "UserShapeExtentOptions": {
18589
+ "additionalProperties": false,
18590
+ "description": "Anchor extent (a:ext): width/height in EMU.",
18591
+ "properties": {
18592
+ "height": { "type": "number" },
18593
+ "width": { "type": "number" }
18594
+ },
18595
+ "required": ["width", "height"],
18596
+ "type": "object"
18597
+ },
18598
+ "UserShapeGraphicFrameOptions": {
18599
+ "additionalProperties": false,
18600
+ "properties": {
18601
+ "graphic": {
18602
+ "description": "Verbatim a:graphic XML payload. The graphic contents (chart/table references) are package-wired; the part body carries them unchanged.",
18603
+ "type": "string"
18604
+ },
18605
+ "graphicFrameLocks": {
18606
+ "anyOf": [{ "$ref": "#/definitions/GraphicFrameLockingOptions" }, { "type": "null" }],
18607
+ "description": "Frame locking flags (cdr:cNvGraphicFramePr)"
18608
+ },
18609
+ "id": {
18610
+ "description": "cNvPr drawing id (schema-required)",
18611
+ "type": "number"
18612
+ },
18613
+ "macro": {
18614
+ "description": "Macro reference (`@macro`)",
18615
+ "type": "string"
18616
+ },
18617
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
18618
+ "published": {
18619
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
18620
+ "type": "boolean"
18621
+ },
18622
+ "transform": {
18623
+ "$ref": "#/definitions/Transform2DOptions",
18624
+ "description": "Placement transform (cdr:xfrm)"
18625
+ },
18626
+ "type": {
18627
+ "const": "graphicFrame",
18628
+ "type": "string"
18629
+ }
18630
+ },
18631
+ "required": [
18632
+ "graphic",
18633
+ "id",
18634
+ "transform",
18635
+ "type"
18636
+ ],
18637
+ "type": "object"
18638
+ },
18639
+ "UserShapeGroupOptions": {
18640
+ "additionalProperties": false,
18641
+ "properties": {
18642
+ "children": {
18643
+ "items": { "$ref": "#/definitions/UserShapeObjectOptions" },
18644
+ "type": "array"
18645
+ },
18646
+ "groupShapeProperties": { "$ref": "#/definitions/GroupShapePropertiesOptions" },
18647
+ "id": {
18648
+ "description": "cNvPr drawing id (schema-required)",
18649
+ "type": "number"
18650
+ },
18651
+ "macro": {
18652
+ "description": "Macro reference (`@macro`)",
18653
+ "type": "string"
18654
+ },
18655
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
18656
+ "published": {
18657
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
18658
+ "type": "boolean"
18659
+ },
18660
+ "type": {
18661
+ "const": "group",
18662
+ "type": "string"
18663
+ }
18664
+ },
18665
+ "required": [
18666
+ "children",
18667
+ "groupShapeProperties",
18668
+ "id",
18669
+ "type"
18670
+ ],
18671
+ "type": "object"
18672
+ },
18673
+ "UserShapeMarkerOptions": {
18674
+ "additionalProperties": false,
18675
+ "description": "Anchor marker: x/y as 0.0–1.0 fractions of the chart area.",
18676
+ "properties": {
18677
+ "x": { "type": "number" },
18678
+ "y": { "type": "number" }
18679
+ },
18680
+ "required": ["x", "y"],
18681
+ "type": "object"
18682
+ },
18683
+ "UserShapeObjectOptions": { "anyOf": [
18684
+ { "$ref": "#/definitions/UserShapeShapeOptions" },
18685
+ { "$ref": "#/definitions/UserShapeConnectorOptions" },
18686
+ { "$ref": "#/definitions/UserShapePictureOptions" },
18687
+ { "$ref": "#/definitions/UserShapeGraphicFrameOptions" },
18688
+ { "$ref": "#/definitions/UserShapeGroupOptions" }
18689
+ ] },
18690
+ "UserShapePictureOptions": {
18691
+ "additionalProperties": false,
18692
+ "properties": {
18693
+ "blipFill": { "$ref": "#/definitions/BlipFillOptions" },
18694
+ "id": {
18695
+ "description": "cNvPr drawing id (schema-required)",
18696
+ "type": "number"
18697
+ },
18698
+ "macro": {
18699
+ "description": "Macro reference (`@macro`)",
18700
+ "type": "string"
18701
+ },
18702
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
18703
+ "published": {
18704
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
18705
+ "type": "boolean"
18706
+ },
18707
+ "referenceId": {
18708
+ "description": "Image reference key (a:blip r:embed via the relationship placeholder)",
18709
+ "type": "string"
18710
+ },
18711
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
18712
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
18713
+ "type": {
18714
+ "const": "picture",
18715
+ "type": "string"
18716
+ }
18717
+ },
18718
+ "required": [
18719
+ "id",
18720
+ "referenceId",
18721
+ "shapeProperties",
18722
+ "type"
18723
+ ],
18724
+ "type": "object"
18725
+ },
18726
+ "UserShapeShapeOptions": {
18727
+ "additionalProperties": false,
18728
+ "properties": {
18729
+ "id": {
18730
+ "description": "cNvPr drawing id (schema-required)",
18731
+ "type": "number"
18732
+ },
18733
+ "locksText": {
18734
+ "description": "Text locking (`@fLocksText`, default true)",
18735
+ "type": "boolean"
18736
+ },
18737
+ "macro": {
18738
+ "description": "Macro reference (`@macro`)",
18739
+ "type": "string"
18740
+ },
18741
+ "nonVisualProperties": {
18742
+ "$ref": "#/definitions/NonVisualDrawingPropertiesOptions",
18743
+ "description": "cNvPr — id is required by the schema"
18744
+ },
18745
+ "published": {
18746
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
18747
+ "type": "boolean"
18748
+ },
18749
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
18750
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
18751
+ "textBody": { "$ref": "#/definitions/TextBodyOptions" },
18752
+ "textBox": {
18753
+ "description": "Text-box marker (cdr:cNvSpPr `@txBox`)",
18754
+ "type": "boolean"
18755
+ },
18756
+ "textLink": {
18757
+ "description": "Formula linking the text to a cell (`@textlink`)",
18758
+ "type": "string"
18759
+ },
18760
+ "type": {
18761
+ "const": "shape",
18762
+ "type": "string"
18763
+ }
18764
+ },
18765
+ "required": [
18766
+ "id",
18767
+ "shapeProperties",
18768
+ "type"
18769
+ ],
18770
+ "type": "object"
18771
+ },
18376
18772
  "VariableListOptions": {
18377
18773
  "additionalProperties": false,
18378
18774
  "description": "dgm:varLst.",
@@ -21780,6 +22176,21 @@ var pptx_schema_default = {
21780
22176
  $ref: "#/definitions/PresentationOptions",
21781
22177
  $schema: "http://json-schema.org/draft-07/schema#",
21782
22178
  definitions: {
22179
+ "AbsoluteSizeAnchorOptions": {
22180
+ "additionalProperties": false,
22181
+ "description": "Absolute anchor (cdr:absSizeAnchor): fixed EMU size at the `from` marker.",
22182
+ "properties": {
22183
+ "extent": { "$ref": "#/definitions/UserShapeExtentOptions" },
22184
+ "from": { "$ref": "#/definitions/UserShapeMarkerOptions" },
22185
+ "object": { "$ref": "#/definitions/UserShapeObjectOptions" }
22186
+ },
22187
+ "required": [
22188
+ "from",
22189
+ "extent",
22190
+ "object"
22191
+ ],
22192
+ "type": "object"
22193
+ },
21783
22194
  "AdjustHandle": {
21784
22195
  "anyOf": [{ "$ref": "#/definitions/XYAdjustHandle" }, { "$ref": "#/definitions/PolarAdjustHandle" }],
21785
22196
  "description": "An adjust handle (XY or Polar)."
@@ -23564,6 +23975,33 @@ var pptx_schema_default = {
23564
23975
  },
23565
23976
  "type": "object"
23566
23977
  },
23978
+ "BlipFillOptions": {
23979
+ "additionalProperties": false,
23980
+ "description": "Options for blip fill properties.",
23981
+ "properties": {
23982
+ "blipEffects": {
23983
+ "$ref": "#/definitions/BlipEffectsOptions",
23984
+ "description": "Image adjustment effects (brightness, contrast, grayscale, etc.)"
23985
+ },
23986
+ "dpi": {
23987
+ "description": "DPI of the image",
23988
+ "type": "number"
23989
+ },
23990
+ "rotWithShape": {
23991
+ "description": "Whether the fill rotates with the shape",
23992
+ "type": "boolean"
23993
+ },
23994
+ "sourceRectangle": {
23995
+ "$ref": "#/definitions/SourceRectangleOptions",
23996
+ "description": "Source rectangle for cropping"
23997
+ },
23998
+ "tile": {
23999
+ "$ref": "#/definitions/TileOptions",
24000
+ "description": "Tile fill mode (if omitted, defaults to stretch)"
24001
+ }
24002
+ },
24003
+ "type": "object"
24004
+ },
23567
24005
  "BlurEffectOptions": {
23568
24006
  "additionalProperties": false,
23569
24007
  "description": "Blur effect options.",
@@ -24404,8 +24842,8 @@ var pptx_schema_default = {
24404
24842
  "type": "boolean"
24405
24843
  },
24406
24844
  "userShapes": {
24407
- "description": "User-drawn shapes relationship id (c:userShapes r:id, after printSettings).",
24408
- "type": "string"
24845
+ "$ref": "#/definitions/ChartUserShapesOptions",
24846
+ "description": "User-drawn shapes layered over the chart (c:userShapes, after printSettings)."
24409
24847
  },
24410
24848
  "varyColors": {
24411
24849
  "description": "Vary data-point colors (chart-group-level c:varyColors). Emitted only when set — the corpus is mixed and fresh output stays bare.",
@@ -24615,6 +25053,23 @@ var pptx_schema_default = {
24615
25053
  ],
24616
25054
  "type": "string"
24617
25055
  },
25056
+ "ChartUserShapesOptions": {
25057
+ "additionalProperties": false,
25058
+ "description": "User-drawn shapes layered over a chart: the c:userShapes reference on the chart space plus the companion part body the format compilers register.",
25059
+ "properties": {
25060
+ "anchors": {
25061
+ "description": "Anchored shapes (the cdr:userShapes part body).",
25062
+ "items": { "anyOf": [{ "$ref": "#/definitions/RelativeSizeAnchorOptions" }, { "$ref": "#/definitions/AbsoluteSizeAnchorOptions" }] },
25063
+ "type": "array"
25064
+ },
25065
+ "relationshipId": {
25066
+ "description": "Chart-part relationship id of the shapes part. Round-trips verbatim; fresh authoring omits it and the reference defaults to rId1 — set an unused id when the same chart also carries externalData.",
25067
+ "type": "string"
25068
+ }
25069
+ },
25070
+ "required": ["anchors"],
25071
+ "type": "object"
25072
+ },
24618
25073
  "ChildOrder": {
24619
25074
  "description": "(dgm:layoutNode `@chOrder`).",
24620
25075
  "enum": ["b", "t"],
@@ -25440,9 +25895,30 @@ var pptx_schema_default = {
25440
25895
  },
25441
25896
  "DataLabelsOptions": {
25442
25897
  "additionalProperties": false,
25898
+ "allOf": [{
25899
+ "if": {
25900
+ "properties": { "delete": { "const": true } },
25901
+ "required": ["delete"]
25902
+ },
25903
+ "then": { "not": { "anyOf": [
25904
+ { "required": ["numberFormat"] },
25905
+ { "required": ["shapeProperties"] },
25906
+ { "required": ["textProperties"] },
25907
+ { "required": ["position"] },
25908
+ { "required": ["showLegendKey"] },
25909
+ { "required": ["showVal"] },
25910
+ { "required": ["showCatName"] },
25911
+ { "required": ["showSerName"] },
25912
+ { "required": ["showPercent"] },
25913
+ { "required": ["showBubbleSize"] },
25914
+ { "required": ["separator"] },
25915
+ { "required": ["showLeaderLines"] },
25916
+ { "required": ["leaderLines"] }
25917
+ ] } }
25918
+ }],
25443
25919
  "properties": {
25444
25920
  "delete": {
25445
- "description": "Labels deleted at the group level (c:delete inside c:dLbls) Office writes val=\"0\" explicitly to keep labels on; round-trips the attribute.",
25921
+ "description": "Drop every label for this series (c:delete). Choice vs the shared settings below: `true` ignores them all; `false` keeps labels on and emits its element only when no setting is set (round-trip).",
25446
25922
  "type": "boolean"
25447
25923
  },
25448
25924
  "labels": {
@@ -26606,6 +27082,40 @@ var pptx_schema_default = {
26606
27082
  "required": ["children"],
26607
27083
  "type": "object"
26608
27084
  },
27085
+ "GroupShapePropertiesOptions": {
27086
+ "additionalProperties": false,
27087
+ "description": "Group shape properties. Field order follows the XSD content model. The transform fields come from {@link GroupTransform2DOptions } (flat x/y/width/height/flip/rotation/childOffset/childExtent); the serializer emits them as a single a:xfrm group transform. The container-only `@bwMode` attribute and the wrapping tag are the caller's responsibility (mirrors shapePropertiesDesc).",
27088
+ "properties": {
27089
+ "childExtentHeight": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27090
+ "childExtentWidth": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27091
+ "childOffsetX": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27092
+ "childOffsetY": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27093
+ "effectDag": { "$ref": "#/definitions/EffectDagOptions" },
27094
+ "effects": {
27095
+ "$ref": "#/definitions/EffectListOptions",
27096
+ "description": "EG_EffectProperties (choice: a:effectDag | a:effectLst)."
27097
+ },
27098
+ "fill": {
27099
+ "$ref": "#/definitions/FillOptions",
27100
+ "description": "EG_FillProperties."
27101
+ },
27102
+ "flipHorizontal": { "type": "boolean" },
27103
+ "flipVertical": { "type": "boolean" },
27104
+ "height": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27105
+ "rotation": {
27106
+ "description": "Rotation angle in degrees (e.g., 45 = 45°).",
27107
+ "type": "number"
27108
+ },
27109
+ "scene3d": {
27110
+ "$ref": "#/definitions/Scene3DOptions",
27111
+ "description": "a:scene3d."
27112
+ },
27113
+ "width": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27114
+ "x": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
27115
+ "y": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] }
27116
+ },
27117
+ "type": "object"
27118
+ },
26609
27119
  "Guid": {
26610
27120
  "description": "GUID in braced upper-case form (ST_Guid).",
26611
27121
  "examples": ["{1DF903F5-8FC7-4C6A-9DF9-2AB1D10E6D84}"],
@@ -27763,6 +28273,28 @@ var pptx_schema_default = {
27763
28273
  },
27764
28274
  "type": "object"
27765
28275
  },
28276
+ "NonVisualDrawingPropertiesOptions": {
28277
+ "additionalProperties": false,
28278
+ "description": "Mirrors a: — name/descr/title/hidden. id is runtime; hyperlinks stay package-side.",
28279
+ "properties": {
28280
+ "creationId": {
28281
+ "$ref": "#/definitions/Guid",
28282
+ "description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
28283
+ },
28284
+ "description": { "$ref": "#/definitions/ShapeOptions/properties/description" },
28285
+ "ext": { "$ref": "#/definitions/PictureOptions/properties/ext" },
28286
+ "hidden": {
28287
+ "description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
28288
+ "type": "boolean"
28289
+ },
28290
+ "name": { "$ref": "#/definitions/ShapeOptions/properties/name" },
28291
+ "title": {
28292
+ "description": "XSD `@title`.",
28293
+ "type": "string"
28294
+ }
28295
+ },
28296
+ "type": "object"
28297
+ },
27766
28298
  "NormalAutofitOptions": {
27767
28299
  "additionalProperties": false,
27768
28300
  "description": "Normal autofit options.",
@@ -29648,6 +30180,21 @@ var pptx_schema_default = {
29648
30180
  },
29649
30181
  "type": "object"
29650
30182
  },
30183
+ "RelativeSizeAnchorOptions": {
30184
+ "additionalProperties": false,
30185
+ "description": "Relative anchor (cdr:relSizeAnchor): the object spans from `from` to `to`.",
30186
+ "properties": {
30187
+ "from": { "$ref": "#/definitions/UserShapeMarkerOptions" },
30188
+ "object": { "$ref": "#/definitions/UserShapeObjectOptions" },
30189
+ "to": { "$ref": "#/definitions/UserShapeMarkerOptions" }
30190
+ },
30191
+ "required": [
30192
+ "from",
30193
+ "to",
30194
+ "object"
30195
+ ],
30196
+ "type": "object"
30197
+ },
29651
30198
  "ResizeHandles": {
29652
30199
  "description": "(dgm:resizeHandles `@val`).",
29653
30200
  "enum": ["exact", "relative"],
@@ -32041,6 +32588,22 @@ var pptx_schema_default = {
32041
32588
  },
32042
32589
  "type": "object"
32043
32590
  },
32591
+ "Transform2DOptions": {
32592
+ "additionalProperties": false,
32593
+ "properties": {
32594
+ "flipHorizontal": { "type": "boolean" },
32595
+ "flipVertical": { "type": "boolean" },
32596
+ "height": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
32597
+ "rotation": {
32598
+ "description": "Rotation angle in degrees (e.g., 45 = 45°).",
32599
+ "type": "number"
32600
+ },
32601
+ "width": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
32602
+ "x": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
32603
+ "y": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] }
32604
+ },
32605
+ "type": "object"
32606
+ },
32044
32607
  "TransformEffectOptions": {
32045
32608
  "additionalProperties": false,
32046
32609
  "description": "Transform effect — scale, skew, translate.",
@@ -32242,6 +32805,220 @@ var pptx_schema_default = {
32242
32805
  "pattern": "^-?(\\d+(\\.\\d+)?|\\.\\d+)(mm|cm|in|pt|pc|pi|px)$",
32243
32806
  "type": "string"
32244
32807
  },
32808
+ "UserShapeConnectorOptions": {
32809
+ "additionalProperties": false,
32810
+ "properties": {
32811
+ "id": {
32812
+ "description": "cNvPr drawing id (schema-required)",
32813
+ "type": "number"
32814
+ },
32815
+ "macro": {
32816
+ "description": "Macro reference (`@macro`)",
32817
+ "type": "string"
32818
+ },
32819
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
32820
+ "published": {
32821
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
32822
+ "type": "boolean"
32823
+ },
32824
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
32825
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
32826
+ "type": {
32827
+ "const": "connector",
32828
+ "type": "string"
32829
+ }
32830
+ },
32831
+ "required": [
32832
+ "id",
32833
+ "shapeProperties",
32834
+ "type"
32835
+ ],
32836
+ "type": "object"
32837
+ },
32838
+ "UserShapeExtentOptions": {
32839
+ "additionalProperties": false,
32840
+ "description": "Anchor extent (a:ext): width/height in EMU.",
32841
+ "properties": {
32842
+ "height": { "type": "number" },
32843
+ "width": { "type": "number" }
32844
+ },
32845
+ "required": ["width", "height"],
32846
+ "type": "object"
32847
+ },
32848
+ "UserShapeGraphicFrameOptions": {
32849
+ "additionalProperties": false,
32850
+ "properties": {
32851
+ "graphic": {
32852
+ "description": "Verbatim a:graphic XML payload. The graphic contents (chart/table references) are package-wired; the part body carries them unchanged.",
32853
+ "type": "string"
32854
+ },
32855
+ "graphicFrameLocks": {
32856
+ "anyOf": [{ "$ref": "#/definitions/GraphicFrameLockingOptions" }, { "type": "null" }],
32857
+ "description": "Frame locking flags (cdr:cNvGraphicFramePr)"
32858
+ },
32859
+ "id": {
32860
+ "description": "cNvPr drawing id (schema-required)",
32861
+ "type": "number"
32862
+ },
32863
+ "macro": {
32864
+ "description": "Macro reference (`@macro`)",
32865
+ "type": "string"
32866
+ },
32867
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
32868
+ "published": {
32869
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
32870
+ "type": "boolean"
32871
+ },
32872
+ "transform": {
32873
+ "$ref": "#/definitions/Transform2DOptions",
32874
+ "description": "Placement transform (cdr:xfrm)"
32875
+ },
32876
+ "type": {
32877
+ "const": "graphicFrame",
32878
+ "type": "string"
32879
+ }
32880
+ },
32881
+ "required": [
32882
+ "graphic",
32883
+ "id",
32884
+ "transform",
32885
+ "type"
32886
+ ],
32887
+ "type": "object"
32888
+ },
32889
+ "UserShapeGroupOptions": {
32890
+ "additionalProperties": false,
32891
+ "properties": {
32892
+ "children": {
32893
+ "items": { "$ref": "#/definitions/UserShapeObjectOptions" },
32894
+ "type": "array"
32895
+ },
32896
+ "groupShapeProperties": { "$ref": "#/definitions/GroupShapePropertiesOptions" },
32897
+ "id": {
32898
+ "description": "cNvPr drawing id (schema-required)",
32899
+ "type": "number"
32900
+ },
32901
+ "macro": {
32902
+ "description": "Macro reference (`@macro`)",
32903
+ "type": "string"
32904
+ },
32905
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
32906
+ "published": {
32907
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
32908
+ "type": "boolean"
32909
+ },
32910
+ "type": {
32911
+ "const": "group",
32912
+ "type": "string"
32913
+ }
32914
+ },
32915
+ "required": [
32916
+ "children",
32917
+ "groupShapeProperties",
32918
+ "id",
32919
+ "type"
32920
+ ],
32921
+ "type": "object"
32922
+ },
32923
+ "UserShapeMarkerOptions": {
32924
+ "additionalProperties": false,
32925
+ "description": "Anchor marker: x/y as 0.0–1.0 fractions of the chart area.",
32926
+ "properties": {
32927
+ "x": { "type": "number" },
32928
+ "y": { "type": "number" }
32929
+ },
32930
+ "required": ["x", "y"],
32931
+ "type": "object"
32932
+ },
32933
+ "UserShapeObjectOptions": { "anyOf": [
32934
+ { "$ref": "#/definitions/UserShapeShapeOptions" },
32935
+ { "$ref": "#/definitions/UserShapeConnectorOptions" },
32936
+ { "$ref": "#/definitions/UserShapePictureOptions" },
32937
+ { "$ref": "#/definitions/UserShapeGraphicFrameOptions" },
32938
+ { "$ref": "#/definitions/UserShapeGroupOptions" }
32939
+ ] },
32940
+ "UserShapePictureOptions": {
32941
+ "additionalProperties": false,
32942
+ "properties": {
32943
+ "blipFill": { "$ref": "#/definitions/BlipFillOptions" },
32944
+ "id": {
32945
+ "description": "cNvPr drawing id (schema-required)",
32946
+ "type": "number"
32947
+ },
32948
+ "macro": {
32949
+ "description": "Macro reference (`@macro`)",
32950
+ "type": "string"
32951
+ },
32952
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
32953
+ "published": {
32954
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
32955
+ "type": "boolean"
32956
+ },
32957
+ "referenceId": {
32958
+ "description": "Image reference key (a:blip r:embed via the relationship placeholder)",
32959
+ "type": "string"
32960
+ },
32961
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
32962
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
32963
+ "type": {
32964
+ "const": "picture",
32965
+ "type": "string"
32966
+ }
32967
+ },
32968
+ "required": [
32969
+ "id",
32970
+ "referenceId",
32971
+ "shapeProperties",
32972
+ "type"
32973
+ ],
32974
+ "type": "object"
32975
+ },
32976
+ "UserShapeShapeOptions": {
32977
+ "additionalProperties": false,
32978
+ "properties": {
32979
+ "id": {
32980
+ "description": "cNvPr drawing id (schema-required)",
32981
+ "type": "number"
32982
+ },
32983
+ "locksText": {
32984
+ "description": "Text locking (`@fLocksText`, default true)",
32985
+ "type": "boolean"
32986
+ },
32987
+ "macro": {
32988
+ "description": "Macro reference (`@macro`)",
32989
+ "type": "string"
32990
+ },
32991
+ "nonVisualProperties": {
32992
+ "$ref": "#/definitions/NonVisualDrawingPropertiesOptions",
32993
+ "description": "cNvPr — id is required by the schema"
32994
+ },
32995
+ "published": {
32996
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
32997
+ "type": "boolean"
32998
+ },
32999
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
33000
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
33001
+ "textBody": { "$ref": "#/definitions/TextBodyOptions" },
33002
+ "textBox": {
33003
+ "description": "Text-box marker (cdr:cNvSpPr `@txBox`)",
33004
+ "type": "boolean"
33005
+ },
33006
+ "textLink": {
33007
+ "description": "Formula linking the text to a cell (`@textlink`)",
33008
+ "type": "string"
33009
+ },
33010
+ "type": {
33011
+ "const": "shape",
33012
+ "type": "string"
33013
+ }
33014
+ },
33015
+ "required": [
33016
+ "id",
33017
+ "shapeProperties",
33018
+ "type"
33019
+ ],
33020
+ "type": "object"
33021
+ },
32245
33022
  "VariableListOptions": {
32246
33023
  "additionalProperties": false,
32247
33024
  "description": "dgm:varLst.",
@@ -32620,6 +33397,21 @@ var xlsx_schema_default = {
32620
33397
  $ref: "#/definitions/WorkbookOptions",
32621
33398
  $schema: "http://json-schema.org/draft-07/schema#",
32622
33399
  definitions: {
33400
+ "AbsoluteSizeAnchorOptions": {
33401
+ "additionalProperties": false,
33402
+ "description": "Absolute anchor (cdr:absSizeAnchor): fixed EMU size at the `from` marker.",
33403
+ "properties": {
33404
+ "extent": { "$ref": "#/definitions/UserShapeExtentOptions" },
33405
+ "from": { "$ref": "#/definitions/UserShapeMarkerOptions" },
33406
+ "object": { "$ref": "#/definitions/UserShapeObjectOptions" }
33407
+ },
33408
+ "required": [
33409
+ "from",
33410
+ "extent",
33411
+ "object"
33412
+ ],
33413
+ "type": "object"
33414
+ },
32623
33415
  "AdjustHandle": {
32624
33416
  "anyOf": [{ "$ref": "#/definitions/XYAdjustHandle" }, { "$ref": "#/definitions/PolarAdjustHandle" }],
32625
33417
  "description": "An adjust handle (XY or Polar)."
@@ -33390,6 +34182,33 @@ var xlsx_schema_default = {
33390
34182
  },
33391
34183
  "type": "object"
33392
34184
  },
34185
+ "BlipFillOptions": {
34186
+ "additionalProperties": false,
34187
+ "description": "Options for blip fill properties.",
34188
+ "properties": {
34189
+ "blipEffects": {
34190
+ "$ref": "#/definitions/BlipEffectsOptions",
34191
+ "description": "Image adjustment effects (brightness, contrast, grayscale, etc.)"
34192
+ },
34193
+ "dpi": {
34194
+ "description": "DPI of the image",
34195
+ "type": "number"
34196
+ },
34197
+ "rotWithShape": {
34198
+ "description": "Whether the fill rotates with the shape",
34199
+ "type": "boolean"
34200
+ },
34201
+ "sourceRectangle": {
34202
+ "$ref": "#/definitions/SourceRectangleOptions",
34203
+ "description": "Source rectangle for cropping"
34204
+ },
34205
+ "tile": {
34206
+ "$ref": "#/definitions/TileOptions",
34207
+ "description": "Tile fill mode (if omitted, defaults to stretch)"
34208
+ }
34209
+ },
34210
+ "type": "object"
34211
+ },
33393
34212
  "BlurEffectOptions": {
33394
34213
  "additionalProperties": false,
33395
34214
  "description": "Blur effect options.",
@@ -34693,7 +35512,10 @@ var xlsx_schema_default = {
34693
35512
  "type": "boolean"
34694
35513
  },
34695
35514
  "upDownBarsGapWidth": { "$ref": "#/definitions/WorksheetChartOptions/properties/upDownBarsGapWidth" },
34696
- "userShapes": { "$ref": "#/definitions/WorksheetChartOptions/properties/userShapes" },
35515
+ "userShapes": {
35516
+ "$ref": "#/definitions/ChartUserShapesOptions",
35517
+ "description": "User-drawn shapes layered over the chart (c:userShapes, after printSettings)."
35518
+ },
34697
35519
  "varyColors": { "$ref": "#/definitions/WorksheetChartOptions/properties/varyColors" },
34698
35520
  "view3D": { "$ref": "#/definitions/View3DOptions" },
34699
35521
  "wireframe": {
@@ -34759,6 +35581,23 @@ var xlsx_schema_default = {
34759
35581
  ],
34760
35582
  "type": "string"
34761
35583
  },
35584
+ "ChartUserShapesOptions": {
35585
+ "additionalProperties": false,
35586
+ "description": "User-drawn shapes layered over a chart: the c:userShapes reference on the chart space plus the companion part body the format compilers register.",
35587
+ "properties": {
35588
+ "anchors": {
35589
+ "description": "Anchored shapes (the cdr:userShapes part body).",
35590
+ "items": { "anyOf": [{ "$ref": "#/definitions/RelativeSizeAnchorOptions" }, { "$ref": "#/definitions/AbsoluteSizeAnchorOptions" }] },
35591
+ "type": "array"
35592
+ },
35593
+ "relationshipId": {
35594
+ "description": "Chart-part relationship id of the shapes part. Round-trips verbatim; fresh authoring omits it and the reference defaults to rId1 — set an unused id when the same chart also carries externalData.",
35595
+ "type": "string"
35596
+ }
35597
+ },
35598
+ "required": ["anchors"],
35599
+ "type": "object"
35600
+ },
34762
35601
  "ChartsheetOptions": {
34763
35602
  "additionalProperties": false,
34764
35603
  "description": "A chart sheet (xl/chartsheets/sheetN.xml) — a full-sheet chart with its own view state.",
@@ -36354,9 +37193,30 @@ var xlsx_schema_default = {
36354
37193
  },
36355
37194
  "DataLabelsOptions": {
36356
37195
  "additionalProperties": false,
37196
+ "allOf": [{
37197
+ "if": {
37198
+ "properties": { "delete": { "const": true } },
37199
+ "required": ["delete"]
37200
+ },
37201
+ "then": { "not": { "anyOf": [
37202
+ { "required": ["numberFormat"] },
37203
+ { "required": ["shapeProperties"] },
37204
+ { "required": ["textProperties"] },
37205
+ { "required": ["position"] },
37206
+ { "required": ["showLegendKey"] },
37207
+ { "required": ["showVal"] },
37208
+ { "required": ["showCatName"] },
37209
+ { "required": ["showSerName"] },
37210
+ { "required": ["showPercent"] },
37211
+ { "required": ["showBubbleSize"] },
37212
+ { "required": ["separator"] },
37213
+ { "required": ["showLeaderLines"] },
37214
+ { "required": ["leaderLines"] }
37215
+ ] } }
37216
+ }],
36357
37217
  "properties": {
36358
37218
  "delete": {
36359
- "description": "Labels deleted at the group level (c:delete inside c:dLbls) Office writes val=\"0\" explicitly to keep labels on; round-trips the attribute.",
37219
+ "description": "Drop every label for this series (c:delete). Choice vs the shared settings below: `true` ignores them all; `false` keeps labels on and emits its element only when no setting is set (round-trip).",
36360
37220
  "type": "boolean"
36361
37221
  },
36362
37222
  "labels": {
@@ -38435,6 +39295,40 @@ var xlsx_schema_default = {
38435
39295
  "required": ["spPr"],
38436
39296
  "type": "object"
38437
39297
  },
39298
+ "GroupShapePropertiesOptions": {
39299
+ "additionalProperties": false,
39300
+ "description": "Group shape properties. Field order follows the XSD content model. The transform fields come from {@link GroupTransform2DOptions } (flat x/y/width/height/flip/rotation/childOffset/childExtent); the serializer emits them as a single a:xfrm group transform. The container-only `@bwMode` attribute and the wrapping tag are the caller's responsibility (mirrors shapePropertiesDesc).",
39301
+ "properties": {
39302
+ "childExtentHeight": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39303
+ "childExtentWidth": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39304
+ "childOffsetX": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39305
+ "childOffsetY": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39306
+ "effectDag": { "$ref": "#/definitions/EffectDagOptions" },
39307
+ "effects": {
39308
+ "$ref": "#/definitions/EffectListOptions",
39309
+ "description": "EG_EffectProperties (choice: a:effectDag | a:effectLst)."
39310
+ },
39311
+ "fill": {
39312
+ "$ref": "#/definitions/FillOptions",
39313
+ "description": "EG_FillProperties."
39314
+ },
39315
+ "flipHorizontal": { "type": "boolean" },
39316
+ "flipVertical": { "type": "boolean" },
39317
+ "height": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39318
+ "rotation": {
39319
+ "description": "Rotation angle in degrees (e.g., 45 = 45°).",
39320
+ "type": "number"
39321
+ },
39322
+ "scene3d": {
39323
+ "$ref": "#/definitions/Scene3DOptions",
39324
+ "description": "a:scene3d."
39325
+ },
39326
+ "width": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39327
+ "x": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
39328
+ "y": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] }
39329
+ },
39330
+ "type": "object"
39331
+ },
38438
39332
  "GroupTransform2DOptions": {
38439
39333
  "additionalProperties": false,
38440
39334
  "properties": {
@@ -39311,7 +40205,7 @@ var xlsx_schema_default = {
39311
40205
  "description": "Options for xl/metadata.xml.",
39312
40206
  "properties": {
39313
40207
  "cellMetadata": {
39314
- "description": "Cell metadata blocks (cellMetadata)",
40208
+ "description": "Cell metadata blocks (cellMetadata). Round-trip only — Excel 365 refuses files carrying these fresh, with or without cell references.",
39315
40209
  "items": { "$ref": "#/definitions/MetadataBlockOptions" },
39316
40210
  "type": "array"
39317
40211
  },
@@ -39336,7 +40230,7 @@ var xlsx_schema_default = {
39336
40230
  "type": "array"
39337
40231
  },
39338
40232
  "valueMetadata": {
39339
- "description": "Value metadata blocks (valueMetadata)",
40233
+ "description": "Value metadata blocks (valueMetadata). Round-trip only — Excel 365 refuses files carrying these fresh, with or without cell references.",
39340
40234
  "items": { "$ref": "#/definitions/MetadataBlockOptions" },
39341
40235
  "type": "array"
39342
40236
  }
@@ -39454,6 +40348,28 @@ var xlsx_schema_default = {
39454
40348
  "required": ["name", "minSupportedVersion"],
39455
40349
  "type": "object"
39456
40350
  },
40351
+ "NonVisualDrawingPropertiesOptions": {
40352
+ "additionalProperties": false,
40353
+ "description": "Mirrors a: — name/descr/title/hidden. id is runtime; hyperlinks stay package-side.",
40354
+ "properties": {
40355
+ "creationId": {
40356
+ "$ref": "#/definitions/Guid",
40357
+ "description": "a16:creationId `@id` from the cNvPr/docPr extension list — Office's per-object creation stamp, the sole known cNvPr ext content."
40358
+ },
40359
+ "description": { "$ref": "#/definitions/PictureOptions/properties/description" },
40360
+ "ext": { "$ref": "#/definitions/PictureOptions/properties/ext" },
40361
+ "hidden": {
40362
+ "description": "XSD `@hidden` (default false); emitted as \"1\" only when true.",
40363
+ "type": "boolean"
40364
+ },
40365
+ "name": { "$ref": "#/definitions/PictureOptions/properties/name" },
40366
+ "title": {
40367
+ "description": "XSD `@title`.",
40368
+ "type": "string"
40369
+ }
40370
+ },
40371
+ "type": "object"
40372
+ },
39457
40373
  "NormalAutofitOptions": {
39458
40374
  "additionalProperties": false,
39459
40375
  "description": "Normal autofit options.",
@@ -42395,6 +43311,21 @@ var xlsx_schema_default = {
42395
43311
  },
42396
43312
  "type": "object"
42397
43313
  },
43314
+ "RelativeSizeAnchorOptions": {
43315
+ "additionalProperties": false,
43316
+ "description": "Relative anchor (cdr:relSizeAnchor): the object spans from `from` to `to`.",
43317
+ "properties": {
43318
+ "from": { "$ref": "#/definitions/UserShapeMarkerOptions" },
43319
+ "object": { "$ref": "#/definitions/UserShapeObjectOptions" },
43320
+ "to": { "$ref": "#/definitions/UserShapeMarkerOptions" }
43321
+ },
43322
+ "required": [
43323
+ "from",
43324
+ "to",
43325
+ "object"
43326
+ ],
43327
+ "type": "object"
43328
+ },
42398
43329
  "RevisionAction": {
42399
43330
  "description": "Revision action for comments / custom views.",
42400
43331
  "enum": ["add", "delete"],
@@ -45064,7 +45995,7 @@ var xlsx_schema_default = {
45064
45995
  "description": "Auto-filter (ref shorthand or structured filter columns/sort state)"
45065
45996
  },
45066
45997
  "columns": {
45067
- "description": "Column definitions",
45998
+ "description": "Column definitions. Excel requires one per column spanned by `ref`; missing ones auto-fill with default ColumnN names, extras are dropped.",
45068
45999
  "items": { "$ref": "#/definitions/TableColumnOptions" },
45069
46000
  "type": "array"
45070
46001
  },
@@ -45959,6 +46890,22 @@ var xlsx_schema_default = {
45959
46890
  ],
45960
46891
  "type": "string"
45961
46892
  },
46893
+ "Transform2DOptions": {
46894
+ "additionalProperties": false,
46895
+ "properties": {
46896
+ "flipHorizontal": { "type": "boolean" },
46897
+ "flipVertical": { "type": "boolean" },
46898
+ "height": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
46899
+ "rotation": {
46900
+ "description": "Rotation angle in degrees (e.g., 45 = 45°).",
46901
+ "type": "number"
46902
+ },
46903
+ "width": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
46904
+ "x": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] },
46905
+ "y": { "anyOf": [{ "type": "number" }, { "$ref": "#/definitions/UniversalMeasure" }] }
46906
+ },
46907
+ "type": "object"
46908
+ },
45962
46909
  "TransformEffectOptions": {
45963
46910
  "additionalProperties": false,
45964
46911
  "description": "Transform effect — scale, skew, translate.",
@@ -46055,6 +47002,220 @@ var xlsx_schema_default = {
46055
47002
  "pattern": "^[0-9A-Fa-f]{4}$",
46056
47003
  "type": "string"
46057
47004
  },
47005
+ "UserShapeConnectorOptions": {
47006
+ "additionalProperties": false,
47007
+ "properties": {
47008
+ "id": {
47009
+ "description": "cNvPr drawing id (schema-required)",
47010
+ "type": "number"
47011
+ },
47012
+ "macro": {
47013
+ "description": "Macro reference (`@macro`)",
47014
+ "type": "string"
47015
+ },
47016
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
47017
+ "published": {
47018
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
47019
+ "type": "boolean"
47020
+ },
47021
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
47022
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
47023
+ "type": {
47024
+ "const": "connector",
47025
+ "type": "string"
47026
+ }
47027
+ },
47028
+ "required": [
47029
+ "id",
47030
+ "shapeProperties",
47031
+ "type"
47032
+ ],
47033
+ "type": "object"
47034
+ },
47035
+ "UserShapeExtentOptions": {
47036
+ "additionalProperties": false,
47037
+ "description": "Anchor extent (a:ext): width/height in EMU.",
47038
+ "properties": {
47039
+ "height": { "type": "number" },
47040
+ "width": { "type": "number" }
47041
+ },
47042
+ "required": ["width", "height"],
47043
+ "type": "object"
47044
+ },
47045
+ "UserShapeGraphicFrameOptions": {
47046
+ "additionalProperties": false,
47047
+ "properties": {
47048
+ "graphic": {
47049
+ "description": "Verbatim a:graphic XML payload. The graphic contents (chart/table references) are package-wired; the part body carries them unchanged.",
47050
+ "type": "string"
47051
+ },
47052
+ "graphicFrameLocks": {
47053
+ "anyOf": [{ "$ref": "#/definitions/GraphicFrameLockingOptions" }, { "type": "null" }],
47054
+ "description": "Frame locking flags (cdr:cNvGraphicFramePr)"
47055
+ },
47056
+ "id": {
47057
+ "description": "cNvPr drawing id (schema-required)",
47058
+ "type": "number"
47059
+ },
47060
+ "macro": {
47061
+ "description": "Macro reference (`@macro`)",
47062
+ "type": "string"
47063
+ },
47064
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
47065
+ "published": {
47066
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
47067
+ "type": "boolean"
47068
+ },
47069
+ "transform": {
47070
+ "$ref": "#/definitions/Transform2DOptions",
47071
+ "description": "Placement transform (cdr:xfrm)"
47072
+ },
47073
+ "type": {
47074
+ "const": "graphicFrame",
47075
+ "type": "string"
47076
+ }
47077
+ },
47078
+ "required": [
47079
+ "graphic",
47080
+ "id",
47081
+ "transform",
47082
+ "type"
47083
+ ],
47084
+ "type": "object"
47085
+ },
47086
+ "UserShapeGroupOptions": {
47087
+ "additionalProperties": false,
47088
+ "properties": {
47089
+ "children": {
47090
+ "items": { "$ref": "#/definitions/UserShapeObjectOptions" },
47091
+ "type": "array"
47092
+ },
47093
+ "groupShapeProperties": { "$ref": "#/definitions/GroupShapePropertiesOptions" },
47094
+ "id": {
47095
+ "description": "cNvPr drawing id (schema-required)",
47096
+ "type": "number"
47097
+ },
47098
+ "macro": {
47099
+ "description": "Macro reference (`@macro`)",
47100
+ "type": "string"
47101
+ },
47102
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
47103
+ "published": {
47104
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
47105
+ "type": "boolean"
47106
+ },
47107
+ "type": {
47108
+ "const": "group",
47109
+ "type": "string"
47110
+ }
47111
+ },
47112
+ "required": [
47113
+ "children",
47114
+ "groupShapeProperties",
47115
+ "id",
47116
+ "type"
47117
+ ],
47118
+ "type": "object"
47119
+ },
47120
+ "UserShapeMarkerOptions": {
47121
+ "additionalProperties": false,
47122
+ "description": "Anchor marker: x/y as 0.0–1.0 fractions of the chart area.",
47123
+ "properties": {
47124
+ "x": { "type": "number" },
47125
+ "y": { "type": "number" }
47126
+ },
47127
+ "required": ["x", "y"],
47128
+ "type": "object"
47129
+ },
47130
+ "UserShapeObjectOptions": { "anyOf": [
47131
+ { "$ref": "#/definitions/UserShapeShapeOptions" },
47132
+ { "$ref": "#/definitions/UserShapeConnectorOptions" },
47133
+ { "$ref": "#/definitions/UserShapePictureOptions" },
47134
+ { "$ref": "#/definitions/UserShapeGraphicFrameOptions" },
47135
+ { "$ref": "#/definitions/UserShapeGroupOptions" }
47136
+ ] },
47137
+ "UserShapePictureOptions": {
47138
+ "additionalProperties": false,
47139
+ "properties": {
47140
+ "blipFill": { "$ref": "#/definitions/BlipFillOptions" },
47141
+ "id": {
47142
+ "description": "cNvPr drawing id (schema-required)",
47143
+ "type": "number"
47144
+ },
47145
+ "macro": {
47146
+ "description": "Macro reference (`@macro`)",
47147
+ "type": "string"
47148
+ },
47149
+ "nonVisualProperties": { "$ref": "#/definitions/NonVisualDrawingPropertiesOptions" },
47150
+ "published": {
47151
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
47152
+ "type": "boolean"
47153
+ },
47154
+ "referenceId": {
47155
+ "description": "Image reference key (a:blip r:embed via the relationship placeholder)",
47156
+ "type": "string"
47157
+ },
47158
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
47159
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
47160
+ "type": {
47161
+ "const": "picture",
47162
+ "type": "string"
47163
+ }
47164
+ },
47165
+ "required": [
47166
+ "id",
47167
+ "referenceId",
47168
+ "shapeProperties",
47169
+ "type"
47170
+ ],
47171
+ "type": "object"
47172
+ },
47173
+ "UserShapeShapeOptions": {
47174
+ "additionalProperties": false,
47175
+ "properties": {
47176
+ "id": {
47177
+ "description": "cNvPr drawing id (schema-required)",
47178
+ "type": "number"
47179
+ },
47180
+ "locksText": {
47181
+ "description": "Text locking (`@fLocksText`, default true)",
47182
+ "type": "boolean"
47183
+ },
47184
+ "macro": {
47185
+ "description": "Macro reference (`@macro`)",
47186
+ "type": "string"
47187
+ },
47188
+ "nonVisualProperties": {
47189
+ "$ref": "#/definitions/NonVisualDrawingPropertiesOptions",
47190
+ "description": "cNvPr — id is required by the schema"
47191
+ },
47192
+ "published": {
47193
+ "description": "Published as a server-side shape (`@fPublished`, default false)",
47194
+ "type": "boolean"
47195
+ },
47196
+ "shapeProperties": { "$ref": "#/definitions/ShapePropertiesOptions" },
47197
+ "style": { "$ref": "#/definitions/DefaultShapeStyleOptions" },
47198
+ "textBody": { "$ref": "#/definitions/TextBodyOptions" },
47199
+ "textBox": {
47200
+ "description": "Text-box marker (cdr:cNvSpPr `@txBox`)",
47201
+ "type": "boolean"
47202
+ },
47203
+ "textLink": {
47204
+ "description": "Formula linking the text to a cell (`@textlink`)",
47205
+ "type": "string"
47206
+ },
47207
+ "type": {
47208
+ "const": "shape",
47209
+ "type": "string"
47210
+ }
47211
+ },
47212
+ "required": [
47213
+ "id",
47214
+ "shapeProperties",
47215
+ "type"
47216
+ ],
47217
+ "type": "object"
47218
+ },
46058
47219
  "UsersOptions": {
46059
47220
  "additionalProperties": false,
46060
47221
  "description": "Options for xl/users.xml.",
@@ -46512,6 +47673,7 @@ var xlsx_schema_default = {
46512
47673
  "type": "array"
46513
47674
  },
46514
47675
  "customWorkbookViews": {
47676
+ "description": "Workbook-level custom view snapshots. Excel requires one entry per sheet-level customSheetViews guid (matched by guid).",
46515
47677
  "items": { "$ref": "#/definitions/CustomWorkbookViewOptions" },
46516
47678
  "type": "array"
46517
47679
  },
@@ -47308,8 +48470,8 @@ var xlsx_schema_default = {
47308
48470
  "type": "number"
47309
48471
  },
47310
48472
  "userShapes": {
47311
- "description": "User-drawn shapes relationship id (c:userShapes r:id, after printSettings).",
47312
- "type": "string"
48473
+ "$ref": "#/definitions/ChartUserShapesOptions",
48474
+ "description": "User-drawn shapes layered over the chart (c:userShapes, after printSettings)."
47313
48475
  },
47314
48476
  "varyColors": {
47315
48477
  "description": "Vary data-point colors (chart-group-level c:varyColors). Emitted only when set — the corpus is mixed and fresh output stays bare.",
@@ -47387,7 +48549,7 @@ var xlsx_schema_default = {
47387
48549
  "type": "array"
47388
48550
  },
47389
48551
  "customSheetViews": {
47390
- "description": "Custom sheet views",
48552
+ "description": "Custom sheet views. Each guid needs a same-guid workbook-level customWorkbookViews entry — Excel refuses orphans.",
47391
48553
  "items": { "$ref": "#/definitions/CustomSheetViewOptions" },
47392
48554
  "type": "array"
47393
48555
  },
@@ -48946,4 +50108,4 @@ function renderSliceTypeText(format, requested, slice) {
48946
50108
  //#endregion
48947
50109
  export { xlsxSchema as _, sliceDocumentSchema as a, pointerHost as c, SCHEMA_ROOTS as d, entryNames as f, validateDocumentInput as g, pptxSchema as h, assertKnownDefinitions as i, resolvePointer as l, docxSchema as m, getSkeletonSchema as n, sliceSchema as o, SCHEMAS as p, UnknownDefinitionError as r, isPropertyPointer as s, renderSliceTypeText as t, SCHEMA_ENTRIES as u };
48948
50110
 
48949
- //# sourceMappingURL=schemas-DhCWsZ8v.mjs.map
50111
+ //# sourceMappingURL=schemas-B400scMm.mjs.map