Validate model-metadata-schema config file
Source:R/validate_model_metadata_schema.R
validate_model_metadata_schema.Rd
Validate model-metadata-schema config file
Value
Returns the result of validation. If validation is successful, will
return TRUE
. If any validation errors are detected, returns FALSE
with
details of errors appended as a data.frame to an errors
attribute.
To access
the errors table use attr(x, "errors")
where x
is the output of the function.
You can print a more concise and easier to view version of an errors table with
view_config_val_errors()
.
Details
Checks that a model-metadata-schema.json
config file exists in hub-config
,
can be successfully parsed and contains at least either a model_id
property or
both team_abbr
and model_abbr
properties.
Examples
validate_model_metadata_schema(
hub_path = system.file(
"testhubs/simple/",
package = "hubUtils"
)
)
#> ✔ Successfully validated config file /home/runner/work/_temp/Library/hubUtils/testhubs/simple/hub-config/model-metadata-schema.json
#> [1] TRUE
#> attr(,"config_path")
#> /home/runner/work/_temp/Library/hubUtils/testhubs/simple/hub-config/model-metadata-schema.json