Skip to content
Merged
Changes from 1 commit
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
28 changes: 25 additions & 3 deletions aep/general/0157/aep.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,17 @@ named `read_mask`.

{% tab oas %}

**Note:** OAS example not yet written.
```yaml
parameters:
- in: query
name: fields
schema:
type: string
description: >-
A comma-separated list of fields to include in the response. If not
provided, all fields are returned. Nested fields can be specified using
dot notation. For example: `title,author.name`.
```

{% endtabs %}

Expand Down Expand Up @@ -89,6 +99,18 @@ enum BookView {

{% tab oas %}

**Note:** OAS example not yet written.
```yaml
parameters:
- in: query
name: view
schema:
type: string
enum:
- BASIC
- FULL
description: >-
Specifies which fields to return for the book. BASIC returns basic
metadata, FULL returns all fields.
```

{% endtabs %}
{% endtab %}
Loading