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