Created
November 8, 2021 10:34
-
-
Save ayhid/75b3a344cab113df7689442e36b48f67 to your computer and use it in GitHub Desktop.
short_movies_to_scrap.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": { | |
"type": "string", | |
}, | |
"originalTitle": { | |
"type": "string", | |
}, | |
"releaseYear": { | |
"type": "integer", | |
}, | |
"overview": { | |
"type": "text", | |
}, | |
"poster": { | |
"type":string | |
}, | |
"photos": { | |
"collection": "string", | |
}, | |
"production_countries": { | |
"collection": "country" | |
}, | |
"production_companies": { | |
"collection": "production-company" | |
}, | |
"cast": { | |
"type": "string", | |
}, | |
"crew": { | |
"type": "component", | |
}, | |
"runtime": { | |
"type": "integer", | |
"pluginOptions": { | |
"i18n": { | |
"localized": true | |
} | |
} | |
}, | |
"terms": { | |
"collection": "term" | |
}, | |
"videos": { | |
"type": "component", | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment