Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ allOf:
- $ref: ./RequestBase.yaml
required:
- id
- uniqueKey
- url
- properties:
id:
$ref: ./SharedProperties.yaml#/RequestId
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
title: RequestBase
type: object
required:
- uniqueKey
- url
properties:
uniqueKey:
$ref: ./SharedProperties.yaml#/UniqueKey
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
title: RequestWithoutId
description: A request stored in the request queue, including its metadata and processing state, without the assigned ID.
$ref: ./RequestBase.yaml
required:
- uniqueKey
- url
# Wrapped in a single-member `allOf` so that bundling keeps this component. A bare `$ref` with sibling keys is a

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe the comment can be just in the description of this PR

# pass-through schema, which the bundler inlines into its target - the component then never reaches the published
# specification, and clients generated from it have no schema for the request-queue write bodies.
allOf:
- $ref: ./RequestBase.yaml
Loading