Texecom Event Schemas

JSON Schema Documentation

Sentinel (SIA JSON ) Received Event Type

Event type for Sentinel (SIA JSON) received payload.

$idhttps://schemas.texecom-prod.com/v2/events/event-type/arc/sentinel-sia/received/v1.0.0.json
$schemahttp://json-schema.org/draft-07/schema

Properties

NameType
receivedPayloadAny of:String
Number
Boolean
Object
Array
All of:Object (of type Common Properties for ARC response events)

receivedPayload

TypeAny of:String
Number
Boolean
Object
Array
Required No

receivedPayload.0

TypeString

receivedPayload.1

TypeNumber

receivedPayload.2

TypeBoolean

receivedPayload.3

TypeObject

receivedPayload.4

TypeArray

Schema

{
    "$id": "https://schemas.texecom-prod.com/v2/events/event-type/arc/sentinel-sia/received/v1.0.0.json",
    "$schema": "http://json-schema.org/draft-07/schema",
    "title": "Sentinel (SIA JSON ) Received Event Type",
    "description": "Event type for Sentinel (SIA JSON) received payload.",
    "type": "object",
    "properties": {
        "receivedPayload": {
            "anyOf": [
                {
                    "type": "string"
                },
                {
                    "type": "number"
                },
                {
                    "type": "boolean"
                },
                {
                    "type": "object"
                },
                {
                    "type": "array"
                }
            ]
        }
    },
    "allOf": [
        {
            "$ref": "../../common/received/v1.0.0.json"
        }
    ],
    "additionalProperties": false
}