123456789101112131415161718192021222324 |
- {
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "https://joystream.org/HttpMediaLocationEntity.schema.json",
- "title": "HttpMediaLocationEntity",
- "description": "JSON schema for entities based on HttpMediaLocation runtime schema",
- "type": "object",
- "additionalProperties": false,
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "type": "string",
- "maxLength": 256,
- "description": "The http url pointing to the media"
- },
- "port": {
- "type": "integer",
- "minimum": 0,
- "maximum": 65535,
- "description": "The port to use when connecting to the http url (defaults to 80)"
- }
- }
- }
|