Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion data/specs/api/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3515,6 +3515,7 @@ components:
pathname: /dairy/*
- directive: allow
pathname: /produce
search: role=admin
- directive: allow
pathname: /
activation_url_rules: []
Expand Down Expand Up @@ -3591,6 +3592,11 @@ components:
type: string
x-struct: null
x-validate: null
search:
description: The search query params to match
type: string
x-struct: null
x-validate: null
type: object
x-struct: null
x-validate: null
Expand All @@ -3607,7 +3613,7 @@ components:
x-struct: null
x-validate: null
directive:
description: The directive for the URL pattern ('allow' or 'block')
description: The directive for the URL rule ('allow' or 'block')
type: string
x-struct: null
x-validate: null
Expand Down Expand Up @@ -7270,6 +7276,15 @@ paths:
type: string
x-struct: null
x-validate: null
- description: Comma-separated list of field paths to exclude from the response. Use dot notation for nested fields (e.g., `entries.archived_at`). Limited to 3 levels deep.
example: entries.archived_at,entries.clicked_at
in: query
name: exclude
required: false
schema:
type: string
x-struct: null
x-validate: null
- description: The cursor to fetch entries after.
in: query
name: after
Expand Down
Loading