From 109bd2ddb84087a5898621ef7b0aed821705bbce Mon Sep 17 00:00:00 2001 From: kalexieva Date: Mon, 27 Apr 2026 16:18:16 -0700 Subject: [PATCH] fix(aep-130): operation IDs should use "fetch" not "get" for retrieving resources --- aep/general/0130/aep.md | 2 +- aep/general/0156/aep.md | 2 +- aep/general/example.oas.yaml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aep/general/0130/aep.md b/aep/general/0130/aep.md index 2951e613..31811671 100644 --- a/aep/general/0130/aep.md +++ b/aep/general/0130/aep.md @@ -75,7 +75,7 @@ default. Examples: -- `getBook` +- `fetchBook` - `listBooks` - `createBook` - `updateBook` diff --git a/aep/general/0156/aep.md b/aep/general/0156/aep.md index 1c07fbfb..5d0a456c 100644 --- a/aep/general/0156/aep.md +++ b/aep/general/0156/aep.md @@ -43,7 +43,7 @@ paths: users/{user}/config: x-aep-resource-pattern: singleton get: - operationId: getUserConfig + operationId: fetchUserConfig parameters: - $ref: '#/components/parameters/user' responses: diff --git a/aep/general/example.oas.yaml b/aep/general/example.oas.yaml index 47aa2289..074e4a15 100644 --- a/aep/general/example.oas.yaml +++ b/aep/general/example.oas.yaml @@ -134,7 +134,7 @@ paths: description: Successful response get: description: Get method for publisher - operationId: getPublisher + operationId: fetchPublisher parameters: - in: path name: publisherId @@ -303,7 +303,7 @@ paths: description: Successful response get: description: Get method for book - operationId: getBook + operationId: fetchBook parameters: - in: path name: publisherId @@ -498,7 +498,7 @@ paths: description: Successful response get: description: Get method for book-edition - operationId: getBookEdition + operationId: fetchBookEdition parameters: - in: path name: publisherId