├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── docs ├── img │ ├── conditional-content-data-model.png │ └── content-zone-rendering-logic.png └── proposals │ ├── 2017-05-10 - Audio Transcription.md │ ├── 2017-08-03_Source_Metadata_on_Content_Operations.md │ ├── 2017-09-25_Author.md │ ├── 2017-10-16_App_Name_And_Priority.md │ ├── 2017-11-17_-_Ratings.md │ ├── 2017-12-18 - Video-Subtitle.md │ ├── 2018-01-08_-_MultiSite.md │ ├── 2018-01-16 - Credits-HostTalent-Contributors.md │ ├── 2018-01-19_divider_element.md │ ├── 2018-02-06_Line_Count_Planning.md │ ├── 2018-02-21-Distributor.md │ ├── 2018-04-24_Handout-and-Stock.md │ ├── 2018-06-04_Collections_Promo_References_Aliases.md │ ├── 2018-08-07-Task_Prompted_Media.md │ ├── 2018-10-16 - Referenced Distributor.md │ ├── 2018-10-29 Restricted_Content.md │ ├── 2018-11-01_-Alt_Credits.md │ ├── 2018-11-13-Raw-HTML-PromoItem.md │ ├── 2018-12-11_embargo.md │ ├── 2018-12-18 - Image Type Proposal.md │ ├── 2019-01-09-Image-Alt-Text-Proposal.md │ ├── 2019-02-08 - Author-Type.md │ ├── 2019-02-08 - Recommended View.md │ ├── 2019-02-14_Dropcap.md │ ├── 2019-03-18-Links-List.md │ ├── 2019-04-02_Custom_Embeds.md │ ├── 2019-05-13_Tags_Subtype.md │ ├── 2019-07-12_Image_Focal_Point_Proposal.md │ ├── 2019-09-30 - Content by reference in Link Lists.md │ ├── 2019-10-22-Geo-Restriction-Ids.md │ ├── 2019-10-22_Linkless_Link_Lists.md │ ├── 2020-02-20-Planned_Actual_Char_Count.md │ ├── 2020-07-27-Document_Contributors.md │ ├── 2020-08-12-Collection_Query_Backfill.md │ ├── 2022-06-27_Auth_Proposal.md │ ├── 2022-06-27_SEO_Filename_proposal.md │ ├── 2022-06-31 - Conditional Content.md │ ├── 2024-03-01_new_fields_for_content_analysis.md │ ├── 2025-05-07_Add_new_external_cannonical_url_field.md │ └── SAMPLE - 2017-04-19 - Recipe Element.md ├── lib ├── ans.js ├── cli.js ├── schemas.js ├── transform_utils.js ├── transforms.js ├── upvert │ ├── 0.10.0.js │ ├── 0.10.1.js │ ├── 0.10.10.js │ ├── 0.10.11.js │ ├── 0.10.2.js │ ├── 0.10.3.js │ ├── 0.10.4.js │ ├── 0.10.5.js │ ├── 0.10.6.js │ ├── 0.10.7.js │ ├── 0.10.8.js │ ├── 0.10.9.js │ ├── 0.5.0.js │ ├── 0.5.1.js │ ├── 0.5.2.js │ ├── 0.5.3.js │ ├── 0.5.4.js │ ├── 0.5.5.js │ ├── 0.5.6.js │ ├── 0.5.7.js │ ├── 0.5.8.js │ ├── 0.5.9.js │ ├── 0.6.0.js │ ├── 0.6.1.js │ ├── 0.6.2.js │ ├── 0.7.0.js │ ├── 0.7.1.js │ ├── 0.8.0.js │ ├── 0.8.1.js │ ├── 0.9.0.js │ ├── 0.9.1.js │ └── template.js ├── validator.js ├── version.js └── versions.json ├── package.json ├── src └── main │ └── resources │ └── schema │ ├── ans │ ├── 0.10.0 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.1 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.10 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── content_zone.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_auth.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_contributors.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_seo_filename.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_variations.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── category.json │ │ │ ├── content_element.json │ │ │ ├── content_topic.json │ │ │ ├── custom_category.json │ │ │ ├── custom_entity.json │ │ │ ├── dictionary.json │ │ │ ├── entity.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── variant.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.11 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── content_zone.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_auth.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_url_external.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_contributors.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_seo_filename.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_variations.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── category.json │ │ │ ├── content_element.json │ │ │ ├── content_topic.json │ │ │ ├── custom_category.json │ │ │ ├── custom_entity.json │ │ │ ├── dictionary.json │ │ │ ├── entity.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── variant.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.12 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── content_zone.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_auth.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_url_external.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_contributors.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_seo_filename.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_variations.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── category.json │ │ │ ├── content_element.json │ │ │ ├── content_topic.json │ │ │ ├── custom_category.json │ │ │ ├── custom_entity.json │ │ │ ├── dictionary.json │ │ │ ├── entity.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── variant.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.2 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.3 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.4 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.5 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.6 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.7 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_contributors.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.8 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_contributors.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.10.9 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── content_zone.json │ │ │ ├── correction.json │ │ │ ├── custom_embed.json │ │ │ ├── divider.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── link_list.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_auth.json │ │ │ ├── trait_block_properties.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_contributors.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_dynamic_items.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_focal_point.json │ │ │ ├── trait_gallery_properties.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_rendering_guides.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_seo_filename.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_variations.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── variant.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.0 │ │ ├── audio.json │ │ ├── content.json │ │ ├── gallery.json │ │ ├── image.json │ │ ├── results.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ └── video.json │ ├── 0.5.1 │ │ ├── audio.json │ │ ├── content.json │ │ ├── gallery.json │ │ ├── image.json │ │ ├── results.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ └── video.json │ ├── 0.5.2 │ │ ├── audio.json │ │ ├── content.json │ │ ├── gallery.json │ │ ├── image.json │ │ ├── results.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ └── video.json │ ├── 0.5.3 │ │ ├── _diffs.txt │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.4 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.5 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.6 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── oembed.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.7 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ └── trait_version.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── oembed_response.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.8 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.5.9 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── reference.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.6.0 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.6.1 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.6.2 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.7.0 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.7.1 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.8.0 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.8.1 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.9.0 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── 0.9.1 │ │ ├── audio.json │ │ ├── author_operation.json │ │ ├── clavis_operation.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_operation.json │ │ ├── gallery.json │ │ ├── gallery_operation.json │ │ ├── image.json │ │ ├── image_operation.json │ │ ├── planning_note_operation.json │ │ ├── platform_pitch_operation.json │ │ ├── publication_pitch_operation.json │ │ ├── redirect.json │ │ ├── restricted_content.json │ │ ├── results.json │ │ ├── site_operation.json │ │ ├── story.json │ │ ├── story_elements │ │ │ ├── blockquote.json │ │ │ ├── code.json │ │ │ ├── correction.json │ │ │ ├── element_group.json │ │ │ ├── endorsement.json │ │ │ ├── header.json │ │ │ ├── interstitial_link.json │ │ │ ├── list.json │ │ │ ├── list_element.json │ │ │ ├── numeric_rating.json │ │ │ ├── quote.json │ │ │ ├── raw_html.json │ │ │ ├── table.json │ │ │ └── text.json │ │ ├── story_operation.json │ │ ├── traits │ │ │ ├── trait_additional_properties.json │ │ │ ├── trait_address.json │ │ │ ├── trait_alignment.json │ │ │ ├── trait_alt_text.json │ │ │ ├── trait_app_name.json │ │ │ ├── trait_canonical_url.json │ │ │ ├── trait_canonical_website.json │ │ │ ├── trait_channel.json │ │ │ ├── trait_comments.json │ │ │ ├── trait_content_aliases.json │ │ │ ├── trait_content_elements.json │ │ │ ├── trait_content_restrictions.json │ │ │ ├── trait_copyright.json │ │ │ ├── trait_corrections.json │ │ │ ├── trait_created_date.json │ │ │ ├── trait_credits.json │ │ │ ├── trait_date.json │ │ │ ├── trait_description.json │ │ │ ├── trait_display_date.json │ │ │ ├── trait_distributor.json │ │ │ ├── trait_editable.json │ │ │ ├── trait_editor_note.json │ │ │ ├── trait_first_publish_date.json │ │ │ ├── trait_geo.json │ │ │ ├── trait_headlines.json │ │ │ ├── trait_id.json │ │ │ ├── trait_image_type.json │ │ │ ├── trait_label.json │ │ │ ├── trait_last_updated_date.json │ │ │ ├── trait_locale.json │ │ │ ├── trait_location.json │ │ │ ├── trait_owner.json │ │ │ ├── trait_pitches.json │ │ │ ├── trait_planning.json │ │ │ ├── trait_platform_pitch.json │ │ │ ├── trait_platform_pitch_event.json │ │ │ ├── trait_priority.json │ │ │ ├── trait_promo_items.json │ │ │ ├── trait_publication_pitch.json │ │ │ ├── trait_publication_pitch_event.json │ │ │ ├── trait_publish_date.json │ │ │ ├── trait_publishing.json │ │ │ ├── trait_related_content.json │ │ │ ├── trait_revision.json │ │ │ ├── trait_short_url.json │ │ │ ├── trait_slug.json │ │ │ ├── trait_social.json │ │ │ ├── trait_source.json │ │ │ ├── trait_status.json │ │ │ ├── trait_subheadlines.json │ │ │ ├── trait_subtype.json │ │ │ ├── trait_syndication.json │ │ │ ├── trait_taxonomy.json │ │ │ ├── trait_tracking.json │ │ │ ├── trait_vanity_credits.json │ │ │ ├── trait_version.json │ │ │ ├── trait_voice_transcripts.json │ │ │ ├── trait_website.json │ │ │ ├── trait_website_url.json │ │ │ ├── trait_websites.json │ │ │ └── trait_workflow.json │ │ ├── url_operation.json │ │ ├── utils │ │ │ ├── audio_stream.json │ │ │ ├── author.json │ │ │ ├── auxiliary.json │ │ │ ├── content_element.json │ │ │ ├── dictionary.json │ │ │ ├── keyword.json │ │ │ ├── named_entity.json │ │ │ ├── oembed_response.json │ │ │ ├── promo_reference.json │ │ │ ├── reference.json │ │ │ ├── section.json │ │ │ ├── site.json │ │ │ ├── story-summary.json │ │ │ ├── table_cell.json │ │ │ ├── table_row.json │ │ │ ├── tag.json │ │ │ ├── topic.json │ │ │ ├── video_stream.json │ │ │ └── video_subtitle.json │ │ ├── video.json │ │ └── video_operation.json │ ├── v0_2 │ │ ├── address.json │ │ ├── content.json │ │ ├── credit.json │ │ ├── geo.json │ │ ├── image.json │ │ ├── keyword.json │ │ ├── media.json │ │ ├── story.json │ │ ├── taxonomy.json │ │ ├── trait_copyrighted.json │ │ ├── trait_credited.json │ │ ├── trait_dated.json │ │ ├── trait_id.json │ │ ├── trait_locale.json │ │ ├── trait_located.json │ │ ├── video-stream.json │ │ ├── video-subtitles.json │ │ └── video.json │ ├── v0_3 │ │ ├── address.json │ │ ├── ans.json │ │ ├── audio.json │ │ ├── blockquote.json │ │ ├── code.json │ │ ├── collection.json │ │ ├── content.json │ │ ├── content_element.json │ │ ├── credit.json │ │ ├── gallery.json │ │ ├── geo.json │ │ ├── header.json │ │ ├── image.json │ │ ├── keyword.json │ │ ├── list.json │ │ ├── list_element.json │ │ ├── list_item.json │ │ ├── media.json │ │ ├── oembed.json │ │ ├── ordered_list.json │ │ ├── raw_html.json │ │ ├── social.json │ │ ├── story-operation.json │ │ ├── story-summary.json │ │ ├── story.json │ │ ├── table.json │ │ ├── taxonomy.json │ │ ├── text.json │ │ ├── trait_channel.json │ │ ├── trait_copyrighted.json │ │ ├── trait_credited.json │ │ ├── trait_dated.json │ │ ├── trait_id.json │ │ ├── trait_locale.json │ │ ├── trait_located.json │ │ ├── trait_typed.json │ │ ├── unordered_list.json │ │ ├── video-stream.json │ │ ├── video-subtitles.json │ │ └── video.json │ └── v0_4 │ │ ├── address.json │ │ ├── audio.json │ │ ├── author.json │ │ ├── collection.json │ │ ├── content-element.json │ │ ├── content.json │ │ ├── gallery.json │ │ ├── geo.json │ │ ├── headlines.json │ │ ├── image.json │ │ ├── keyword.json │ │ ├── section.json │ │ ├── social.json │ │ ├── story-elements │ │ ├── blockquote.json │ │ ├── code.json │ │ ├── image-element.json │ │ ├── list-element.json │ │ ├── list.json │ │ ├── oembed.json │ │ ├── raw-html.json │ │ ├── reference.json │ │ ├── story-element.json │ │ ├── table.json │ │ └── text.json │ │ ├── story-operation.json │ │ ├── story.json │ │ ├── summaries │ │ ├── gallery-summary.json │ │ ├── results.json │ │ ├── story-summary.json │ │ └── video-summary.json │ │ ├── tag.json │ │ ├── trait-channel.json │ │ ├── trait-content-elements.json │ │ ├── trait-copyright.json │ │ ├── trait-credits.json │ │ ├── trait-date.json │ │ ├── trait-id.json │ │ ├── trait-locale.json │ │ ├── trait-location.json │ │ ├── trait-owner.json │ │ ├── trait-planning.json │ │ ├── trait-subtype.json │ │ ├── trait-taxonomy.json │ │ ├── trait-type.json │ │ ├── trait-version.json │ │ ├── video-stream.json │ │ ├── video-subtitles.json │ │ └── video.json │ └── websked │ └── v0_1 │ ├── README.md │ └── schema.json └── tests ├── fixtures ├── schema │ ├── 0.10.0 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.1 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.10 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-auth-format.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.11 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-auth-format.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.12 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-auth-format.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.2 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.3 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.4 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.5 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.6 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.7 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.8 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.10.9 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── custom_embed-fixture-bad-1.json │ │ ├── custom_embed-fixture-bad-2.json │ │ ├── custom_embed-fixture-good.json │ │ ├── divider-fixture-bad.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── geo-restriction-fixture-bad-length.json │ │ ├── geo-restrictions-fixture-bad-empty.json │ │ ├── geo-restrictions-fixture-bad-property.json │ │ ├── geo-restrictions-fixture-bad-type.json │ │ ├── geo-restrictions-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-bad-auth-format.json │ │ ├── image-fixture-bad-focal-point-null-value.json │ │ ├── image-fixture-bad-focal-point-out-of-range.json │ │ ├── image-fixture-bad-focal-point-text-value.json │ │ ├── image-fixture-bad-focal-point-wrong-prop-name.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good-2.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── link-list-fixture-bad.json │ │ ├── link-list-fixture-good-all-text.json │ │ ├── link-list-fixture-good-text.json │ │ ├── link-list-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-dropcap.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-dropcap.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── tag-fixture-bad-no-text.json │ │ ├── tag-fixture-bad-subtype.json │ │ ├── tag-fixture-bad-type.json │ │ ├── tag-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-bad-empty-geo-restriction.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.0 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.1 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.2 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.3 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.4 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.5 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.6 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.7 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.8 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.5.9 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── promo-items-bad-no-basic.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.6.0 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.6.1 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.6.2 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.7.0 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.7.1 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.8.0 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.8.1 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.9.0 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ ├── 0.9.1 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad-no-source.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good-streams.json │ │ ├── audio-fixture-good.json │ │ ├── author-fixture-good.json │ │ ├── auxiliary-fixture-bad-missing-uid.json │ │ ├── auxiliary-fixture-good-optional-name.json │ │ ├── auxiliary-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── collection-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── content-operation-good.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── element-group-fixture-good.json │ │ ├── endorsement-fixture-bad-missing-prop.json │ │ ├── endorsement-fixture-bad-type-mismatch.json │ │ ├── endorsement-fixture-good.json │ │ ├── gallery-fixture-good-no-images.json │ │ ├── gallery-fixture-good.json │ │ ├── gallery-operation-create.json │ │ ├── gallery-operation-delete.json │ │ ├── gallery-operation-update.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-bad.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-bad-alignment.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── image-operation-create.json │ │ ├── image-operation-delete.json │ │ ├── image-operation-update.json │ │ ├── interstitial-link-fixture-bad.json │ │ ├── interstitial-link-fixture-good.json │ │ ├── keyword-fixture-bad-missing-score.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-bad-score-type.json │ │ ├── keyword-fixture-bad-tag-type.json │ │ ├── keyword-fixture-good.json │ │ ├── label-bad-arbitrary-properties.json │ │ ├── label-bad-field-name-with-dots.json │ │ ├── label-good.json │ │ ├── media-fixture-good.json │ │ ├── named-entity-fixture-bad-missing-id.json │ │ ├── named-entity-fixture-good-missing-score.json │ │ ├── named-entity-fixture-good.json │ │ ├── numeric-rating-fixture-bad.json │ │ ├── numeric-rating-fixture-good-only-rating.json │ │ ├── numeric-rating-fixture-good.json │ │ ├── oembed-response-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── quote-fixture-bad-citation.json │ │ ├── quote-fixture-bad-content-elements.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── redirect-fixture-bad.json │ │ ├── redirect-fixture-good.json │ │ ├── reference-fixture-bad-addl-props.json │ │ ├── reference-fixture-bad-array.json │ │ ├── reference-fixture-bad-more-addl-props.json │ │ ├── reference-fixture-good.json │ │ ├── restricted-content-fixture-bad-referent.json │ │ ├── restricted-content-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── source-bad-extra-properties.json │ │ ├── source-good.json │ │ ├── story-fixture-bad-corrections.json │ │ ├── story-fixture-bad-embargo.json │ │ ├── story-fixture-bad-extra-properties.json │ │ ├── story-fixture-bad-referenced-distributor-mode.json │ │ ├── story-fixture-bad-referenced-distributor-reference-id.json │ │ ├── story-fixture-bad-sections-addl-properties.json │ │ ├── story-fixture-bad-tag-strings.json │ │ ├── story-fixture-bad-taxonomy-additional-tasks.json │ │ ├── story-fixture-bad-wrong-type.json │ │ ├── story-fixture-bad-wrong-version.json │ │ ├── story-fixture-good-distributor-handout.json │ │ ├── story-fixture-good-distributor.json │ │ ├── story-fixture-good-embargo.json │ │ ├── story-fixture-good-multi-site.json │ │ ├── story-fixture-good-mystery-element.json │ │ ├── story-fixture-good-referenced-distributor.json │ │ ├── story-fixture-good-taxonomy.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-bad.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-additional-properties.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── topic-fixture-bad-id-type.json │ │ ├── topic-fixture-bad-missing-uid.json │ │ ├── topic-fixture-good-missing-name.json │ │ ├── topic-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── trait-pitch-event-fixture-numeric-status.json │ │ ├── trait-pitch-event-fixture-space-in-status.json │ │ ├── trait-pitch-event-fixture-uppercase-status.json │ │ ├── trait-pitches-fixture-good.json │ │ ├── trait-planning-fixture-good.json │ │ ├── trait-promo-item-raw-html-bad.json │ │ ├── trait-promo-item-raw-html-goog.json │ │ ├── trait-publishing-fixture-bad-mismatched-operations.json │ │ ├── trait-related-content-bad-attached-redirect-has-multiple-items.json │ │ ├── trait-related-content-bad-attached-redirect-is-not-redirect.json │ │ ├── trait-workflow-fixture-bad-code.json │ │ ├── trait-workflow-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── url-operation-insert-redirect.json │ │ ├── video-fixture-good-attached-redirect.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json │ └── v0_4 │ │ ├── address-fixture-bad-po-box.json │ │ ├── address-fixture-good.json │ │ ├── audio-fixture-bad.json │ │ ├── audio-fixture-good-custom.json │ │ ├── audio-fixture-good-settings.json │ │ ├── audio-fixture-good.json │ │ ├── bq-fixture-bad.json │ │ ├── bq-fixture-good.json │ │ ├── code-fixture-good.json │ │ ├── content-fixture-good.json │ │ ├── content-fixture-no-dates.json │ │ ├── credit-fixture-bad-missing-name.json │ │ ├── credit-fixture-good.json │ │ ├── geo-fixture-bad-not-a-number.json │ │ ├── geo-fixture-good.json │ │ ├── header-fixture-good.json │ │ ├── image-fixture-good-no-height-width.json │ │ ├── image-fixture-good.json │ │ ├── keyword-fixture-bad-numeric-frequency.json │ │ ├── keyword-fixture-good.json │ │ ├── media-fixture-good.json │ │ ├── oembed-fixture-bad.json │ │ ├── oembed-fixture-good.json │ │ ├── operation-create.json │ │ ├── operation-delete.json │ │ ├── operation-publish-edition.json │ │ ├── operation-unpublish-edition.json │ │ ├── operation-update.json │ │ ├── raw-html-fixture-bad.json │ │ ├── raw-html-fixture-good.json │ │ ├── social-fixture-good.json │ │ ├── story-fixture-good.json │ │ ├── story-fixture-references.json │ │ ├── story-fixture-tiny-house.json │ │ ├── table-fixture-good.json │ │ ├── taxonomy-fixture-good.json │ │ ├── text-fixture-bad.json │ │ ├── text-fixture-good-channels.json │ │ ├── text-fixture-good.json │ │ ├── trait-copyrighted-fixture-good.json │ │ ├── trait-credited-fixture-bad-missing-credit.json │ │ ├── trait-credited-fixture-good.json │ │ ├── trait-dated-fixture-bad-date-format.json │ │ ├── trait-dated-fixture-good.json │ │ ├── trait-id-fixture-bad-missing-id.json │ │ ├── trait-id-fixture-good.json │ │ ├── trait-locale-fixture-good.json │ │ ├── trait-located-fixture-good.json │ │ ├── ul-fixture-bad.json │ │ ├── ul-fixture-good-nested.json │ │ ├── ul-fixture-good.json │ │ ├── video-fixture-good.json │ │ ├── video-fixture-nationals.json │ │ ├── video-stream-fixture-good.json │ │ └── video-subtitles-fixture-good.json └── transforms │ ├── 0.10.0 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.1 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.10 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.11 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.2 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.3 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.4 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.5 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.6 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.7 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.8 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.10.9 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.4.5 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good.json │ ├── story-fixture-references.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.4.6 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good.json │ ├── story-fixture-references.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.4.7 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good.json │ ├── story-fixture-references.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.0 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good.json │ ├── story-fixture-misspelled-additional-properties.json │ ├── story-fixture-references.json │ ├── story-fixture-table.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.1 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good.json │ ├── story-fixture-references.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.2 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.3 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-planning.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-with-scheduling-without-additional-properties-with-story-length-without-addtional-properties.json │ ├── story-fixture-good.json │ ├── story-fixture-references.json │ ├── story-fixture-tiny-house.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.4 │ ├── gallery-fixture.json │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.5 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.6 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.7 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-invalid.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.8 │ ├── author-fixture.json │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.5.9 │ ├── author-fixture.json │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.6.0 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.6.1 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.6.2 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.7.0 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.7.1 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.8.0 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.8.1 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ ├── 0.9.0 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json │ └── 0.9.1 │ ├── image-fixture-good-no-height-width.json │ ├── image-fixture-good.json │ ├── story-fixture-bad-mixed-sub-document-versions.json │ ├── story-fixture-good-mystery-element.json │ ├── story-fixture-good-old-labels-recursive.json │ ├── story-fixture-good-old-style-label-and-source.json │ ├── story-fixture-good-references-2.json │ ├── story-fixture-good-references-3.json │ ├── story-fixture-good-slugs.json │ ├── story-fixture-good-tags.json │ ├── story-fixture-good.json │ ├── story-fixture-oembed.json │ ├── story-fixture-planning-status-code-is-string.json │ ├── story-fixture-planning.json │ ├── story-fixture-promo-items-empty.json │ ├── story-fixture-promo-items-no-basic.json │ ├── story-fixture-references-with-channel.json │ ├── story-fixture-references.json │ ├── story-fixture-taxonomy-bugs.json │ ├── story-fixture-tiny-house.json │ ├── story-fixture-versions.json │ ├── video-fixture-good-related-content-redirect.json │ ├── video-fixture-good.json │ └── video-fixture-nationals.json ├── schema-tests-010.js ├── schema-tests-04.js ├── schema-tests-05.js ├── schema-tests-06.js ├── schema-tests-07.js ├── schema-tests-08.js ├── schema-tests-09.js ├── transform-tests.js └── validator.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /docs/img/conditional-content-data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/img/conditional-content-data-model.png -------------------------------------------------------------------------------- /docs/img/content-zone-rendering-logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/img/content-zone-rendering-logic.png -------------------------------------------------------------------------------- /docs/proposals/2017-05-10 - Audio Transcription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2017-05-10 - Audio Transcription.md -------------------------------------------------------------------------------- /docs/proposals/2017-09-25_Author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2017-09-25_Author.md -------------------------------------------------------------------------------- /docs/proposals/2017-10-16_App_Name_And_Priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2017-10-16_App_Name_And_Priority.md -------------------------------------------------------------------------------- /docs/proposals/2017-11-17_-_Ratings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2017-11-17_-_Ratings.md -------------------------------------------------------------------------------- /docs/proposals/2017-12-18 - Video-Subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2017-12-18 - Video-Subtitle.md -------------------------------------------------------------------------------- /docs/proposals/2018-01-08_-_MultiSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-01-08_-_MultiSite.md -------------------------------------------------------------------------------- /docs/proposals/2018-01-19_divider_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-01-19_divider_element.md -------------------------------------------------------------------------------- /docs/proposals/2018-02-06_Line_Count_Planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-02-06_Line_Count_Planning.md -------------------------------------------------------------------------------- /docs/proposals/2018-02-21-Distributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-02-21-Distributor.md -------------------------------------------------------------------------------- /docs/proposals/2018-04-24_Handout-and-Stock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-04-24_Handout-and-Stock.md -------------------------------------------------------------------------------- /docs/proposals/2018-08-07-Task_Prompted_Media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-08-07-Task_Prompted_Media.md -------------------------------------------------------------------------------- /docs/proposals/2018-10-29 Restricted_Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-10-29 Restricted_Content.md -------------------------------------------------------------------------------- /docs/proposals/2018-11-01_-Alt_Credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-11-01_-Alt_Credits.md -------------------------------------------------------------------------------- /docs/proposals/2018-11-13-Raw-HTML-PromoItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-11-13-Raw-HTML-PromoItem.md -------------------------------------------------------------------------------- /docs/proposals/2018-12-11_embargo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-12-11_embargo.md -------------------------------------------------------------------------------- /docs/proposals/2018-12-18 - Image Type Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2018-12-18 - Image Type Proposal.md -------------------------------------------------------------------------------- /docs/proposals/2019-02-08 - Author-Type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-02-08 - Author-Type.md -------------------------------------------------------------------------------- /docs/proposals/2019-02-08 - Recommended View.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-02-08 - Recommended View.md -------------------------------------------------------------------------------- /docs/proposals/2019-02-14_Dropcap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-02-14_Dropcap.md -------------------------------------------------------------------------------- /docs/proposals/2019-03-18-Links-List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-03-18-Links-List.md -------------------------------------------------------------------------------- /docs/proposals/2019-04-02_Custom_Embeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-04-02_Custom_Embeds.md -------------------------------------------------------------------------------- /docs/proposals/2019-05-13_Tags_Subtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-05-13_Tags_Subtype.md -------------------------------------------------------------------------------- /docs/proposals/2019-10-22-Geo-Restriction-Ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-10-22-Geo-Restriction-Ids.md -------------------------------------------------------------------------------- /docs/proposals/2019-10-22_Linkless_Link_Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2019-10-22_Linkless_Link_Lists.md -------------------------------------------------------------------------------- /docs/proposals/2020-07-27-Document_Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2020-07-27-Document_Contributors.md -------------------------------------------------------------------------------- /docs/proposals/2022-06-27_Auth_Proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2022-06-27_Auth_Proposal.md -------------------------------------------------------------------------------- /docs/proposals/2022-06-27_SEO_Filename_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2022-06-27_SEO_Filename_proposal.md -------------------------------------------------------------------------------- /docs/proposals/2022-06-31 - Conditional Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/docs/proposals/2022-06-31 - Conditional Content.md -------------------------------------------------------------------------------- /lib/ans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/ans.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/schemas.js -------------------------------------------------------------------------------- /lib/transform_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/transform_utils.js -------------------------------------------------------------------------------- /lib/transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/transforms.js -------------------------------------------------------------------------------- /lib/upvert/0.10.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.0.js -------------------------------------------------------------------------------- /lib/upvert/0.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.1.js -------------------------------------------------------------------------------- /lib/upvert/0.10.10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.10.js -------------------------------------------------------------------------------- /lib/upvert/0.10.11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.11.js -------------------------------------------------------------------------------- /lib/upvert/0.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.2.js -------------------------------------------------------------------------------- /lib/upvert/0.10.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.3.js -------------------------------------------------------------------------------- /lib/upvert/0.10.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.4.js -------------------------------------------------------------------------------- /lib/upvert/0.10.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.5.js -------------------------------------------------------------------------------- /lib/upvert/0.10.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.6.js -------------------------------------------------------------------------------- /lib/upvert/0.10.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.7.js -------------------------------------------------------------------------------- /lib/upvert/0.10.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.8.js -------------------------------------------------------------------------------- /lib/upvert/0.10.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.10.9.js -------------------------------------------------------------------------------- /lib/upvert/0.5.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.0.js -------------------------------------------------------------------------------- /lib/upvert/0.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.1.js -------------------------------------------------------------------------------- /lib/upvert/0.5.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.2.js -------------------------------------------------------------------------------- /lib/upvert/0.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.3.js -------------------------------------------------------------------------------- /lib/upvert/0.5.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.4.js -------------------------------------------------------------------------------- /lib/upvert/0.5.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.5.js -------------------------------------------------------------------------------- /lib/upvert/0.5.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.6.js -------------------------------------------------------------------------------- /lib/upvert/0.5.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.7.js -------------------------------------------------------------------------------- /lib/upvert/0.5.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.8.js -------------------------------------------------------------------------------- /lib/upvert/0.5.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.5.9.js -------------------------------------------------------------------------------- /lib/upvert/0.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.6.0.js -------------------------------------------------------------------------------- /lib/upvert/0.6.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.6.1.js -------------------------------------------------------------------------------- /lib/upvert/0.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.6.2.js -------------------------------------------------------------------------------- /lib/upvert/0.7.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.7.0.js -------------------------------------------------------------------------------- /lib/upvert/0.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.7.1.js -------------------------------------------------------------------------------- /lib/upvert/0.8.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.8.0.js -------------------------------------------------------------------------------- /lib/upvert/0.8.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.8.1.js -------------------------------------------------------------------------------- /lib/upvert/0.9.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.9.0.js -------------------------------------------------------------------------------- /lib/upvert/0.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/0.9.1.js -------------------------------------------------------------------------------- /lib/upvert/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/upvert/template.js -------------------------------------------------------------------------------- /lib/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/validator.js -------------------------------------------------------------------------------- /lib/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/version.js -------------------------------------------------------------------------------- /lib/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/lib/versions.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/package.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.0/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.0/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.1/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.1/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.10/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.10/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.11/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.11/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.12/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.12/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.2/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.3/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.3/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.4/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.4/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.5/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.5/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.6/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.6/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/redirect.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/utils/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/utils/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.7/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.7/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.8/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.8/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.8/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.8/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.8/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.8/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.8/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.8/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.9/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.9/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.9/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.9/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.9/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.9/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.10.9/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.10.9/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.0/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.0/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.1/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.1/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.2/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/_diffs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/_diffs.txt -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.3/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.3/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.4/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.4/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.5/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.5/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.6/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.6/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.7/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.7/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.8/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.8/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.5.9/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.5.9/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.0/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.0/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.1/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.1/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.6.2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.6.2/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.0/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.0/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.7.1/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.7.1/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.0/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.0/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.8.1/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.8.1/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.0/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.0/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/results.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/0.9.1/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/0.9.1/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/address.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/credit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/credit.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/geo.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/keyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/keyword.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/media.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/taxonomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/taxonomy.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/trait_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/trait_id.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_2/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_2/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/address.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/ans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/ans.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/code.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/credit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/credit.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/geo.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/header.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/keyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/keyword.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/list.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/media.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/oembed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/oembed.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/raw_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/raw_html.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/social.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/table.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/taxonomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/taxonomy.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/text.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/trait_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/trait_id.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_3/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_3/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/address.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/audio.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/author.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/author.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/content.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/gallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/gallery.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/geo.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/image.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/keyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/keyword.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/section.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/social.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/story.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/tag.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/trait-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/trait-id.json -------------------------------------------------------------------------------- /src/main/resources/schema/ans/v0_4/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/ans/v0_4/video.json -------------------------------------------------------------------------------- /src/main/resources/schema/websked/v0_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/src/main/resources/schema/websked/v0_1/README.md -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.0/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.0/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.0/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.1/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.1/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.1/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.10/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.10/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.10/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.11/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.11/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.11/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.12/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.12/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.12/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.2/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.2/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.2/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.3/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.3/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.3/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.4/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.4/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.4/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.5/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.5/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.5/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.6/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.6/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.6/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.7/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.7/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.7/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.8/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.8/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.8/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.9/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.10.9/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.10.9/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.0/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.0/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.0/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.1/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.1/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.1/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.2/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.2/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.2/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.3/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.3/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.3/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.4/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.4/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.4/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.5/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.5/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.5/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.6/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.6/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.6/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.7/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.7/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.7/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.8/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.8/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.8/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.8/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.8/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.9/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.9/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.9/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.5.9/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.5.9/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.0/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.0/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.0/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.0/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.0/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.1/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.1/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.1/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.1/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.1/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.2/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.2/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.2/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.6.2/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.6.2/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.0/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.0/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.0/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.0/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.0/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.1/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.1/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.1/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.7.1/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.7.1/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.0/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.0/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.0/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.0/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.0/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.1/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.1/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.1/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.8.1/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.8.1/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.0/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.0/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.0/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.0/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.0/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.1/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/label-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.1/label-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/source-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.1/source-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-pitch-event-fixture-numeric-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "pitched1" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-pitch-event-fixture-space-in-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "not watching" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-pitch-event-fixture-uppercase-status.json: -------------------------------------------------------------------------------- 1 | { 2 | "status": "PITCHED" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/trait-workflow-fixture-bad-code.json: -------------------------------------------------------------------------------- 1 | { 2 | "status_code": 0 3 | } -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/0.9.1/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/0.9.1/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/audio-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/bq-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/bq-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/v0_4/bq-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/geo-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/v0_4/geo-fixture-good.json -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/oembed-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/operation-create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/v0_4/operation-create.json -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/operation-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/v0_4/operation-delete.json -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/operation-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/v0_4/operation-update.json -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/raw-html-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/text-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/trait-copyrighted-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "copyright": "(c) 2015 The Washington Post, Inc." 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/trait-id-fixture-bad-missing-id.json: -------------------------------------------------------------------------------- 1 | { 2 | "blah": "doesn't contain a id field" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/trait-locale-fixture-good.json: -------------------------------------------------------------------------------- 1 | { 2 | "language": "ja" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/ul-fixture-bad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaughant" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/schema/v0_4/ul-fixture-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/fixtures/schema/v0_4/ul-fixture-good.json -------------------------------------------------------------------------------- /tests/schema-tests-010.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-010.js -------------------------------------------------------------------------------- /tests/schema-tests-04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-04.js -------------------------------------------------------------------------------- /tests/schema-tests-05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-05.js -------------------------------------------------------------------------------- /tests/schema-tests-06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-06.js -------------------------------------------------------------------------------- /tests/schema-tests-07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-07.js -------------------------------------------------------------------------------- /tests/schema-tests-08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-08.js -------------------------------------------------------------------------------- /tests/schema-tests-09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/schema-tests-09.js -------------------------------------------------------------------------------- /tests/transform-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/transform-tests.js -------------------------------------------------------------------------------- /tests/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/washingtonpost/ans-schema/HEAD/tests/validator.js --------------------------------------------------------------------------------