#node.js #json #npm #mongoose #jsonschema
Вопрос:
Поэтому я видел другие посты здесь, в которых задавался тот же вопрос, но все ответы неверны. Ни одна из библиотек не предложила перенести требуемое свойство. Вот пример схемы.
{ "type": "object", "required": [ "cusip_id", "stock_ticker", "company_name", "cik", "exchange", "has_dividends", "sector", "industry" ], "additionalProperties": false, "properties": { "cusip_id": { "type": "string" }, "stock_ticker": { "type": "string" }, "company_name": { "type": "string" }, "cik": { "type": "number" }, "exchange": { "type": "string" }, "has_dividends": { "type": "boolean" }, "sector": { "type": "string" }, "industry": { "type": "string" } } }