Conversation
Deploying n8n-docs with
|
| Latest commit: |
5b62ce3
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://ae657083.n8n-docs-d9c.pages.dev |
| Branch Preview URL: | https://chore-sync-public-api-schema.n8n-docs-d9c.pages.dev |
|
|
✅ Deploy Preview for n8n-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
No description provided. |
There was a problem hiding this comment.
1 issue found across 1 file
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="docs/api/v1/openapi.yml">
<violation number="1" location="docs/api/v1/openapi.yml:440">
P2: The schema says `status` must include at least one value, but `minItems` is missing, so an empty array would still validate. Add `minItems: 1` to enforce the contract.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| - status | ||
| properties: | ||
| status: | ||
| type: array |
There was a problem hiding this comment.
P2: The schema says status must include at least one value, but minItems is missing, so an empty array would still validate. Add minItems: 1 to enforce the contract.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At docs/api/v1/openapi.yml, line 440:
<comment>The schema says `status` must include at least one value, but `minItems` is missing, so an empty array would still validate. Add `minItems: 1` to enforce the contract.</comment>
<file context>
@@ -398,6 +398,87 @@ paths:
+ - status
+ properties:
+ status:
+ type: array
+ description: Array of execution statuses to stop. Must include at least one status.
+ items:
</file context>
| type: array | |
| type: array | |
| minItems: 1 |
Automated update of the Public API OpenAPI YAML schema.
This PR was generated by a GitHub Action in the n8n-io/n8n-private repository.
Source commit: 7ad421f
Please review the changes and merge if appropriate.