Validates the supplied schema. This call has no side effects, it simply
validates using the supplied schema using DataFormat
as the format.
Since it does not take a schema set name, no compatibility checks are
performed.
glue_check_schema_version_validity(DataFormat, SchemaDefinition)
A list with the following syntax:
list(
Valid = TRUE|FALSE,
Error = "string"
)
[required] The data format of the schema definition. Currently only AVRO
is
supported.
[required] The definition of the schema that has to be validated.
svc$check_schema_version_validity(
DataFormat = "AVRO",
SchemaDefinition = "string"
)