MCPcopy Index your code
hub / github.com/github/copilot-sdk / isEmptyNotSchema

Function isEmptyNotSchema

scripts/codegen/utils.ts:1062–1064  ·  view source on GitHub ↗
(schema: JSONSchema7)

Source from the content-addressed store, hash-verified

1060}
1061
1062function isEmptyNotSchema(schema: JSONSchema7): boolean {
1063 return !!schema.not && typeof schema.not === "object" && Object.keys(schema.not).length === 0;
1064}
1065
1066function mergeObjectSchemas(schemas: JSONSchema7[]): JSONSchema7 | undefined {
1067 const mergedProperties: Record<string, JSONSchema7Definition> = {};

Callers 1

resolveObjectSchemaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…