@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
41 lines • 803 B
JSON
{
"type": "object",
"properties": {
"defaultWishlist": {
"type": "boolean"
},
"description": {
"type": "string"
},
"entries": {
"type": "array",
"items": {
"$ref": "_definitions.json#/definitions/WishlistEntry",
"originalRef": "WishlistEntry"
}
},
"formattedUserName": {
"type": "string"
},
"name": {
"type": "string"
},
"pk": {
"type": "integer",
"format": "int64"
},
"totalPrice": {
"$ref": "_definitions.json#/definitions/Price",
"originalRef": "Price"
},
"totalUnitCount": {
"type": "integer",
"format": "int32"
},
"userName": {
"type": "string"
}
},
"title": "Wishlist",
"$schema": "http://json-schema.org/schema#"
}