Open QuentinLemCode opened 2 months ago
PETOSS-553
Thanks for raising an issue, a ticket has been created to track your request
Do NOT run it.
It's malware that'll steal your account if executed, to spread further spamming the same message elsewhere, like happened to this person.
There are a lot of comments like that
(and this is how I found this issue)
Hello
There seems to have big inconsistencies on your OpenAPI definition.
I work with this file : https://github.com/XeroAPI/Xero-OpenAPI/blob/master/xero_accounting.yaml
By taking the
GET /Payments/{PaymentID}
endpoint definition, every field of the "Payment" schema is marked as optional : there is norequired
fields.However, by looking at the developer documentation it seems that some fields are optional (
Reference
for example) but some seems required (like theDate
field).I can see that you reuse the
Payment
schema for creation request and read request. It's a good thing, however, for response, you can define your response schema by reusing your existing schema and add required property. Example belowCould you fix the OpenAPI definition to mark fields always present as required please ?
Otherwise, could you provide some explanation about when the Date field can be undefined ?
Thanks