123456789101112131415161718 |
- {
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "https://joystream.org/UserDefinedLicenseEntity.schema.json",
- "title": "UserDefinedLicenseEntity",
- "description": "JSON schema for entities based on UserDefinedLicense runtime schema",
- "type": "object",
- "additionalProperties": false,
- "required": [
- "content"
- ],
- "properties": {
- "content": {
- "type": "string",
- "maxLength": 4096,
- "description": "Custom license content"
- }
- }
- }
|