@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
19 lines • 636 B
JSON
{
"type": "object",
"properties": {
"numberOfIssues": {
"type": "integer",
"format": "int32",
"example": 3,
"description": "Number of issues per status"
},
"status": {
"type": "string",
"example": "ERROR",
"description": "Status or severity indicator, can be one of ERROR, WARNING, INFO or SUCCESS"
}
},
"title": "StatusSummary",
"description": "Representation of a status summary, an aggregated view on issues for a specific status or severity. These issues are attached to configurations of products or order entries",
"$schema": "http://json-schema.org/schema#"
}