mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-05 11:00:08 +09:00
Added playlist schema, required fields
This commit is contained in:
parent
da3b8cae0d
commit
bc3c190039
102
docs/schema.json
102
docs/schema.json
@ -1,11 +1,104 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/schema#",
|
|
||||||
"title": "Youtube-dl JSON output schema",
|
"title": "Youtube-dl JSON output schema",
|
||||||
"description": "This schema is produced when youtube-dl -J is invoked",
|
"description": "This schema is produced when youtube-dl -J is invoked",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
|
"single-video": {
|
||||||
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"required": [
|
||||||
|
"formats"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"required": [
|
||||||
|
"url"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/json-output"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/format"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"playlist": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"uploader_url": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"uploader": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extractor_key": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extractor": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"uploader_id": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"webpage_url_basename": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"webpage_url": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"entries": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/definitions/single-video"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"json-output": {
|
"json-output": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"id": "urn:jsonschema:youtube-dl-json-output",
|
"id": "urn:jsonschema:youtube-dl-json-output",
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"title"
|
||||||
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"id": {
|
"id": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@ -265,6 +358,7 @@
|
|||||||
"playlist_index": {
|
"playlist_index": {
|
||||||
"type": [
|
"type": [
|
||||||
"string",
|
"string",
|
||||||
|
"integer",
|
||||||
"null"
|
"null"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -841,12 +935,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"allOf": [
|
"anyOf": [
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/json-output"
|
"$ref": "#/definitions/single-video"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/format"
|
"$ref": "#/definitions/playlist"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user