File: modelWithMultipleProperties.yaml

package info (click to toggle)
golang-github-go-openapi-loads 0.22.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 1,208 kB
  • sloc: makefile: 4
file content (14 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (10)
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}}