huridocs/uwazi

View on GitHub
database/elastic_mapping/toc_properties.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const properties = {
  properties: {
    _id: {
      type: 'keyword',
      fields: {
        raw: { type: 'keyword' },
        sort: { type: 'keyword' },
      },
    },
    indentation: {
      type: 'short',
      index: false,
    },
    range: {
      properties: {
        end: {
          type: 'integer',
          index: false,
        },
        start: {
          type: 'integer',
          index: false,
        },
      },
    },
  },
};

export default properties;