(schema: JSONSchema7)
| 1735 | } |
| 1736 | |
| 1737 | function isPyNullLikeSchema(schema: JSONSchema7): boolean { |
| 1738 | return schema.type === "null" || |
| 1739 | (typeof schema.not === "object" && schema.not !== null && Object.keys(schema.not).length === 0); |
| 1740 | } |
| 1741 | |
| 1742 | function getPyNamedSchemaType( |
| 1743 | schema: JSONSchema7, |
no outgoing calls
no test coverage detected
searching dependent graphs…