All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schema.order-schema.json Maven / Gradle / Ivy

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    
    "title": "Order",
    "type": "object",
    "properties": {
    
        "orderId": {
            "type": "string"
        },

        "orderItems": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "itemId": {
                        "type": "string"
                    },
                    "quantity": {
                        "type": "integer"
                    }
                }
            }
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy