1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
description: 'true'
properties:
booleanValue: {type: boolean}
byteValue: {type: string, format: byte}
dateTimeValue: {type: string, format: date-time}
int32Value: {type: integer, format: int32}
int64Value: {type: integer, format: int64}
stringValue: {type: string}
booleanArrayValue: {type: array, items: {type: boolean}}
byteArrayValue: {type: array, items: {type: string, format: byte}}
dateTimeArrayValue: {type: array, items: {type: string, format: date-time}}
int32ArrayValue: {type: array, items: {type: integer, format: int32}}
int64ArrayValue: {type: array, items: {type: integer, format: int64}}
stringArrayValue: {type: array, items: {type: string}}
|