mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
35 lines
760 B
YAML
35 lines
760 B
YAML
description: ConnectorRuleValidationResponse
|
|
type: object
|
|
required:
|
|
- state
|
|
- details
|
|
properties:
|
|
state:
|
|
type: string
|
|
enum:
|
|
- OK
|
|
- ERROR
|
|
example: ERROR
|
|
details:
|
|
type: array
|
|
items:
|
|
description: CodeErrorDetail
|
|
type: object
|
|
required:
|
|
- line
|
|
- column
|
|
- message
|
|
properties:
|
|
line:
|
|
type: integer
|
|
description: The line number where the issue occurred
|
|
example: 2
|
|
column:
|
|
type: integer
|
|
description: the column number where the issue occurred
|
|
example: 5
|
|
messsage:
|
|
type: string
|
|
description: a description of the issue in the code
|
|
example: Remove reference to .decrypt(
|