Files
git.stella-ops.org/bench/reachability-benchmark/schemas/entrypoints.schema.yaml
StellaOps Bot 8f54ffa203
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
up
2025-11-29 11:37:00 +02:00

42 lines
997 B
YAML

$schema: "https://json-schema.org/draft/2020-12/schema"
$id: "https://stellaops.org/benchmark/reachability/entrypoints.schema.yaml"
title: Reachability Case Entrypoints
type: object
required:
- case_id
- entries
properties:
case_id:
type: string
entries:
type: object
minProperties: 1
additionalProperties: false
patternProperties:
"^[a-z][a-z0-9_-]*$":
type: array
minItems: 1
items:
type: object
required: [id]
additionalProperties: false
properties:
id:
type: string
route:
type: string
method:
type: string
command:
type: string
schedule:
type: string
handler:
type: string
env:
type: object
additionalProperties: true
description:
type: string
additionalProperties: false