JoystreamMediaLocationRef.schema.json 830 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/JoystreamMediaLocationReference.schema.json",
  4. "title": "JoystreamMediaLocationReference",
  5. "description": "JSON schema for reference to JoystreamMediaLocation entity based on runtime schema",
  6. "anyOf": [
  7. {
  8. "type": "object",
  9. "additionalProperties": false,
  10. "required": [
  11. "dataObjectId"
  12. ],
  13. "properties": {
  14. "dataObjectId": {
  15. "type": "string",
  16. "maxLength": 48,
  17. "description": "Id of the data object in the Joystream runtime dataDirectory module"
  18. }
  19. }
  20. },
  21. {
  22. "type": "integer",
  23. "minimum": 0
  24. }
  25. ]
  26. }