github.com/go-swagger/go-swagger@v0.31.0/fixtures/bugs/2919/edge-api/shared/edge-routers.yml (about) 1 --- 2 definitions: 3 commonEdgeRouterProperties: 4 type: object 5 required: 6 - hostname 7 - name 8 - supportedProtocols 9 - syncStatus 10 - isOnline 11 - cost 12 - noTraversal 13 - disabled 14 properties: 15 hostname: 16 type: string 17 name: 18 type: string 19 supportedProtocols: 20 additionalProperties: 21 type: string 22 type: object 23 syncStatus: 24 type: string 25 isOnline: 26 type: boolean 27 cost: 28 type: integer 29 minimum: 0 30 maximum: 65535 31 x-nullable: true 32 noTraversal: 33 type: boolean 34 x-nullable: true 35 disabled: 36 type: boolean 37 appData: 38 $ref: 'base-entity.yml#/definitions/tags'