Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvement: error context reporting #47

Open
1 task
fredbi opened this issue Dec 18, 2017 · 1 comment
Open
1 task

Improvement: error context reporting #47

fredbi opened this issue Dec 18, 2017 · 1 comment

Comments

@fredbi
Copy link
Member

fredbi commented Dec 18, 2017

Errors and warnings are dumped in any order, with poor information about context in the spec.

Since retrieving line numbers is a hard problem, I suggest we could extend the Result object to provide a map of paths linked to errors.

Beware : this would affect the interface with Result (AddError and possibly some more direct usage).

In the end, messages would be pretty printed by sorting and indenting keys.
Not quite line numbers but better than the unordered list we have today.

Also referred by:

@diafour
Copy link

diafour commented Sep 26, 2019

messages would be pretty printed by sorting and indenting keys.

It also helps to include an index of item in array.

type: array
items:
  type: object
  properties:
    prop1:
      type: string
[
  { "prop1": "valid"},
  { "prop1": 2989 },
]

Error now:

prop1 in body must be of type string: "number"

Error with index:

[1].prop1 in body must be of type string: "number"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants