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": { "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;
} }