HttpMediaLocationEntity.schema.json 744 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "https://joystream.org/HttpMediaLocationEntity.schema.json",
  4. "title": "HttpMediaLocationEntity",
  5. "description": "JSON schema for entities based on HttpMediaLocation runtime schema",
  6. "type": "object",
  7. "additionalProperties": false,
  8. "required": [
  9. "url"
  10. ],
  11. "properties": {
  12. "url": {
  13. "type": "string",
  14. "maxLength": 256,
  15. "description": "The http url pointing to the media"
  16. },
  17. "port": {
  18. "type": "integer",
  19. "minimum": 0,
  20. "maximum": 65535,
  21. "description": "The port to use when connecting to the http url (defaults to 80)"
  22. }
  23. }
  24. }