@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
22 lines • 543 B
JSON
{
"type": "object",
"properties": {
"dateAdded": {
"type": "string",
"format": "date-time",
"description": "Added date of product interest"
},
"expirationDate": {
"type": "string",
"format": "date-time",
"description": "Expiration date of product interest"
},
"interestType": {
"type": "string",
"description": "Product interest type"
}
},
"title": "productInterestEntry",
"description": "Product interest entry",
"$schema": "http://json-schema.org/schema#"
}