mappings.json 510 B

1234567891011121314151617
  1. {
  2. "mappings": {
  3. "page": {
  4. "_all": { "enabled": false },
  5. "properties": {
  6. "path": { "type": "string", "analyzer": "kuromoji" },
  7. "body": { "type": "string", "analyzer": "kuromoji" },
  8. "creator": { "type": "string" },
  9. "lastUpdateUser": { "type": "string" },
  10. "likeCount": { "type": "integer" },
  11. "bookmarkCount": { "type": "integer" },
  12. "updated": { "type": "date" },
  13. "is_public": { "type": "boolean" }
  14. }
  15. }
  16. }
  17. }