We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
unknown field in JSON input
When the onboarding software wants to add a code hosting, it sends a PATCH with an array of the old URLs plus the new one:
{ "email": "comune-di-riuso@example.com", "codeHosting": [ { "url": "https://github.com/comune-di-riuso", "group": true, "createdAt": "2024-10-21T16:54:21.775684Z", "updatedAt": "2024-10-21T16:54:21.775684Z" }, { "url": "https://github.com/comune-di-riuso-2" # New code hosting } ] }
this fails because createdAt and updatedAt are not accepted by the parser. See 1 and 2.
createdAt
updatedAt
The text was updated successfully, but these errors were encountered:
Actually not bug of the api, but rather of onboarding.
Sorry, something went wrong.
No branches or pull requests
When the onboarding software wants to add a code hosting, it sends a PATCH with an array of the old URLs plus the new one:
this fails because
createdAt
andupdatedAt
are not accepted by the parser. See 1 and 2.The text was updated successfully, but these errors were encountered: