1234567891011121314151617181920212223 |
- {
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "https://joystream.org/ContentCategoryEntity.schema.json",
- "title": "ContentCategoryEntity",
- "description": "JSON schema for entities based on ContentCategory runtime schema",
- "type": "object",
- "additionalProperties": false,
- "required": [
- "Name"
- ],
- "properties": {
- "Name": {
- "type": "string",
- "maxLength": 64,
- "description": "The name of the category"
- },
- "Description": {
- "type": "string",
- "maxLength": 1024,
- "description": "The description of the category"
- }
- }
- }
|