LanguageEntity.schema.json 684 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/LanguageEntity.schema.json",
  4. "title": "LanguageEntity",
  5. "description": "JSON schema for entities based on Language runtime schema",
  6. "type": "object",
  7. "additionalProperties": false,
  8. "required": [
  9. "Name",
  10. "Code"
  11. ],
  12. "properties": {
  13. "Name": {
  14. "type": "string",
  15. "maxLength": 64,
  16. "description": "The name of the language (ie. English)"
  17. },
  18. "Code": {
  19. "type": "string",
  20. "maxLength": 2,
  21. "description": "ISO 639-1 code of the language (ie. en)"
  22. }
  23. }
  24. }