poke-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

JSON Representation


From: Konstantinos Chasialis
Subject: JSON Representation
Date: Wed, 6 May 2020 00:41:23 +0300
User-agent: SquirrelMail/1.4.23 [email.uoa.gr]

libpoke/pvm-val.json :

{
    "$schema": "http://json-schema.org/draft-06/schema#";,
    "$id": "",
    "title" : "PVMValuesRepresentation",
    "description" : "JSON Representation for PVM values",
    "definitions" : {
        "Integral": {
            "type": "object",
            "properties": {
                "value": {
                    "type": "integer"
                },
                "size": {
                    "type": "integer"
                }
            },
            "required": [
                "size",
                "value"
            ],
            "title": "Integral"
        },
        "Null": {
            "type": "object",
            "properties": {
                "nullValue": {
                    "type": "null"
                }
            },
            "required": [
                "nullValue"
            ],
            "title": "Null"
        },
        "Offset": {
            "type": "object",
            "properties": {
                "identifier": {
                    "type": "string"
                },
                "size": {
                    "type": "integer"
                }
            },
            "required": [
                "identifier",
                "size"
            ],
            "title": "Offset"
        },
        "String": {
            "type": "object",
            "properties": {
                "value": {
                    "type": "string"
                }
            },
            "required": [
                "value"
            ],
            "title": "String"
        }
        }
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]