KnownLicenseSchema.json 955 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "className": "KnownLicense",
  3. "newProperties": [
  4. {
  5. "name": "code",
  6. "description": "Short, commonly recognized code of the licence (ie. CC_BY_SA)",
  7. "required": true,
  8. "unique": true,
  9. "property_type": {
  10. "Single": { "Text": 16 }
  11. }
  12. },
  13. {
  14. "name": "name",
  15. "description": "Full, descriptive name of the license (ie. Creative Commons - Attribution-NonCommercial-NoDerivs)",
  16. "required": false,
  17. "unique": true,
  18. "property_type": {
  19. "Single": { "Text": 64 }
  20. }
  21. },
  22. {
  23. "name": "description",
  24. "description": "Short description of the license conditions",
  25. "required": false,
  26. "property_type": {
  27. "Single": { "Text": 1024 }
  28. }
  29. },
  30. {
  31. "name": "url",
  32. "description": "An url pointing to full license content",
  33. "required": false,
  34. "property_type": {
  35. "Single": { "Text": 256 }
  36. }
  37. }
  38. ]
  39. }