123456789101112131415161718192021222324252627282930313233 |
- {
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "https://joystream.org/KnownLicenseEntity.schema.json",
- "title": "KnownLicenseEntity",
- "description": "JSON schema for entities based on KnownLicense runtime schema",
- "type": "object",
- "additionalProperties": false,
- "required": [
- "code"
- ],
- "properties": {
- "code": {
- "type": "string",
- "maxLength": 16,
- "description": "Short, commonly recognized code of the licence (ie. CC_BY_SA)"
- },
- "name": {
- "type": "string",
- "maxLength": 64,
- "description": "Full, descriptive name of the license (ie. Creative Commons - Attribution-NonCommercial-NoDerivs)"
- },
- "description": {
- "type": "string",
- "maxLength": 1024,
- "description": "Short description of the license conditions"
- },
- "url": {
- "type": "string",
- "maxLength": 256,
- "description": "An url pointing to full license content"
- }
- }
- }
|