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
6 changes: 6 additions & 0 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -9241,6 +9241,12 @@
"description": "Bento stream configuration file",
"fileMatch": ["bento.json", "bento.yml", "bento.yaml"],
"url": "https://raw.githubusercontent.com/warpstreamlabs/bento/refs/heads/main/resources/schemastore/bento.json"
},
{
"name": "pgxgen",
"description": "pgxgen configuration file",
"fileMatch": ["pgxgen.yml", "pgxgen.yaml"],
"url": "https://raw.githubusercontent.com/tkcrm/pgxgen/refs/heads/master/schemas/pgxgen-schema.json"
}
]
}
38 changes: 35 additions & 3 deletions src/schemas/json/traefik-v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,31 @@
"certificatesDuration": {
"type": "integer"
},
"clientResponseHeaderTimeout": {
"type": "string"
},
"clientTimeout": {
"type": "string"
},
"disableCommonName": {
"type": "boolean"
},
"dnsChallenge": {
"$ref": "#/$defs/acmeDNSChallenge"
},
"eab": {
"$ref": "#/$defs/acmeEAB"
},
"email": {
"type": "string"
"type": "string",
"description": "Email address used for ACME account registration. This is the contact email for the certificate authority."
},
"emailAddresses": {
"items": {
"type": "string"
},
"type": ["array", "null"],
"description": "Email addresses to include in the Certificate Signing Request (CSR). These are different from the ACME registration email and are embedded in the certificate itself."
},
"httpChallenge": {
"$ref": "#/$defs/acmeHTTPChallenge"
Expand All @@ -45,6 +62,9 @@
"preferredChain": {
"type": "string"
},
"profile": {
"type": "string"
},
"storage": {
"type": "string"
},
Expand All @@ -58,10 +78,12 @@
"additionalProperties": false,
"properties": {
"delayBeforeCheck": {
"type": "string"
"type": "string",
"description": "DEPRECATED. Delay before checking propagation. Use acme.dnsChallenge.propagation.delayBeforeChecks instead."
},
"disablePropagationCheck": {
"type": "boolean"
"type": "boolean",
"description": "DEPRECATED. Disable propagation check. Use acme.dnsChallenge.propagation.disableChecks instead."
},
"propagation": {
"$ref": "#/$defs/acmePropagation"
Expand Down Expand Up @@ -93,6 +115,10 @@
"acmeHTTPChallenge": {
"additionalProperties": false,
"properties": {
"delay": {
"type": "string",
"description": "Delay between the creation of the challenge and the validation (duration format, e.g., 30s, 1m)."
},
"entryPoint": {
"type": "string"
}
Expand All @@ -119,6 +145,12 @@
},
"acmeTLSChallenge": {
"additionalProperties": false,
"properties": {
"delay": {
"type": "string",
"description": "Delay between the creation of the challenge and the validation (duration format, e.g., 30s, 1m)."
}
},
"type": "object"
},
"consulProviderBuilder": {
Expand Down
20 changes: 18 additions & 2 deletions src/test/traefik-v3/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
"caServerName": "foobar",
"caSystemCertPool": true,
"certificatesDuration": 42,
"clientResponseHeaderTimeout": "42s",
"clientTimeout": "42s",
"disableCommonName": true,
"dnsChallenge": {
"delayBeforeCheck": "42s",
"disablePropagationCheck": true,
Expand All @@ -90,13 +93,18 @@
"kid": "foobar"
},
"email": "foobar",
"emailAddresses": ["foobar", "foobar"],
"httpChallenge": {
"delay": "42s",
"entryPoint": "foobar"
},
"keyType": "foobar",
"preferredChain": "foobar",
"profile": "foobar",
"storage": "foobar",
"tlsChallenge": {}
"tlsChallenge": {
"delay": "42s"
}
},
"tailscale": {}
},
Expand All @@ -107,6 +115,9 @@
"caServerName": "foobar",
"caSystemCertPool": true,
"certificatesDuration": 42,
"clientResponseHeaderTimeout": "42s",
"clientTimeout": "42s",
"disableCommonName": true,
"dnsChallenge": {
"delayBeforeCheck": "42s",
"disablePropagationCheck": true,
Expand All @@ -124,13 +135,18 @@
"kid": "foobar"
},
"email": "foobar",
"emailAddresses": ["foobar", "foobar"],
"httpChallenge": {
"delay": "42s",
"entryPoint": "foobar"
},
"keyType": "foobar",
"preferredChain": "foobar",
"profile": "foobar",
"storage": "foobar",
"tlsChallenge": {}
"tlsChallenge": {
"delay": "42s"
}
},
"tailscale": {}
}
Expand Down