graceful-boundaries 1.5.2 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/schema/limits.schema.json +1 -1
- package/schema/refusal-429.schema.json +1 -1
- package/schema/refusal.schema.json +1 -1
- package/spec.md +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ A specification for how services communicate their operational limits to humans
|
|
|
5
5
|
**[gracefulboundaries.dev](https://gracefulboundaries.dev)**
|
|
6
6
|
|
|
7
7
|
[](https://creativecommons.org/licenses/by/4.0/)
|
|
8
|
-
[](CHANGELOG.md)
|
|
9
9
|
[](https://github.com/snapsynapse/graceful-boundaries/actions)
|
|
10
10
|
[](https://clawhub.ai/snapsynapse/graceful-boundaries)
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "https://gracefulboundaries.dev/schema/limits.schema.json",
|
|
4
4
|
"title": "Graceful Boundaries limits discovery response",
|
|
5
|
-
"description": "Response shape for the limits discovery endpoint (GET /api/limits or GET /.well-known/limits) per Graceful Boundaries. Spec: https://gracefulboundaries.dev/spec",
|
|
5
|
+
"description": "Response shape for the limits discovery endpoint (GET /api/limits or GET /.well-known/limits) per Graceful Boundaries. Spec: https://gracefulboundaries.dev/spec.md",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"required": ["service", "description", "limits"],
|
|
8
8
|
"properties": {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "https://gracefulboundaries.dev/schema/refusal-429.schema.json",
|
|
4
4
|
"title": "Graceful Boundaries 429 refusal response",
|
|
5
|
-
"description": "Structured refusal shape for limit-class responses (429). Extends the core refusal shape with the fields Level 1 requires on rate-limit refusals. Spec: https://gracefulboundaries.dev/spec",
|
|
5
|
+
"description": "Structured refusal shape for limit-class responses (429). Extends the core refusal shape with the fields Level 1 requires on rate-limit refusals. Spec: https://gracefulboundaries.dev/spec.md",
|
|
6
6
|
"$ref": "https://gracefulboundaries.dev/schema/refusal.schema.json",
|
|
7
7
|
"required": ["error", "detail", "why", "limit", "retryAfterSeconds"]
|
|
8
8
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "https://gracefulboundaries.dev/schema/refusal.schema.json",
|
|
4
4
|
"title": "Graceful Boundaries non-success response",
|
|
5
|
-
"description": "Core structured refusal shape for all non-success HTTP responses (400, 401, 403, 404, 405, 410, 422, 429, 500, 502, 503, 504) per Graceful Boundaries. Spec: https://gracefulboundaries.dev/spec",
|
|
5
|
+
"description": "Core structured refusal shape for all non-success HTTP responses (400, 401, 403, 404, 405, 410, 422, 429, 500, 502, 503, 504) per Graceful Boundaries. Spec: https://gracefulboundaries.dev/spec.md",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"required": ["error", "detail", "why"],
|
|
8
8
|
"properties": {
|