platform_status_encoded.py 340 Bytes
Newer Older
1
from formats.encoded import encoded_schema
2
from copy import deepcopy
3

4
platform_status_encoded_schema = deepcopy(encoded_schema)
5 6 7 8 9 10 11

platform_status_encoded_schema["properties"]["message_type"]["enum"] = [
    "platform_status_encoded"
]
platform_status_encoded_schema["properties"]["message_type"][
    "example"
] = "platform_status_encoded"