"""Object's schemas constants.""" EPISODE_FIELDS = [ 'id', 'podcast_id', 'title', 'description', 'season_number', 'episode_number', 'episode_type', 'trailer_type', 'content', 'created_by', 'megaphone_id', 'uuid', 'original_audio_filename', 'planned_pre_roll_count', 'planned_mid_roll_count', 'planned_post_roll_count', 'updated_by', 'created_date', 'updated_date', 'status', 'published_date', 'insertion_points' ] PODCAST_FIELDS = [ 'id', 'network_id', 'title', 'description', 'slug', 'host', 'owner', 'copyright', 'link', 'email', 'explicit', 'show_type', 'language', 'megaphone_id', 'categories', 'uuid', 'created_by', 'updated_by', 'created_date', 'updated_date' ] ASSET_FIELDS = [ 'id', 'user_id', 'asset_type', 'filename', 'object_id', 'object_type', 'created_date', 'updated_date', 'original_filename', 'asset_finals', 'status' ] ASSET_FINAL_FIELDS = [ 'asset_type', 'asset_subtype', 'filename', 'url', 'duration' ] AD_READS_FIELDS = [ 'id', 'campaign_id', 'order_id', 'advertisement_id', 'roll_type', 'title', 'copy_url_path', 'due_date', 'status', 'rejection_reason', 'ad_read_url', 'requires_approval' ] USER_FIELDS = [ 'id', 'uuid', 'email', 'name', 'active', 'language', 'profile_id', 'networks', 'created_by', 'updated_by', 'created_date', 'updated_date' ] INSERTION_POINT_FIELDS = [ 'id', 'episode_id', 'point_type', 'timecode', 'count', 'created_by' ] NETWORK_FIELDS = [ 'id', 'parent_id', 'name', 'active' ]