anything.lua 808 B

123456789101112131415161718192021222324252627282930313233
  1. return {
  2. core = true,
  3. properties = {
  4. ext_id = {
  5. uri = "dc:identifier",
  6. label = "External system ID",
  7. type = "string",
  8. },
  9. alt_label = {
  10. uri = "dc:alternative",
  11. label = "Alternative Label",
  12. type = "string",
  13. },
  14. description = {
  15. uri = "dc:description",
  16. label = "Description",
  17. type = "string",
  18. },
  19. last_modified_by = {
  20. uri = "dc:contributor",
  21. label = "Last Updated By",
  22. type = "rel",
  23. range = {agent = true},
  24. },
  25. submitted_by = {
  26. uri = "dc:creator",
  27. label = "Submitted By",
  28. type = "rel",
  29. range = {agent = true},
  30. },
  31. },
  32. }