@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
25 lines • 575 B
JSON
{
"type": "object",
"properties": {
"detail": {
"type": "string",
"description": "Tracking detail"
},
"eventDate": {
"type": "string",
"format": "date-time",
"description": "Date of tracking event"
},
"location": {
"type": "string",
"description": "Consignment location"
},
"referenceCode": {
"type": "string",
"description": "Logistics status"
}
},
"title": "consignmentTrackingEvent",
"description": "Consignment tracking event",
"$schema": "http://json-schema.org/schema#"
}