-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalidate-component.js
58 lines (48 loc) · 1.52 KB
/
validate-component.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const Ajv = require("ajv");
const addFormats = require("ajv-formats");
const fs = require("fs");
// Function to validate JSON against a schema from your OpenAPI spec
function validateAgainstSchema(jsonData, schemaName) {
// Load the OpenAPI spec
const openApiSpec = JSON.parse(
fs.readFileSync("./specification/http/1.0/openapi.json", "utf8")
);
// Get the schema by name from components.schemas
const schema = openApiSpec.components.schemas[schemaName];
if (!schema) {
throw new Error(`Schema "${schemaName}" not found in the OpenAPI spec`);
}
// Create Ajv instance with the right options for OpenAPI 3.1
const ajv = new Ajv({
strict: false,
allErrors: true,
validateFormats: true,
});
// Add formats support (uri, email, etc.)
addFormats(ajv);
// Add all schemas from the spec to allow for references
for (const [name, schemaObj] of Object.entries(
openApiSpec.components.schemas
)) {
ajv.addSchema(schemaObj, `#/components/schemas/${name}`);
}
// Validate the data against the schema
const validate = ajv.compile(schema);
const valid = validate(jsonData);
return {
valid,
errors: validate.errors,
};
}
// Example usage
const jsonToValidate = {
call_id: "123e4567-e89b-12d3-a456-426614174000",
duration: 2,
success: true,
value: 3,
};
const result = validateAgainstSchema(jsonToValidate, "CallToolResponse");
console.log(result.valid ? "Validation passed!" : "Validation failed!");
if (!result.valid) {
console.log(JSON.stringify(result.errors, null, 2));
}