選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

31 行
494 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "couriers",
  4. "info": {
  5. "name": "Courier"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "name": {
  14. "type": "string"
  15. },
  16. "duration": {
  17. "type": "string"
  18. },
  19. "price": {
  20. "type": "biginteger"
  21. },
  22. "description": {
  23. "type": "richtext"
  24. },
  25. "products": {
  26. "via": "couriers",
  27. "collection": "product"
  28. }
  29. }
  30. }