{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExtendedPointId", "title": "ExtendedPointId", "description": "Type, used for specifying point ID in user interface", "anyOf": [ { "type": "integer", "format": "uint64", "minimum": 0, "example": 42 }, { "type": "string", "format": "uuid", "example": "550e8400-e29b-41d4-a716-446655440000" } ] }