| 12107 | namespace Responses { |
| 12108 | export type $200 = Components.Responses.BuildResponseOk; |
| 12109 | export interface $400 { |
| 12110 | /** |
| 12111 | * example: |
| 12112 | * The request is malformed |
| 12113 | */ |
| 12114 | details?: string; |
| 12115 | status?: 400 | 500; |
| 12116 | /** |
| 12117 | * example: |
| 12118 | * xy123zzdafaf |
| 12119 | */ |
| 12120 | requestId?: string; |
| 12121 | /** |
| 12122 | * List of failing paths. |
| 12123 | */ |
| 12124 | failingPaths?: { |
| 12125 | /** |
| 12126 | * example: |
| 12127 | * $.property[0] |
| 12128 | */ |
| 12129 | path?: string; |
| 12130 | /** |
| 12131 | * example: |
| 12132 | * Missing required property |
| 12133 | */ |
| 12134 | details?: string; |
| 12135 | }[]; |
| 12136 | } |
| 12137 | export interface $401 {} |
| 12138 | export interface $422 { |
| 12139 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected