123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "$schema": "http://json-schema.org/draft-07/schema",
- "$id": "https://joystream.org/MediaLocationEntity.schema.json",
- "title": "MediaLocationEntity",
- "description": "JSON schema for entities based on MediaLocation runtime schema",
- "type": "object",
- "additionalProperties": false,
- "required": [],
- "properties": {
- "httpMediaLocation": {
- "oneOf": [
- {
- "type": "object",
- "additionalProperties": false,
- "required": [
- "new"
- ],
- "properties": {
- "new": {
- "$ref": "./HttpMediaLocationEntity.schema.json"
- }
- }
- },
- {
- "type": "object",
- "additionalProperties": false,
- "required": [
- "existing"
- ],
- "properties": {
- "existing": {
- "$ref": "../entityReferences/HttpMediaLocationRef.schema.json"
- }
- }
- }
- ],
- "description": "A reference to HttpMediaLocation"
- },
- "joystreamMediaLocation": {
- "oneOf": [
- {
- "type": "object",
- "additionalProperties": false,
- "required": [
- "new"
- ],
- "properties": {
- "new": {
- "$ref": "./JoystreamMediaLocationEntity.schema.json"
- }
- }
- },
- {
- "type": "object",
- "additionalProperties": false,
- "required": [
- "existing"
- ],
- "properties": {
- "existing": {
- "$ref": "../entityReferences/JoystreamMediaLocationRef.schema.json"
- }
- }
- }
- ],
- "description": "A reference to JoystreamMediaLocation"
- }
- }
- }
|