Add 'text' field to XmlSerializationFormat

This commit is contained in:
David Wilson 2020-07-30 11:14:43 -07:00
Родитель dca53d5a4c
Коммит 4f01cac299
5 изменённых файлов: 16 добавлений и 1 удалений

Просмотреть файл

@ -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;
}