VideoMediaEncodingEntity.schema.json 552 B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/VideoMediaEncodingEntity.schema.json",
  4. "title": "VideoMediaEncodingEntity",
  5. "description": "JSON schema for entities based on VideoMediaEncoding runtime schema",
  6. "type": "object",
  7. "additionalProperties": false,
  8. "required": [
  9. "Name"
  10. ],
  11. "properties": {
  12. "Name": {
  13. "type": "string",
  14. "maxLength": 32,
  15. "description": "The name of the encoding format (ie. H264_mpeg4)"
  16. }
  17. }
  18. }