JoystreamMediaLocationEntity.schema.json 599 B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/JoystreamMediaLocationEntity.schema.json",
  4. "title": "JoystreamMediaLocationEntity",
  5. "description": "JSON schema for entities based on JoystreamMediaLocation runtime schema",
  6. "type": "object",
  7. "additionalProperties": false,
  8. "required": [
  9. "dataObjectId"
  10. ],
  11. "properties": {
  12. "dataObjectId": {
  13. "type": "string",
  14. "maxLength": 48,
  15. "description": "Id of the data object in the Joystream runtime dataDirectory module"
  16. }
  17. }
  18. }