1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-06-28 00:44:48 +02:00

Updated Webhook Schema (markdown)

fhscholl 2017-11-01 12:18:18 -04:00
parent 9df8424b5f
commit d3f7171046

@ -48,17 +48,13 @@ This page provides a [JSON schema](http://json-schema.org/) for validating event
}
},
"remoteMovie": {
"type": ["array", "null"],
"minItems": 1,
"items": {
"type": "object",
"required": ["title", "year"],
"properties": {
"title": { "type": "string" },
"year": { "type": "integer", "minimum": 1800 },
"tmdbId": { "type": "integer" }.
"imdbId": {"type": "string" }
}
"type": "object",
"required": ["title", "year"],
"properties": {
"title": { "type": "string" },
"year": { "type": "integer", "minimum": 1800 },
"tmdbId": { "type": "integer" }.
"imdbId": {"type": "string" }
}
},
"release": {