Add 'text' field to XmlSerializationFormat
This commit is contained in:
Родитель
dca53d5a4c
Коммит
4f01cac299
|
@ -430,12 +430,16 @@
|
||||||
},
|
},
|
||||||
"wrapped": {
|
"wrapped": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"text": {
|
||||||
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultProperties": [],
|
"defaultProperties": [],
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
"attribute",
|
"attribute",
|
||||||
|
"text",
|
||||||
"wrapped"
|
"wrapped"
|
||||||
],
|
],
|
||||||
"allOf": [
|
"allOf": [
|
||||||
|
|
|
@ -2211,10 +2211,13 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
prefix:
|
prefix:
|
||||||
type: string
|
type: string
|
||||||
|
text:
|
||||||
|
type: boolean
|
||||||
wrapped:
|
wrapped:
|
||||||
type: boolean
|
type: boolean
|
||||||
required:
|
required:
|
||||||
- attribute
|
- attribute
|
||||||
|
- text
|
||||||
- wrapped
|
- wrapped
|
||||||
XorSchema:
|
XorSchema:
|
||||||
type: object
|
type: object
|
||||||
|
|
|
@ -238,12 +238,16 @@
|
||||||
},
|
},
|
||||||
"wrapped": {
|
"wrapped": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"text": {
|
||||||
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultProperties": [],
|
"defaultProperties": [],
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": [
|
"required": [
|
||||||
"attribute",
|
"attribute",
|
||||||
|
"text",
|
||||||
"wrapped"
|
"wrapped"
|
||||||
],
|
],
|
||||||
"allOf": [
|
"allOf": [
|
||||||
|
|
|
@ -656,10 +656,13 @@ definitions:
|
||||||
type: string
|
type: string
|
||||||
prefix:
|
prefix:
|
||||||
type: string
|
type: string
|
||||||
|
text:
|
||||||
|
type: boolean
|
||||||
wrapped:
|
wrapped:
|
||||||
type: boolean
|
type: boolean
|
||||||
required:
|
required:
|
||||||
- attribute
|
- attribute
|
||||||
|
- text
|
||||||
- wrapped
|
- wrapped
|
||||||
email:
|
email:
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { SerializationFormat } from '../schema';
|
import { SerializationFormat } from "../schema";
|
||||||
|
|
||||||
export interface XmlSerlializationFormat extends SerializationFormat {
|
export interface XmlSerlializationFormat extends SerializationFormat {
|
||||||
name?: string;
|
name?: string;
|
||||||
|
@ -6,4 +6,5 @@ export interface XmlSerlializationFormat extends SerializationFormat {
|
||||||
prefix?: string;
|
prefix?: string;
|
||||||
attribute: boolean;
|
attribute: boolean;
|
||||||
wrapped: boolean;
|
wrapped: boolean;
|
||||||
|
text: boolean;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче