@atlaskit/adf-schema 19.2.4 → 20.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -0
- package/dist/cjs/index.js +24 -6
- package/dist/cjs/schema/create-schema.js +10 -3
- package/dist/cjs/schema/default-schema.js +7 -13
- package/dist/cjs/schema/index.js +12 -6
- package/dist/cjs/schema/jira-schema.js +1 -1
- package/dist/cjs/schema/marks/fragment.js +77 -0
- package/dist/cjs/schema/marks/index.js +15 -1
- package/dist/cjs/schema/marks/unsupported-mark.js +1 -0
- package/dist/cjs/schema/nodes/bodied-extension.js +1 -1
- package/dist/cjs/schema/nodes/caption.js +0 -1
- package/dist/cjs/schema/nodes/doc.js +1 -1
- package/dist/cjs/schema/nodes/emoji.js +4 -0
- package/dist/cjs/schema/nodes/expand.js +1 -1
- package/dist/cjs/schema/nodes/index.js +0 -6
- package/dist/cjs/schema/nodes/layout-column.js +1 -1
- package/dist/cjs/schema/nodes/media-single.js +1 -1
- package/dist/cjs/schema/nodes/panel.js +58 -53
- package/dist/cjs/schema/nodes/paragraph.js +2 -2
- package/dist/cjs/schema/nodes/tableNodes.js +3 -3
- package/dist/cjs/utils/index.js +12 -0
- package/dist/cjs/utils/url.js +62 -4
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/index.js +2 -2
- package/dist/es2019/schema/create-schema.js +10 -5
- package/dist/es2019/schema/default-schema.js +6 -10
- package/dist/es2019/schema/index.js +2 -2
- package/dist/es2019/schema/jira-schema.js +1 -1
- package/dist/es2019/schema/marks/fragment.js +59 -0
- package/dist/es2019/schema/marks/index.js +2 -1
- package/dist/es2019/schema/marks/unsupported-mark.js +1 -0
- package/dist/es2019/schema/nodes/bodied-extension.js +1 -1
- package/dist/es2019/schema/nodes/caption.js +0 -1
- package/dist/es2019/schema/nodes/doc.js +1 -1
- package/dist/es2019/schema/nodes/emoji.js +4 -0
- package/dist/es2019/schema/nodes/expand.js +1 -1
- package/dist/es2019/schema/nodes/index.js +1 -1
- package/dist/es2019/schema/nodes/layout-column.js +1 -1
- package/dist/es2019/schema/nodes/media-single.js +1 -1
- package/dist/es2019/schema/nodes/panel.js +42 -49
- package/dist/es2019/schema/nodes/paragraph.js +2 -2
- package/dist/es2019/schema/nodes/tableNodes.js +3 -3
- package/dist/es2019/utils/index.js +1 -1
- package/dist/es2019/utils/url.js +57 -4
- package/dist/es2019/version.json +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/schema/create-schema.js +10 -5
- package/dist/esm/schema/default-schema.js +6 -10
- package/dist/esm/schema/index.js +2 -2
- package/dist/esm/schema/jira-schema.js +1 -1
- package/dist/esm/schema/marks/fragment.js +64 -0
- package/dist/esm/schema/marks/index.js +2 -1
- package/dist/esm/schema/marks/unsupported-mark.js +1 -0
- package/dist/esm/schema/nodes/bodied-extension.js +1 -1
- package/dist/esm/schema/nodes/caption.js +0 -1
- package/dist/esm/schema/nodes/doc.js +1 -1
- package/dist/esm/schema/nodes/emoji.js +4 -0
- package/dist/esm/schema/nodes/expand.js +1 -1
- package/dist/esm/schema/nodes/index.js +1 -1
- package/dist/esm/schema/nodes/layout-column.js +1 -1
- package/dist/esm/schema/nodes/media-single.js +1 -1
- package/dist/esm/schema/nodes/panel.js +53 -51
- package/dist/esm/schema/nodes/paragraph.js +2 -2
- package/dist/esm/schema/nodes/tableNodes.js +3 -3
- package/dist/esm/utils/index.js +1 -1
- package/dist/esm/utils/url.js +57 -4
- package/dist/esm/version.json +1 -1
- package/dist/json-schema/v1/full.json +108 -73
- package/dist/json-schema/v1/stage-0.json +63 -26
- package/dist/types/index.d.ts +3 -3
- package/dist/types/schema/create-schema.d.ts +1 -0
- package/dist/types/schema/index.d.ts +3 -3
- package/dist/types/schema/marks/fragment.d.ts +30 -0
- package/dist/types/schema/marks/index.d.ts +2 -0
- package/dist/types/schema/marks/link.d.ts +3 -0
- package/dist/types/schema/nodes/block-card.d.ts +3 -0
- package/dist/types/schema/nodes/bodied-extension.d.ts +7 -5
- package/dist/types/schema/nodes/caption.d.ts +0 -1
- package/dist/types/schema/nodes/embed-card.d.ts +3 -0
- package/dist/types/schema/nodes/extension.d.ts +7 -5
- package/dist/types/schema/nodes/index.d.ts +1 -1
- package/dist/types/schema/nodes/inline-card.d.ts +0 -9
- package/dist/types/schema/nodes/inline-extension.d.ts +7 -5
- package/dist/types/schema/nodes/media-single.d.ts +0 -1
- package/dist/types/schema/nodes/panel.d.ts +1 -11
- package/dist/types/utils/index.d.ts +1 -1
- package/dist/types/utils/url.d.ts +7 -2
- package/json-schema/v1/full.json +108 -73
- package/json-schema/v1/stage-0.json +63 -26
- package/package.json +11 -8
- package/test-helpers/schema.ts +1 -0
@@ -1,8 +1,9 @@
|
|
1
1
|
import { NodeSpec } from 'prosemirror-model';
|
2
2
|
import { ExtensionAttributes } from './types/extensions';
|
3
|
-
import { MarksObject
|
3
|
+
import { MarksObject } from './types/mark';
|
4
4
|
import { NonNestableBlockContent } from './types/non-nestable-block-content';
|
5
5
|
import { DataConsumerDefinition } from '../marks/data-consumer';
|
6
|
+
import { FragmentDefinition } from '../marks/fragment';
|
6
7
|
/**
|
7
8
|
* @name bodiedExtension_node
|
8
9
|
*/
|
@@ -17,11 +18,12 @@ export interface BodiedExtensionBaseDefinition {
|
|
17
18
|
content: Array<NonNestableBlockContent>;
|
18
19
|
}
|
19
20
|
/**
|
20
|
-
* @name
|
21
|
+
* @name bodiedExtension_with_marks_node
|
21
22
|
*/
|
22
|
-
export declare type BodiedExtensionDefinition = BodiedExtensionBaseDefinition &
|
23
|
+
export declare type BodiedExtensionDefinition = BodiedExtensionBaseDefinition & MarksObject<DataConsumerDefinition>;
|
23
24
|
/**
|
24
|
-
* @
|
25
|
+
* @stage 0
|
26
|
+
* @name bodiedExtension_with_experimental_marks_node
|
25
27
|
*/
|
26
|
-
export declare type BodiedExtensionWithMarksDefinition = BodiedExtensionBaseDefinition & MarksObject<
|
28
|
+
export declare type BodiedExtensionWithMarksDefinition = BodiedExtensionBaseDefinition & MarksObject<FragmentDefinition>;
|
27
29
|
export declare const bodiedExtension: NodeSpec;
|
@@ -8,7 +8,6 @@ import { PlaceholderDefinition as Placeholder } from './placeholder';
|
|
8
8
|
import { InlineCardDefinition as InlineCard } from './inline-card';
|
9
9
|
import { StatusDefinition as Status } from './status';
|
10
10
|
/**
|
11
|
-
* @stage 0
|
12
11
|
* @name caption_node
|
13
12
|
*/
|
14
13
|
export interface CaptionDefinition {
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { NodeSpec } from 'prosemirror-model';
|
2
2
|
import { ExtensionAttributes } from './types/extensions';
|
3
|
-
import { MarksObject
|
3
|
+
import { MarksObject } from './types/mark';
|
4
4
|
import { DataConsumerDefinition } from '../marks/data-consumer';
|
5
|
+
import { FragmentDefinition } from '../marks/fragment';
|
5
6
|
/**
|
6
7
|
* @name extension_node
|
7
8
|
*/
|
@@ -11,11 +12,12 @@ export interface ExtensionBaseDefinition {
|
|
11
12
|
marks?: Array<any>;
|
12
13
|
}
|
13
14
|
/**
|
14
|
-
* @name
|
15
|
+
* @name extension_with_marks_node
|
15
16
|
*/
|
16
|
-
export declare type ExtensionDefinition = ExtensionBaseDefinition &
|
17
|
+
export declare type ExtensionDefinition = ExtensionBaseDefinition & MarksObject<DataConsumerDefinition>;
|
17
18
|
/**
|
18
|
-
* @
|
19
|
+
* @stage 0
|
20
|
+
* @name extension_with_experimental_marks_node
|
19
21
|
*/
|
20
|
-
export declare type ExtensionWithMarksDefinition = ExtensionBaseDefinition & MarksObject<
|
22
|
+
export declare type ExtensionWithMarksDefinition = ExtensionBaseDefinition & MarksObject<FragmentDefinition>;
|
21
23
|
export declare const extension: NodeSpec;
|
@@ -28,7 +28,7 @@ export { mention, toJSON as mentionToJSON } from './mention';
|
|
28
28
|
export type { MentionAttributes, UserType as MentionUserType, MentionDefinition, } from './mention';
|
29
29
|
export { listItem } from './list-item';
|
30
30
|
export type { ListItemArray, ListItemDefinition } from './list-item';
|
31
|
-
export { panel,
|
31
|
+
export { panel, PanelType } from './panel';
|
32
32
|
export type { PanelAttributes, PanelDefinition } from './panel';
|
33
33
|
export { text } from './text';
|
34
34
|
export type { TextDefinition } from './text';
|
@@ -1,14 +1,5 @@
|
|
1
1
|
import { NodeSpec } from 'prosemirror-model';
|
2
2
|
import { CardAttributes } from './block-card';
|
3
|
-
export interface UrlType {
|
4
|
-
url: string;
|
5
|
-
}
|
6
|
-
export interface DataType {
|
7
|
-
/**
|
8
|
-
* @additionalProperties true
|
9
|
-
*/
|
10
|
-
data: object;
|
11
|
-
}
|
12
3
|
/**
|
13
4
|
* @name inlineCard_node
|
14
5
|
*/
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { NodeSpec } from 'prosemirror-model';
|
2
2
|
import { InlineExtensionAttributes } from './types/extensions';
|
3
|
-
import { MarksObject
|
3
|
+
import { MarksObject } from './types/mark';
|
4
4
|
import { DataConsumerDefinition } from '../marks/data-consumer';
|
5
|
+
import { FragmentDefinition } from '../marks/fragment';
|
5
6
|
/**
|
6
7
|
* @name inlineExtension_node
|
7
8
|
*/
|
@@ -11,11 +12,12 @@ export interface InlineExtensionBaseDefinition {
|
|
11
12
|
marks?: Array<any>;
|
12
13
|
}
|
13
14
|
/**
|
14
|
-
* @name
|
15
|
+
* @name inlineExtension_with_marks_node
|
15
16
|
*/
|
16
|
-
export declare type InlineExtensionDefinition = InlineExtensionBaseDefinition &
|
17
|
+
export declare type InlineExtensionDefinition = InlineExtensionBaseDefinition & MarksObject<DataConsumerDefinition>;
|
17
18
|
/**
|
18
|
-
* @
|
19
|
+
* @stage 0
|
20
|
+
* @name inlineExtension_with_experimental_marks_node
|
19
21
|
*/
|
20
|
-
export declare type InlineExtensionWithMarksDefinition = InlineExtensionBaseDefinition & MarksObject<
|
22
|
+
export declare type InlineExtensionWithMarksDefinition = InlineExtensionBaseDefinition & MarksObject<FragmentDefinition>;
|
21
23
|
export declare const inlineExtension: NodeSpec;
|
@@ -11,20 +11,11 @@ export declare enum PanelType {
|
|
11
11
|
WARNING = "warning",
|
12
12
|
ERROR = "error",
|
13
13
|
SUCCESS = "success",
|
14
|
-
/**
|
15
|
-
* @stage 0
|
16
|
-
*/
|
17
14
|
CUSTOM = "custom"
|
18
15
|
}
|
19
16
|
export interface PanelAttributes {
|
20
17
|
panelType: PanelType;
|
21
|
-
/**
|
22
|
-
* @stage 0
|
23
|
-
*/
|
24
18
|
panelIcon?: string;
|
25
|
-
/**
|
26
|
-
* @stage 0
|
27
|
-
*/
|
28
19
|
panelColor?: string;
|
29
20
|
}
|
30
21
|
/**
|
@@ -42,5 +33,4 @@ export interface PanelDefinition {
|
|
42
33
|
export interface DOMAttributes {
|
43
34
|
[propName: string]: string;
|
44
35
|
}
|
45
|
-
export declare const
|
46
|
-
export declare const panel: NodeSpec;
|
36
|
+
export declare const panel: (allowCustomPanel: boolean) => NodeSpec;
|
@@ -2,5 +2,5 @@ export { acNameToEmoji, acShortcutToEmoji, emojiIdToAcName, getEmojiAcName, } fr
|
|
2
2
|
export type { NameToEmoji } from './confluence/emoji';
|
3
3
|
export { generateUuid, uuid } from './uuid';
|
4
4
|
export { B100, B400, B50, B500, B75, G200, G300, G400, G50, G500, G75, N0, N20, N200, N30, N300, N40, N50, N500, N60, N80, N800, N90, P100, P300, P400, P50, P500, P75, R100, R300, R400, R50, R500, R75, T100, T300, T50, T500, T75, Y200, Y400, Y50, Y500, Y75, hexToRgb, hexToRgba, isHex, isRgb, normalizeHexColor, rgbToHex, } from './colors';
|
5
|
-
export { getLinkMatch, isSafeUrl, normalizeUrl } from './url';
|
5
|
+
export { getLinkMatch, isSafeUrl, normalizeUrl, linkify, linkifyMatch, } from './url';
|
6
6
|
export type { Match } from './url';
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import LinkifyIt from 'linkify-it';
|
1
2
|
export declare const isSafeUrl: (url: string) => boolean;
|
2
3
|
export interface Match {
|
3
4
|
schema: any;
|
@@ -7,9 +8,13 @@ export interface Match {
|
|
7
8
|
text: string;
|
8
9
|
url: string;
|
9
10
|
length?: number;
|
11
|
+
input?: string;
|
10
12
|
}
|
11
|
-
export declare
|
13
|
+
export declare const linkify: LinkifyIt.LinkifyIt;
|
14
|
+
export declare const LINK_REGEXP: RegExp;
|
15
|
+
export declare const linkifyMatch: (text: string) => Match[];
|
16
|
+
export declare function getLinkMatch(str?: string): Match | null;
|
12
17
|
/**
|
13
18
|
* Adds protocol to url if needed.
|
14
19
|
*/
|
15
|
-
export declare function normalizeUrl(url
|
20
|
+
export declare function normalizeUrl(url?: string): string;
|
package/json-schema/v1/full.json
CHANGED
@@ -569,23 +569,6 @@
|
|
569
569
|
],
|
570
570
|
"additionalProperties": false
|
571
571
|
},
|
572
|
-
"inlineExtension_with_no_marks_node": {
|
573
|
-
"allOf": [
|
574
|
-
{
|
575
|
-
"$ref": "#/definitions/inlineExtension_node"
|
576
|
-
},
|
577
|
-
{
|
578
|
-
"type": "object",
|
579
|
-
"properties": {
|
580
|
-
"marks": {
|
581
|
-
"type": "array",
|
582
|
-
"maxItems": 0
|
583
|
-
}
|
584
|
-
},
|
585
|
-
"additionalProperties": true
|
586
|
-
}
|
587
|
-
]
|
588
|
-
},
|
589
572
|
"inlineExtension_with_marks_node": {
|
590
573
|
"allOf": [
|
591
574
|
{
|
@@ -960,9 +943,6 @@
|
|
960
943
|
{
|
961
944
|
"$ref": "#/definitions/emoji_node"
|
962
945
|
},
|
963
|
-
{
|
964
|
-
"$ref": "#/definitions/inlineExtension_with_no_marks_node"
|
965
|
-
},
|
966
946
|
{
|
967
947
|
"$ref": "#/definitions/inlineExtension_with_marks_node"
|
968
948
|
},
|
@@ -1086,6 +1066,56 @@
|
|
1086
1066
|
],
|
1087
1067
|
"additionalProperties": false
|
1088
1068
|
},
|
1069
|
+
"caption_node": {
|
1070
|
+
"type": "object",
|
1071
|
+
"properties": {
|
1072
|
+
"type": {
|
1073
|
+
"enum": [
|
1074
|
+
"caption"
|
1075
|
+
]
|
1076
|
+
},
|
1077
|
+
"content": {
|
1078
|
+
"type": "array",
|
1079
|
+
"items": {
|
1080
|
+
"anyOf": [
|
1081
|
+
{
|
1082
|
+
"$ref": "#/definitions/hardBreak_node"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"$ref": "#/definitions/mention_node"
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"$ref": "#/definitions/emoji_node"
|
1089
|
+
},
|
1090
|
+
{
|
1091
|
+
"$ref": "#/definitions/date_node"
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
"$ref": "#/definitions/placeholder_node"
|
1095
|
+
},
|
1096
|
+
{
|
1097
|
+
"$ref": "#/definitions/inlineCard_node"
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
"$ref": "#/definitions/status_node"
|
1101
|
+
},
|
1102
|
+
{
|
1103
|
+
"$ref": "#/definitions/formatted_text_inline_node"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
"$ref": "#/definitions/code_inline_node"
|
1107
|
+
}
|
1108
|
+
]
|
1109
|
+
},
|
1110
|
+
"minItems": 0
|
1111
|
+
}
|
1112
|
+
},
|
1113
|
+
"required": [
|
1114
|
+
"type",
|
1115
|
+
"content"
|
1116
|
+
],
|
1117
|
+
"additionalProperties": false
|
1118
|
+
},
|
1089
1119
|
"mediaSingle_node": {
|
1090
1120
|
"type": "object",
|
1091
1121
|
"properties": {
|
@@ -1155,6 +1185,35 @@
|
|
1155
1185
|
}
|
1156
1186
|
]
|
1157
1187
|
},
|
1188
|
+
"mediaSingle_caption_node": {
|
1189
|
+
"allOf": [
|
1190
|
+
{
|
1191
|
+
"$ref": "#/definitions/mediaSingle_node"
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"type": "object",
|
1195
|
+
"properties": {
|
1196
|
+
"content": {
|
1197
|
+
"type": "array",
|
1198
|
+
"items": [
|
1199
|
+
{
|
1200
|
+
"$ref": "#/definitions/media_node"
|
1201
|
+
},
|
1202
|
+
{
|
1203
|
+
"$ref": "#/definitions/caption_node"
|
1204
|
+
}
|
1205
|
+
],
|
1206
|
+
"minItems": 1,
|
1207
|
+
"maxItems": 2
|
1208
|
+
}
|
1209
|
+
},
|
1210
|
+
"required": [
|
1211
|
+
"content"
|
1212
|
+
],
|
1213
|
+
"additionalProperties": true
|
1214
|
+
}
|
1215
|
+
]
|
1216
|
+
},
|
1158
1217
|
"listItem_node": {
|
1159
1218
|
"type": "object",
|
1160
1219
|
"properties": {
|
@@ -1176,6 +1235,9 @@
|
|
1176
1235
|
},
|
1177
1236
|
{
|
1178
1237
|
"$ref": "#/definitions/mediaSingle_full_node"
|
1238
|
+
},
|
1239
|
+
{
|
1240
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
1179
1241
|
}
|
1180
1242
|
]
|
1181
1243
|
},
|
@@ -1193,6 +1255,9 @@
|
|
1193
1255
|
{
|
1194
1256
|
"$ref": "#/definitions/mediaSingle_full_node"
|
1195
1257
|
},
|
1258
|
+
{
|
1259
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
1260
|
+
},
|
1196
1261
|
{
|
1197
1262
|
"$ref": "#/definitions/orderedList_node"
|
1198
1263
|
}
|
@@ -1354,8 +1419,15 @@
|
|
1354
1419
|
"tip",
|
1355
1420
|
"warning",
|
1356
1421
|
"error",
|
1357
|
-
"success"
|
1422
|
+
"success",
|
1423
|
+
"custom"
|
1358
1424
|
]
|
1425
|
+
},
|
1426
|
+
"panelIcon": {
|
1427
|
+
"type": "string"
|
1428
|
+
},
|
1429
|
+
"panelColor": {
|
1430
|
+
"type": "string"
|
1359
1431
|
}
|
1360
1432
|
},
|
1361
1433
|
"required": [
|
@@ -1662,23 +1734,6 @@
|
|
1662
1734
|
],
|
1663
1735
|
"additionalProperties": false
|
1664
1736
|
},
|
1665
|
-
"extension_with_no_marks_node": {
|
1666
|
-
"allOf": [
|
1667
|
-
{
|
1668
|
-
"$ref": "#/definitions/extension_node"
|
1669
|
-
},
|
1670
|
-
{
|
1671
|
-
"type": "object",
|
1672
|
-
"properties": {
|
1673
|
-
"marks": {
|
1674
|
-
"type": "array",
|
1675
|
-
"maxItems": 0
|
1676
|
-
}
|
1677
|
-
},
|
1678
|
-
"additionalProperties": true
|
1679
|
-
}
|
1680
|
-
]
|
1681
|
-
},
|
1682
1737
|
"extension_with_marks_node": {
|
1683
1738
|
"allOf": [
|
1684
1739
|
{
|
@@ -1758,6 +1813,9 @@
|
|
1758
1813
|
{
|
1759
1814
|
"$ref": "#/definitions/mediaSingle_full_node"
|
1760
1815
|
},
|
1816
|
+
{
|
1817
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
1818
|
+
},
|
1761
1819
|
{
|
1762
1820
|
"$ref": "#/definitions/heading_with_no_marks_node"
|
1763
1821
|
},
|
@@ -1905,6 +1963,9 @@
|
|
1905
1963
|
{
|
1906
1964
|
"$ref": "#/definitions/mediaSingle_full_node"
|
1907
1965
|
},
|
1966
|
+
{
|
1967
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
1968
|
+
},
|
1908
1969
|
{
|
1909
1970
|
"$ref": "#/definitions/orderedList_node"
|
1910
1971
|
},
|
@@ -1935,9 +1996,6 @@
|
|
1935
1996
|
{
|
1936
1997
|
"$ref": "#/definitions/taskList_node"
|
1937
1998
|
},
|
1938
|
-
{
|
1939
|
-
"$ref": "#/definitions/extension_with_no_marks_node"
|
1940
|
-
},
|
1941
1999
|
{
|
1942
2000
|
"$ref": "#/definitions/extension_with_marks_node"
|
1943
2001
|
},
|
@@ -2046,6 +2104,9 @@
|
|
2046
2104
|
{
|
2047
2105
|
"$ref": "#/definitions/mediaSingle_full_node"
|
2048
2106
|
},
|
2107
|
+
{
|
2108
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
2109
|
+
},
|
2049
2110
|
{
|
2050
2111
|
"$ref": "#/definitions/orderedList_node"
|
2051
2112
|
},
|
@@ -2070,9 +2131,6 @@
|
|
2070
2131
|
{
|
2071
2132
|
"$ref": "#/definitions/taskList_node"
|
2072
2133
|
},
|
2073
|
-
{
|
2074
|
-
"$ref": "#/definitions/extension_with_no_marks_node"
|
2075
|
-
},
|
2076
2134
|
{
|
2077
2135
|
"$ref": "#/definitions/extension_with_marks_node"
|
2078
2136
|
},
|
@@ -2214,23 +2272,6 @@
|
|
2214
2272
|
],
|
2215
2273
|
"additionalProperties": false
|
2216
2274
|
},
|
2217
|
-
"bodiedExtension_with_no_marks_node": {
|
2218
|
-
"allOf": [
|
2219
|
-
{
|
2220
|
-
"$ref": "#/definitions/bodiedExtension_node"
|
2221
|
-
},
|
2222
|
-
{
|
2223
|
-
"type": "object",
|
2224
|
-
"properties": {
|
2225
|
-
"marks": {
|
2226
|
-
"type": "array",
|
2227
|
-
"maxItems": 0
|
2228
|
-
}
|
2229
|
-
},
|
2230
|
-
"additionalProperties": true
|
2231
|
-
}
|
2232
|
-
]
|
2233
|
-
},
|
2234
2275
|
"bodiedExtension_with_marks_node": {
|
2235
2276
|
"allOf": [
|
2236
2277
|
{
|
@@ -2270,6 +2311,9 @@
|
|
2270
2311
|
{
|
2271
2312
|
"$ref": "#/definitions/mediaSingle_full_node"
|
2272
2313
|
},
|
2314
|
+
{
|
2315
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
2316
|
+
},
|
2273
2317
|
{
|
2274
2318
|
"$ref": "#/definitions/orderedList_node"
|
2275
2319
|
},
|
@@ -2300,9 +2344,6 @@
|
|
2300
2344
|
{
|
2301
2345
|
"$ref": "#/definitions/taskList_node"
|
2302
2346
|
},
|
2303
|
-
{
|
2304
|
-
"$ref": "#/definitions/extension_with_no_marks_node"
|
2305
|
-
},
|
2306
2347
|
{
|
2307
2348
|
"$ref": "#/definitions/extension_with_marks_node"
|
2308
2349
|
},
|
@@ -2315,9 +2356,6 @@
|
|
2315
2356
|
{
|
2316
2357
|
"$ref": "#/definitions/expand_with_no_mark_node"
|
2317
2358
|
},
|
2318
|
-
{
|
2319
|
-
"$ref": "#/definitions/bodiedExtension_with_no_marks_node"
|
2320
|
-
},
|
2321
2359
|
{
|
2322
2360
|
"$ref": "#/definitions/bodiedExtension_with_marks_node"
|
2323
2361
|
}
|
@@ -2464,6 +2502,9 @@
|
|
2464
2502
|
{
|
2465
2503
|
"$ref": "#/definitions/mediaSingle_full_node"
|
2466
2504
|
},
|
2505
|
+
{
|
2506
|
+
"$ref": "#/definitions/mediaSingle_caption_node"
|
2507
|
+
},
|
2467
2508
|
{
|
2468
2509
|
"$ref": "#/definitions/orderedList_node"
|
2469
2510
|
},
|
@@ -2494,9 +2535,6 @@
|
|
2494
2535
|
{
|
2495
2536
|
"$ref": "#/definitions/taskList_node"
|
2496
2537
|
},
|
2497
|
-
{
|
2498
|
-
"$ref": "#/definitions/extension_with_no_marks_node"
|
2499
|
-
},
|
2500
2538
|
{
|
2501
2539
|
"$ref": "#/definitions/extension_with_marks_node"
|
2502
2540
|
},
|
@@ -2512,9 +2550,6 @@
|
|
2512
2550
|
{
|
2513
2551
|
"$ref": "#/definitions/expand_with_breakout_mark_node"
|
2514
2552
|
},
|
2515
|
-
{
|
2516
|
-
"$ref": "#/definitions/bodiedExtension_with_no_marks_node"
|
2517
|
-
},
|
2518
2553
|
{
|
2519
2554
|
"$ref": "#/definitions/bodiedExtension_with_marks_node"
|
2520
2555
|
},
|