@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
33 lines • 834 B
JSON
{
"type": "object",
"properties": {
"catalogVersions": {
"type": "array",
"description": "List of versions of catalog",
"items": {
"$ref": "_definitions.json#/definitions/CatalogVersion",
"originalRef": "CatalogVersion"
}
},
"id": {
"type": "string",
"description": "Identifier of abstract catalog item"
},
"lastModified": {
"type": "string",
"format": "date-time",
"description": "Date of last modification"
},
"name": {
"type": "string",
"description": "Name of abstract catalog item"
},
"url": {
"type": "string",
"description": "Url address of abstract catalog item"
}
},
"title": "Catalog",
"description": "Representation of an Catalog",
"$schema": "http://json-schema.org/schema#"
}