ContentCategorySchema.json 421 B

123456789101112131415161718
  1. {
  2. "className": "ContentCategory",
  3. "newProperties": [
  4. {
  5. "name": "Name",
  6. "description": "The name of the category",
  7. "required": true,
  8. "unique": true,
  9. "property_type": { "Single": { "Text": 64 } }
  10. },
  11. {
  12. "name": "Description",
  13. "description": "The description of the category",
  14. "required": false,
  15. "property_type": { "Single": { "Text": 1024 } }
  16. }
  17. ]
  18. }