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
13 changes: 4 additions & 9 deletions docs/static/spec/openapi/logstash-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1748,11 +1748,9 @@ components:
type: string
description: A unique identifier for the ephemeral session of the Logstash instance.
snapshot:
type: boolean
nullable: true
type: [boolean, 'null']
status:
$ref: '#/components/schemas/Status'

PipelineSettings:
type: object
properties:
Expand Down Expand Up @@ -2263,19 +2261,16 @@ components:
type: object
properties:
last_error:
type: string
nullable: true
type: [ string, 'null']
successes:
type: integer
format: int64
last_success_timestamp:
type: string
type: [ string, 'null']
format: date-time
nullable: true
last_failure_timestamp:
type: string
type: [ string, 'null']
format: date-time
nullable: true
failures:
type: integer
format: int64
Expand Down
14 changes: 8 additions & 6 deletions docs/static/spec/openapi/redocly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,10 @@ rules:
# Paths
no-ambiguous-paths: warn
no-identical-paths: error
path-excludes-patterns:
severity: error
patterns:
- ^\/internal
# Responses
operation-4xx-response: off
operation-2xx-response: off
# Schema
spec: off
spec-strict-refs: off
# Tags
operation-tag-defined: off
Expand All @@ -49,4 +44,11 @@ rules:
severity: warn
assertions:
maxLength: 45
minLength: 5
minLength: 5
rule/path-exclude-pattern:
subject:
type: Paths
message: Do not include internal APIs
assertions:
notPattern: ^\/internal
severity: error
Loading