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

schemas.v15.sendlocallist.json Maven / Gradle / Ivy

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "SendLocalListRequest",
    "type": "object",
    "properties": {
        "updateType": {
            "type": "string",
            "enum": [
                "Differential",
                "Full"
            ]
        },
        "listVersion": {
            "type": "integer"
        },
        "localAuthorisationList": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "idTag": {
                        "type": "string",
                        "maxLength": 20
                    },
                    "idTagInfo": {
                        "type": "object",
                        "properties": {
                            "status": {
                                "type": "string",
                                "enum": [
                                    "Accepted",
                                    "Blocked",
                                    "Expired",
                                    "Invalid",
                                    "ConcurrentTx"
                                ]
                            },
                            "expiryDate": {
                                "type": "string",
                                "format": "date-time"
                            },
                            "parentIdTag": {
                                "type": "string",
                                "maxLength": 20
                            }
                        },
                        "required": [
                            "status"
                        ]
                    }
                },
                "required": [
                    "idTag"
                ]
            }
        },
        "hash": {
            "type": "string"
        }
    },
    "required": [
        "updateType",
        "listVersion"
    ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy