MCPcopy Index your code
hub / github.com/IQEngine/IQEngine / MetadataValidator

Interface MetadataValidator

client/src/utils/validators.ts:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import sigmfSchema from '@/data/sigmf-schema.json';
4
5interface MetadataValidator {
6 metadata: string;
7 errors: any[];
8}
9
10export function metadataValidator(metadataValue: string, path: string = null) {
11 let metadataValidator = { metadata: metadataValue, errors: [] } as MetadataValidator;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected