changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "message": {
+ "type": "string"
+ },
+ "quotes": {
+ "items": {
+ "properties": {
+ "buyer_company": {
+ "type": "string"
+ },
+ "created_at": {
+ "description": "ISO-8601 timestamp.",
+ "type": "string"
+ },
+ "id": {
+ "type": "integer"
+ },
+ "message": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "product_id": {
+ "type": "string"
+ },
+ "product_name": {
+ "type": "string"
+ },
+ "quantity": {
+ "type": "integer"
+ },
+ "status": {
+ "type": "string"
+ },
+ "target_price": {
+ "description": "Buyer target in cents.",
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "product_id",
+ "quantity",
+ "status",
+ "created_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "quotes",
+ "total",
+ "message"
+ ],
+ "type": "object"
+}