UserDefinedLicenseEntity.schema.json 534 B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/UserDefinedLicenseEntity.schema.json",
  4. "title": "UserDefinedLicenseEntity",
  5. "description": "JSON schema for entities based on UserDefinedLicense runtime schema",
  6. "type": "object",
  7. "additionalProperties": false,
  8. "required": [
  9. "content"
  10. ],
  11. "properties": {
  12. "content": {
  13. "type": "string",
  14. "maxLength": 4096,
  15. "description": "Custom license content"
  16. }
  17. }
  18. }