ContentCategoryEntity.schema.json 677 B

1234567891011121314151617181920212223
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/ContentCategoryEntity.schema.json",
  4. "title": "ContentCategoryEntity",
  5. "description": "JSON schema for entities based on ContentCategory runtime schema",
  6. "type": "object",
  7. "additionalProperties": false,
  8. "required": [
  9. "Name"
  10. ],
  11. "properties": {
  12. "Name": {
  13. "type": "string",
  14. "maxLength": 64,
  15. "description": "The name of the category"
  16. },
  17. "Description": {
  18. "type": "string",
  19. "maxLength": 1024,
  20. "description": "The description of the category"
  21. }
  22. }
  23. }