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

The state schema is not a valid JSON schema #17

Open
ghost opened this issue Nov 13, 2020 · 0 comments
Open

The state schema is not a valid JSON schema #17

ghost opened this issue Nov 13, 2020 · 0 comments

Comments

@ghost
Copy link

ghost commented Nov 13, 2020

In branch 5.0.0 (corresponding to VDA 5050 v1.1), the required option for errors and information items properties is not aligned with the properties but one level up with the items.

Wrong:

"errors": {
    "items": {
         "properties": {
         },
    },
    "required": {
    },

"information": {
    "items": {
         "properties": {
         },
    },
    "required": {
    }

Correct:

"errors": {
    "items": {
         "properties": {
         },
         "required": {
         },
    },

"information": {
    "items": {
         "properties": {
         },
         "required": {
         },
    },

Furthermore, in state > information > infoDescription the property description should state

"Verbose description of information."

instead of

"Verbose description of error."

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

No branches or pull requests

0 participants