We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c78330c commit ec48bffCopy full SHA for ec48bff
1 file changed
src/metadata/hydrate-schema.js
@@ -2,12 +2,12 @@
2
module.exports = function hydrateOutputSchema(schema) {
3
schema.properties = schema.properties || {};
4
schema.required = schema.required || [];
5
- addId(schema);
+ add_id(schema);
6
addStatusInfo(schema);
7
addOwnerInfo(schema);
8
};
9
10
-function addId(schema) {
+function add_id(schema) {
11
const defaultIdField = {
12
type: 'string',
13
format: 'mongoId',
0 commit comments