{
  "swagger": "2.0",
  "info": {
    "version": "",
    "title": "Distribution Consumer",
    "description": ""
  },
  "host": "localhost:8000",
  "basePath": "/v1",
  "schemes": [
    "https"
  ],
  "paths": {
    "/": {
      "get": {
        "operationId": "GET_root",
        "summary": "Consumer Feed",
        "tags": [
          "Endpoints"
        ],
        "responses": {
          "200": {
            "description": "",
            "schema": {
              "type": "object",
              "properties": {
                "next": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "format": "uri"
                },
                "previous": {
                  "type": [
                    "null",
                    "string"
                  ],
                  "format": "uri"
                },
                "results": {
                  "type": "array",
                  "items": {
                    "anyOf": [
                      {
                        "$ref": "#/definitions/ConsumerArticle"
                      },
                      {
                        "$ref": "#/definitions/ConsumerFeaturedImage"
                      },
                      {
                        "$ref": "#/definitions/FeaturedText"
                      },
                      {
                        "$ref": "#/definitions/ConsumerMagazineIssue"
                      },
                      {
                        "$ref": "#/definitions/ConsumerCollectionFeaturedImage"
                      }
                    ]
                  }
                }
              },
              "required": [
                "next",
                "previous"
              ]
            }
          }
        },
        "x-stoplight": {
          "id": "GET_",
          "beforeScript": null,
          "afterScript": null,
          "public": true,
          "mock": {
            "enabled": false,
            "dynamic": false,
            "statusCode": 200
          }
        }
      }
    }
  },
  "definitions": {
    "BaseArticle": {
      "title": "BaseArticle",
      "allOf": [
        {
          "$ref": "#/definitions/BaseItem"
        },
        {
          "$ref": "#/definitions/TextAsset"
        },
        {
          "type": "object",
          "properties": {
            "uri": {
              "type": "string",
              "format": "uri"
            },
            "dek": {
              "type": [
                "string",
                "null"
              ],
              "format": "semantic HTML"
            },
            "canonical_url": {
              "type": [
                "string",
                "null"
              ],
              "format": "uri"
            },
            "vanity_url": {
              "type": [
                "string",
                "null"
              ],
              "format": "uri"
            },
            "short_title": {
              "type": "string"
            },
            "galleries": {
              "type": "array"
            },
            "body": {
              "type": "string",
              "format": "HTML"
            },
            "videos": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/ComponentVideo"
              }
            },
            "lead_media": {
              "oneOf": [
                {
                  "properties": {
                    "image": {
                      "$ref": "#/definitions/ComponentImage"
                    }
                  },
                  "required": [
                    "image"
                  ]
                },
                {
                  "properties": {
                    "video": {
                      "$ref": "#/definitions/ComponentVideo"
                    }
                  },
                  "required": [
                    "video"
                  ]
                },
                {
                  "properties": {
                    "image_gallery": {
                      "$ref": "#/definitions/ComponentImageGallery"
                    }
                  },
                  "required": [
                    "image_gallery"
                  ]
                }
              ],
              "type": "object"
            },
            "images": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/ComponentImage"
              }
            },
            "contributors": {
              "type": "array",
              "items": {
                "allOf": [
                  {
                    "$ref": "#/definitions/Contributor"
                  },
                  {
                    "type": "object",
                    "properties": {
                      "order": {
                        "type": "integer"
                      }
                    }
                  }
                ]
              }
            },
            "content_type": {
              "type": "string",
              "enum": [
                "article:story",
                "article:image_gallery",
                "article:reference"
              ]
            }
          },
          "required": [
            "uri"
          ]
        }
      ],
      "x-stoplight": {
        "id": "BaseArticle",
        "name": "BaseArticle",
        "public": true
      }
    },
    "ComponentGallery": {
      "title": "ComponentGallery",
      "description": "Simple gallery. DEPRECATED",
      "type": "array",
      "items": {
        "$ref": "#/definitions/ComponentImage"
      },
      "x-stoplight": {
        "id": "ComponentGallery",
        "name": "ComponentGallery",
        "public": true
      }
    },
    "ComponentInlinePromo": {
      "title": "ComponentInlinePromo",
      "type": "object",
      "properties": {
        "text": {
          "type": "string"
        },
        "is_optional": {
          "type": "boolean",
          "default": false
        },
        "heading": {
          "type": "string"
        }
      },
      "required": [
        "text",
        "is_optional"
      ],
      "x-stoplight": {
        "id": "ComponentInlinePromo",
        "name": "ComponentInlinePromo",
        "public": true
      }
    },
    "ComponentListicle": {
      "title": "ComponentListicle",
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "dek": {
          "type": "string"
        },
        "text": {
          "type": "string"
        },
        "display_order": {
          "type": "number"
        },
        "image": {
          "$ref": "#/definitions/ComponentImage"
        }
      },
      "required": [
        "title"
      ],
      "example": {
        "title": "EPA DISMISSES SCIENCE ADVISORS",
        "dek": "May 5, 2017",
        "text": "The <b>EPA<\/b> dismisses several members of the Board of Scientific Counselors, an 18-member advisory board that reviews the research of EPA scientists. Some of the dismissed scientists had been assured that their three-year terms on the board would be renewed. In a May 7 story by the New York Times, critics assailed the move...",
        "display_order": -1
      },
      "x-stoplight": {
        "id": "ComponentListicle",
        "name": "ComponentListicle",
        "public": true
      }
    },
    "AltBodies": {
      "title": "AltBodies",
      "type": "object",
      "properties": {
        "structured": {
          "type": "object",
          "required": [
            "content"
          ],
          "properties": {
            "content": {
              "type": "array",
              "items": {
                "oneOf": [
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "image"
                        ]
                      },
                      "image": {
                        "$ref": "#/definitions/ComponentImage"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "text"
                        ]
                      },
                      "text": {
                        "type": "string"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "video"
                        ]
                      },
                      "video": {
                        "$ref": "#/definitions/ComponentVideo"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "pull_quote"
                        ]
                      },
                      "pull_quote": {
                        "$ref": "#/definitions/ComponentPullQuote"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "excerpt"
                        ]
                      },
                      "excerpt": {
                        "$ref": "#/definitions/ComponentExcerpt"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "animal_facts"
                        ]
                      },
                      "animal_facts": {
                        "$ref": "#/definitions/ComponentAnimalFact"
                      }
                    }
                  },
                  {
                    "description": "Deprecated. Use ImageGallery instead",
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "gallery"
                        ]
                      },
                      "gallery": {
                        "$ref": "#/definitions/ComponentGallery"
                      }
                    }
                  },
                  {
                    "description": "Replace Gallery component",
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "image_gallery"
                        ]
                      },
                      "image_gallery": {
                        "$ref": "#/definitions/ComponentImageGallery"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "inline_promo"
                        ]
                      },
                      "inline_promo": {
                        "$ref": "#/definitions/ComponentInlinePromo"
                      }
                    }
                  },
                  {
                    "properties": {
                      "content_type": {
                        "type": "string",
                        "enum": [
                          "listicle"
                        ]
                      },
                      "inline_promo": {
                        "$ref": "#/definitions/ComponentListicle"
                      }
                    }
                  }
                ],
                "type": "object"
              }
            }
          }
        },
        "text": {
          "type": "object",
          "required": [
            "body"
          ],
          "properties": {
            "body": {
              "type": "string"
            }
          }
        }
      },
      "required": [
        "structured",
        "text"
      ],
      "x-stoplight": {
        "id": "AltBodies",
        "name": "AltBodies",
        "public": true
      }
    },
    "ComponentAnimalFact": {
      "title": "ComponentAnimalFact",
      "type": "object",
      "properties": {
        "size_comparison_label": {
          "type": "string"
        },
        "animal_subject": {
          "description": "Taxonomy UUID",
          "type": "string"
        },
        "captivity_lifespan_low": {
          "type": "number"
        },
        "captivity_lifespan_median": {
          "type": "number"
        },
        "captivity_lifespan_high": {
          "type": "number"
        },
        "wild_lifespan_low": {
          "type": "number"
        },
        "wild_lifespan_median": {
          "type": "number"
        },
        "wild_lifespan_high": {
          "type": "number"
        },
        "lifespan_notes": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "scientific_name": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "diet_details": {
          "type": "string"
        },
        "animal_type": {
          "type": "object",
          "properties": {
            "url": {
              "type": "string",
              "format": "uri"
            },
            "name": {
              "type": "string"
            }
          },
          "required": [
            "url",
            "name"
          ]
        },
        "size": {
          "type": "string"
        },
        "weight": {
          "type": "string"
        },
        "population_trend": {
          "type": "string"
        },
        "relative_size_image": {
          "$ref": "#/definitions/ComponentImage"
        },
        "animal_reference_image": {
          "$ref": "#/definitions/ComponentImage"
        }
      },
      "required": [
        "animal_subject",
        "name"
      ],
      "x-stoplight": {
        "id": "ComponentAnimalFact",
        "name": "ComponentAnimalFact",
        "public": true
      }
    },
    "BaseItem": {
      "title": "BaseItem",
      "type": "object",
      "description": "Common set of properties",
      "properties": {
        "id": {
          "type": "string"
        },
        "language": {
          "type": "string",
          "description": "Language and locale in the format: xx-YY, examples: en-US, es-AR, en-AU"
        },
        "publication_datetime": {
          "type": "string",
          "format": "date-time"
        },
        "last_modified_datetime": {
          "type": "string",
          "format": "date-time"
        },
        "parent": {
          "type": "string"
        },
        "localizations": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "language": {
                "type": "string"
              }
            }
          }
        }
      },
      "required": [
        "id",
        "publication_datetime",
        "last_modified_datetime"
      ],
      "x-stoplight": {
        "id": "BaseItem",
        "name": "BaseItem",
        "public": true
      }
    },
    "BaseMagazineIssue": {
      "title": "BaseMagazineIssue",
      "allOf": [
        {
          "$ref": "#/definitions/BaseItem"
        },
        {
          "type": "object",
          "properties": {
            "content_type": {
              "type": "string",
              "enum": [
                "magazine:issue"
              ]
            },
            "year": {
              "type": "string"
            },
            "issue_number": {
              "type": "string"
            },
            "issue_label": {
              "type": "string"
            },
            "magazine_id": {
              "type": "string"
            },
            "cover_image": {
              "$ref": "#/definitions/ComponentImage"
            }
          },
          "required": [
            "year",
            "issue_number",
            "issue_label",
            "cover_image"
          ]
        }
      ],
      "x-stoplight": {
        "id": "BaseMagazineIssue",
        "name": "BaseMagazineIssue",
        "public": true
      }
    },
    "ClassifiedObject": {
      "title": "ClassifiedObject",
      "type": "object",
      "description": "The object has taxonomy tags applied",
      "properties": {
        "audiences": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "concepts": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "events": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "genres": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "locations": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "organizations": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "persons": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "series": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "sources": {
          "$ref": "#/definitions/TaxonomyTopic"
        },
        "subjects": {
          "$ref": "#/definitions/TaxonomyTopic"
        }
      },
      "x-stoplight": {
        "id": "ClassifiedObject",
        "name": "ClassifiedObject",
        "public": true
      }
    },
    "CollectionFeaturedImage": {
      "title": "CollectionFeaturedImage",
      "allOf": [
        {
          "$ref": "#/definitions/BaseItem"
        },
        {
          "$ref": "#/definitions/TextAsset"
        },
        {
          "type": "object",
          "properties": {
            "content_type": {
              "type": "string",
              "enum": [
                "collection:featured_image"
              ]
            },
            "canonical_url": {
              "type": "string",
              "format": "uri"
            },
            "dek": {
              "type": "string"
            },
            "vanity_url": {
              "type": "string"
            }
          },
          "required": [
            "content_type"
          ]
        }
      ],
      "x-stoplight": {
        "id": "CollectionFeaturedImage",
        "name": "CollectionFeaturedImage",
        "public": true
      }
    },
    "ComponentImageGroup": {
      "title": "ComponentImageGroup",
      "description": "Group of two images",
      "type": "object",
      "properties": {
        "caption": {
          "type": [
            "string",
            "null"
          ]
        },
        "size": {
          "type": [
            "string",
            "null"
          ],
          "enum": [
            "XS",
            "S",
            "M",
            "L",
            "FULL"
          ]
        },
        "images": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/ComponentImage"
          }
        },
        "hide_gutter": {
          "type": "boolean",
          "default": false
        },
        "exclude_from_media_set": {
          "type": "boolean",
          "default": false
        },
        "is_optional": {
          "type": "boolean",
          "default": false
        },
        "title": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "images"
      ],
      "x-stoplight": {
        "id": "ComponentImageGroup",
        "name": "ComponentImageGroup",
        "public": true
      }
    },
    "ComponentImmersiveLead": {
      "title": "ComponentImmersiveLead",
      "type": "object",
      "properties": {
        "lead_media": {
          "type": "object",
          "properties": {
            "content_type": {
              "type": "string",
              "enum": [
                "video",
                "image"
              ]
            },
            "content": {
              "oneOf": [
                {
                  "$ref": "#/definitions/ComponentVideo"
                },
                {
                  "$ref": "#/definitions/ComponentImage"
                }
              ]
            }
          }
        },
        "title": {
          "type": "string"
        },
        "caption": {
          "type": "string"
        },
        "tint": {
          "type": "string",
          "enum": [
            "NONE",
            "LIGHT",
            "MEDIUM",
            "DARK"
          ],
          "default": "NONE"
        },
        "focal_point": {
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "x": {
              "type": "string",
              "default": "",
              "enum": [
                "LEFT",
                "MIDDLE",
                "RIGHT"
              ]
            },
            "y": {
              "type": "string",
              "enum": [
                "TOP",
                "MIDDLE",
                "BOTTOM"
              ]
            }
          },
          "required": [
            "x",
            "y"
          ]
        },
        "text_position": {
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "x": {
              "type": "string",
              "enum": [
                "LEFT",
                "MIDDLE",
                "RIGHT"
              ],
              "default": "LEFT"
            },
            "y": {
              "type": "string",
              "enum": [
                "TOP",
                "MIDDLE",
                "BOTTOM"
              ],
              "default": "BOTTOM"
            }
          },
          "required": [
            "x",
            "y"
          ]
        },
        "theme": {
          "type": "string",
          "enum": [
            "NEGATIVE",
            "POSITIVE"
          ]
        },
        "show_arrow_down": {
          "type": "boolean",
          "default": true
        },
        "kicker": {
          "type": "string"
        }
      },
      "required": [
        "lead_media",
        "tint",
        "theme"
      ],
      "example": {
        "lead_media": {
          "content_type": "image",
          "image": {
            "description": null,
            "duration": 52415058,
            "mime_type": null,
            "source_system": null,
            "thumbnail": null,
            "title": "velit quis Duis eius",
            "uri": "id magna cillum et"
          }
        },
        "title": "officia",
        "caption": "Ut officia nostrud ut id",
        "tint": "NONE",
        "focal_point": {
          "x": "RIGHT",
          "y": "BOTTOM"
        },
        "text_position": null,
        "theme": "POSITIVE",
        "show_arrow_down": true,
        "kicker": "labore in cillum nostrud ullamco"
      },
      "x-stoplight": {
        "id": "ComponentImmersiveLead",
        "name": "ComponentImmersiveLead",
        "public": true
      }
    },
    "ComponentPullQuote": {
      "title": "ComponentPullQuote",
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "quote": {
          "type": "string"
        },
        "quote_details": {
          "type": [
            "string",
            "null"
          ]
        },
        "person_taxonomy_tag": {
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "name": {
              "type": "string"
            },
            "order": {
              "type": "integer"
            },
            "uuid": {
              "type": "string"
            }
          },
          "required": [
            "name",
            "uuid"
          ]
        }
      },
      "required": [
        "name",
        "quote"
      ],
      "x-stoplight": {
        "id": "ComponentPullQuote",
        "name": "ComponentPullQuote",
        "public": true
      }
    },
    "ComponentVideo": {
      "title": "ComponentVideo",
      "type": "object",
      "properties": {
        "audio_channels": {
          "type": [
            "string",
            "null"
          ]
        },
        "audio_sample_rate": {
          "type": [
            "string",
            "null"
          ]
        },
        "bitrate": {
          "type": [
            "string",
            "null"
          ]
        },
        "description": {
          "type": [
            "string",
            "null"
          ]
        },
        "duration": {
          "type": "integer"
        },
        "expression": {
          "type": [
            "string",
            "null"
          ]
        },
        "file_size": {
          "type": [
            "string",
            "null"
          ]
        },
        "format": {
          "type": [
            "string",
            "null"
          ]
        },
        "frame_rate": {
          "type": [
            "string",
            "null"
          ]
        },
        "height": {
          "type": [
            "string",
            "null"
          ]
        },
        "language": {
          "type": [
            "string",
            "null"
          ]
        },
        "mime_type": {
          "type": [
            "string",
            "null"
          ]
        },
        "source_system": {
          "$ref": "#/definitions/SourceSystem"
        },
        "thumbnail": {
          "type": [
            "string",
            "null"
          ],
          "format": "uri"
        },
        "title": {
          "type": "string"
        },
        "type": {
          "type": [
            "string",
            "null"
          ]
        },
        "uri": {
          "type": "string"
        },
        "width": {
          "type": [
            "string",
            "null"
          ]
        },
        "default": {
          "type": "boolean"
        }
      },
      "required": [
        "description",
        "duration",
        "mime_type",
        "source_system",
        "thumbnail",
        "title",
        "uri"
      ],
      "x-stoplight": {
        "id": "ComponentVideo",
        "name": "ComponentVideo",
        "public": true
      }
    },
    "ComponentYoutubeVideo": {
      "title": "ComponentYoutubeVideo",
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "credit": {
          "type": "string"
        },
        "embed_url": {
          "type": "string",
          "format": "uri"
        },
        "size": {
          "type": [
            "string",
            "null"
          ],
          "enum": [
            "XS",
            "S",
            "M",
            "L",
            "FULL"
          ]
        },
        "aspect_ratio": {
          "type": "string",
          "enum": [
            "2:1",
            "3:4",
            "3:2",
            "4:3",
            "9:16",
            "16:9"
          ]
        }
      },
      "required": [
        "embed_url",
        "aspect_ratio"
      ],
      "example": {
        "title": "42",
        "description": "<p>NASA's eclipse live coverage will begin at 12 p.m. ET on August 21.<\/p>\n",
        "credit": "This is a credit",
        "embed_url": "https://www.youtube.com/embed/wwMDvPCGeE0",
        "size": "S",
        "aspect_ratio": "16:9"
      },
      "x-stoplight": {
        "id": "ComponentYoutubeVideo",
        "name": "ComponentYoutubeVideo",
        "public": true
      }
    },
    "Contributor": {
      "title": "Contributor",
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "taxonomy_id": {
          "type": [
            "string",
            "null"
          ]
        },
        "uri": {
          "type": [
            "string",
            "null"
          ],
          "format": "uri"
        },
        "role": {
          "type": "string",
          "enum": [
            "writer",
            "photographer",
            "other"
          ]
        },
        "role_other": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "name",
        "role"
      ],
      "x-stoplight": {
        "id": "Contributor",
        "name": "Contributor",
        "public": true
      }
    },
    "ComponentExcerpt": {
      "title": "ComponentExcerpt",
      "type": "object",
      "properties": {
        "excerpt": {
          "type": "string"
        }
      },
      "x-stoplight": {
        "id": "ComponentExcerpt",
        "name": "ComponentExcerpt",
        "public": true
      }
    },
    "FeaturedImage": {
      "title": "ConsumerFeaturedImage",
      "allOf": [
        {
          "$ref": "#/definitions/FeaturedImage"
        },
        {
          "$ref": "#/definitions/ClassifiedObject"
        }
      ],
      "example": {
        "id": "907a80ba-e834-42b9-9720-bbeb40ebb15b",
        "language": "en-US",
        "publication_datetime": "2017-08-18T04:00:00.000000Z",
        "last_modified_datetime": "2017-08-18T04:00:00.000000Z",
        "content_type": "featured_image",
        "collection_id": "fd5444cc-4777-4438-b9d4-5085c0564b44",
        "uri": "http://www.nationalgeographic.com/photography/photo-of-the-day/2017/08/cadets-air-force-colorado/",
        "sling:resourceType": "photography/components/pagetypes/photography/infinite-gallery-item",
        "title": "Graduation Celebration",
        "short_title": "Graduation Celebration",
        "seo_title": "Air Force Graduation Image | National Geographic Your Shot Photo of the Day",
        "social_title": "Air Force Graduation Image | National Geographic Your Shot Photo of the Day",
        "abstract": null,
        "short_abstract": "Air Force Academy graduates celebrate in this National Geographic Your Shot Photo of the Day.",
        "dek": "<p>Air Force Academy graduates celebrate in this National Geographic Your Shot Photo of the Day.<\/p>",
        "sponsor_content": false,
        "sponsor_content_label": null,
        "canonical_url": null,
        "vanity_url": null,
        "image": {
          "uri": "http://yourshot.nationalgeographic.com/photos/10440473/",
          "title": "Graduation Celebration",
          "source_system": {
            "id": "yourshot-us",
            "asset_id": "10440473",
            "uri": "http://yourshot.nationalgeographic.com/photos/10440473/"
          },
          "asset_provider": null,
          "alt_text": "Picture of Air Force cadets throwing caps into the air to celebrate graduation",
          "credit": "AJ Lee",
          "caption": "<p>Graduates of the United States Air Force Academy in Colorado",
          "aspect_ratio": 0.6183554,
          "height": 2850,
          "width": 4609,
          "renditions": [
            {
              "width": "320",
              "uri": "/u/fQYSUbVfts-T7odkrFJckdiFeHvab0GWOfzhj7tYdC0uglagsDNeYPB62q8/",
              "density": null
            }
          ]
        },
        "contributors": [],
        "keywords": [
          "natgeoyourshot"
        ],
        "subjects": [
          {
            "name": "People and Culture",
            "uuid": "4441d864-337d-3ceb-b8ec-e92cfe52f36f",
            "order": 0
          }
        ],
        "series": [
          {
            "name": "Photo of the Day",
            "uuid": "9fd1ddda-e7ee-3dc2-abc6-0ef21b6da0f0",
            "order": 0
          }
        ],
        "source": [
          {
            "name": "Photography",
            "uuid": "8e8d45f6-7f3b-355f-8fea-71cbd8fedb1d",
            "order": 0
          }
        ],
        "locations": [
          {
            "name": "Colorado Springs",
            "uuid": "44711c9b-b96a-35c3-b089-8f4ee6bb51f2",
            "order": 0
          }
        ],
        "audience": [
          {
            "name": "General",
            "uuid": "3e7d872e-f731-34a8-aec4-d48e72f452f1",
            "order": 0
          }
        ],
        "person": [],
        "organization": [],
        "event": [],
        "genre": [],
        "concept": []
      },
      "x-stoplight": {
        "id": "FeaturedImage",
        "name": "ConsumerFeaturedImage",
        "public": true
      }
    },
    "FeaturedText": {
      "title": "FeaturedText",
      "allOf": [
        {
          "$ref": "#/definitions/BaseItem"
        },
        {
          "type": "object",
          "properties": {
            "keywords": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "pull_quote": {
              "$ref": "#/definitions/ComponentPullQuote"
            },
            "image": {
              "$ref": "#/definitions/ComponentImage"
            },
            "content_type": {
              "type": "string",
              "enum": [
                "featured_text"
              ]
            }
          },
          "required": [
            "uri"
          ]
        }
      ],
      "x-stoplight": {
        "id": "FeaturedText",
        "name": "FeaturedText",
        "public": true
      }
    },
    "ComponentImage": {
      "title": "ComponentImage",
      "type": "object",
      "properties": {
        "uri": {
          "type": "string",
          "format": "uri"
        },
        "title": {
          "type": [
            "string",
            "null"
          ]
        },
        "source_system": {
          "$ref": "#/definitions/SourceSystem"
        },
        "rights_system": {
          "$ref": "#/definitions/SourceSystem"
        },
        "asset_provider": {
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "id": {
              "type": "string"
            },
            "asset_id": {
              "type": "string"
            },
            "uri": {
              "type": [
                "string",
                "null"
              ],
              "format": "uri"
            }
          }
        },
        "alt_text": {
          "type": [
            "string",
            "null"
          ]
        },
        "credit": {
          "type": [
            "string",
            "null"
          ]
        },
        "caption": {
          "type": [
            "string",
            "null"
          ]
        },
        "cropped": {
          "type": "boolean"
        },
        "aspect_ratio": {
          "type": "number"
        },
        "height": {
          "type": "integer"
        },
        "width": {
          "type": "integer"
        },
        "croppings": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "aspect_ratio_key": {
                "type": "string"
              },
              "uri": {
                "type": "string",
                "format": "uri"
              },
              "instructions": {
                "type": "object",
                "required": [
                  "x_coordinate",
                  "y_coordinate",
                  "height",
                  "width"
                ],
                "properties": {
                  "x_coordinate": {
                    "type": "integer"
                  },
                  "y_coordinate": {
                    "type": "integer"
                  },
                  "height": {
                    "type": "integer"
                  },
                  "width": {
                    "type": "integer"
                  }
                }
              },
              "renditions": {
                "$ref": "#/definitions/Renditions"
              }
            },
            "required": [
              "aspect_ratio_key",
              "uri",
              "instructions"
            ]
          }
        },
        "renditions": {
          "$ref": "#/definitions/Renditions"
        },
        "id": {
          "type": "string"
        },
        "type": {
          "type": "string"
        },
        "order": {
          "type": "integer"
        }
      },
      "required": [
        "uri",
        "source_system"
      ],
      "example": {
        "alt_text": "Picture of a shark closeup with it's mouth open",
        "aspect_ratio": 0.66748047,
        "asset_provider": null,
        "asset_source": null,
        "caption": "A shortfin mako flashes in front of an intruder, introducing itself as a force to be reckoned with in waters off the coast of New Zealand.",
        "credit": null,
        "cropped": false,
        "croppings": [],
        "height": 1367,
        "id": "ea82dd15-0ba6-440e-95f4-bfd210be480b",
        "renditions": [
          {
            "density": "1",
            "media-selector": "(max-width: 130px)",
            "uri": "http://www.nationalgeographic.com/content/dam/magazine/rights-exempt/2017/08/Shortfin-Mako/shortfin-mako-jaws-shark.adapt.133.1.jpg",
            "width": "133"
          }
        ],
        "size": "cinematic",
        "source_system": {
          "account": null,
          "asset_external_field_name": "guid",
          "asset_id": "ea82dd15-0ba6-440e-95f4-bfd210be480b",
          "id": "aem-us"
        },
        "title": null,
        "type": "main",
        "uri": "http://www.nationalgeographic.com/content/dam/magazine/rights-exempt/2017/08/Shortfin-Mako/shortfin-mako-jaws-shark.jpg",
        "width": 2048
      },
      "x-stoplight": {
        "id": "ComponentImage",
        "name": "ComponentImage",
        "public": true
      }
    },
    "ComponentImageGallery": {
      "title": "ComponentImageGallery",
      "description": "Replace the Gallery component.",
      "type": "object",
      "properties": {
        "aspect_ratio_type": {
          "type": [
            "string",
            "null"
          ]
        },
        "gallery_size": {
          "type": [
            "string",
            "null"
          ],
          "enum": [
            "XS",
            "S",
            "M",
            "L",
            "FULL"
          ]
        },
        "images": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/ComponentImage"
          }
        },
        "show_image_asset_sources": {
          "type": "boolean"
        },
        "show_image_titles": {
          "type": "boolean"
        },
        "show_image_captions": {
          "type": "boolean"
        },
        "show_image_credits": {
          "type": "boolean"
        },
        "title": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "images"
      ],
      "x-stoplight": {
        "id": "ComponentImageGallery",
        "name": "ComponentImageGallery",
        "public": true
      }
    },
    "Magazine": {
      "title": "Magazine",
      "allOf": [
        {
          "$ref": "#/definitions/BaseItem"
        },
        {
          "type": "object",
          "properties": {
            "content_type": {
              "type": "string",
              "enum": [
                "magazine"
              ]
            },
            "name": {
              "type": "string"
            },
            "source": {
              "type": "string"
            }
          },
          "required": [
            "content_type",
            "source",
            "name"
          ]
        }
      ],
      "x-stoplight": {
        "id": "Magazine",
        "name": "Magazine",
        "public": true
      }
    },
    "Renditions": {
      "title": "Renditions",
      "id": "resource:/definitions/Renditions#",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "width": {
            "type": "string"
          },
          "uri": {
            "type": "string",
            "format": "uri"
          },
          "density": {
            "type": [
              "string",
              "null"
            ]
          },
          "media-selector": {
            "type": "string"
          }
        },
        "required": [
          "width",
          "uri"
        ]
      },
      "x-stoplight": {
        "id": "Renditions",
        "name": "Renditions",
        "public": true
      }
    },
    "Sitemap": {
      "title": "Sitemap",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "language": {
          "type": "string"
        },
        "parent": {
          "type": "string"
        },
        "url": {
          "type": "string",
          "format": "uri"
        },
        "publication_datetime": {
          "type": "string",
          "format": "date-time"
        },
        "last_modified_datetime": {
          "type": "string",
          "format": "date-time"
        },
        "genres": {
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "uuid": {
                "type": "string"
              }
            },
            "required": [
              "name",
              "uuid"
            ]
          }
        },
        "images": {
          "type": [
            "array",
            "null"
          ],
          "items": {
            "$ref": "#/definitions/ComponentImage"
          }
        },
        "title": {
          "type": "string"
        },
        "keywords": {
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": [
              "string",
              "array"
            ],
            "items": {}
          }
        },
        "localizations": {
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "object",
            "properties": {
              "language": {
                "type": "string"
              },
              "url": {
                "type": "string",
                "format": "uri"
              }
            },
            "required": [
              "language",
              "url"
            ]
          }
        },
        "canonical_url": {
          "type": [
            "string",
            "null"
          ],
          "format": "uri"
        },
        "change_frequency": {
          "type": "string"
        },
        "priority": {
          "type": "number"
        }
      },
      "required": [
        "id",
        "language",
        "url",
        "publication_datetime",
        "last_modified_datetime",
        "images",
        "title"
      ],
      "example": {
        "id": "5544332",
        "language": "en_US",
        "parent": "GS-ES:33",
        "url": "https://morton.name",
        "publication_datetime": "4667-02-11T06:36:12.437Z",
        "last_modified_datetime": "3303-08-17T19:44:44.865Z",
        "genres": null,
        "images": [
          {
            "uri": "http://myimage.com/1.jpg",
            "title": "a title",
            "source_system": null
          }
        ],
        "title": "est tempor in incididunt",
        "keywords": [
          "travel",
          "leopard"
        ],
        "localizations": [
          {
            "url": "https://agnes.org",
            "language": "es_AR"
          }
        ],
        "canonical_url": null,
        "change_frequency": "daily",
        "priority": 0.8
      },
      "x-stoplight": {
        "id": "Sitemap",
        "name": "Sitemap",
        "public": true
      }
    },
    "SourceSystem": {
      "title": "SourceSystem",
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "enum": [
            "mpx-us",
            "neulion-au",
            "yourshot-us",
            "aem-us",
            "chook-au",
            "spi-us",
            "Getty",
            "yourshot"
          ]
        },
        "asset_id": {
          "type": "string"
        },
        "account": {
          "type": [
            "string",
            "null"
          ]
        },
        "asset_external_field_name": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "id",
        "asset_id"
      ],
      "x-stoplight": {
        "id": "SourceSystem",
        "name": "SourceSystem",
        "public": true
      }
    },
    "TaxonomyTopic": {
      "title": "TaxonomyTopic",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "order": {
            "type": "integer"
          }
        },
        "required": [
          "name",
          "uuid"
        ]
      },
      "x-stoplight": {
        "id": "TaxonomyTopic",
        "name": "TaxonomyTopic",
        "public": true
      }
    },
    "TextAsset": {
      "title": "TextAsset",
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "seo_title": {
          "type": [
            "string",
            "null"
          ]
        },
        "social_title": {
          "type": [
            "string",
            "null"
          ]
        },
        "abstract": {
          "type": [
            "string",
            "null"
          ]
        },
        "short_abstract": {
          "type": [
            "string",
            "null"
          ]
        },
        "sponsor_content": {
          "type": "boolean",
          "default": false
        },
        "sponsor_content_label": {
          "type": [
            "string",
            "null"
          ]
        },
        "keywords": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "x-stoplight": {
        "id": "TextAsset",
        "name": "TextAsset",
        "public": true
      }
    },
    "AEMAltBodies": {
      "title": "AEMAltBodies",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "structured",
              "text"
            ]
          },
          "body": {
            "type": "string",
            "format": "HTML"
          },
          "content": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "image"
                      ]
                    },
                    "image": {
                      "$ref": "#/definitions/ComponentImage"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "text"
                      ]
                    },
                    "text": {
                      "type": "string"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "video"
                      ]
                    },
                    "video": {
                      "$ref": "#/definitions/ComponentVideo"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "pull_quote"
                      ]
                    },
                    "pull_quote": {
                      "$ref": "#/definitions/ComponentPullQuote"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "excerpt"
                      ]
                    },
                    "excerpt": {
                      "$ref": "#/definitions/ComponentExcerpt"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "animal_facts"
                      ]
                    },
                    "animal_facts": {
                      "$ref": "#/definitions/ComponentAnimalFact"
                    }
                  }
                },
                {
                  "description": "Deprecated. Use ImageGallery instead",
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "gallery"
                      ]
                    },
                    "gallery": {
                      "$ref": "#/definitions/ComponentGallery"
                    }
                  }
                },
                {
                  "description": "Replace Gallery component",
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "image_gallery"
                      ]
                    },
                    "image_gallery": {
                      "$ref": "#/definitions/ComponentImageGallery"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "inline_promo"
                      ]
                    },
                    "inline_promo": {
                      "$ref": "#/definitions/ComponentInlinePromo"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "listicle"
                      ]
                    },
                    "inline_promo": {
                      "$ref": "#/definitions/ComponentListicle"
                    }
                  }
                },
                {
                  "properties": {
                    "content_type": {
                      "type": "string",
                      "enum": [
                        "youtube_video"
                      ]
                    },
                    "youtube_video": {
                      "$ref": "#/definitions/ComponentYoutubeVideo"
                    }
                  }
                }
              ],
              "type": "object"
            }
          }
        }
      },
      "x-stoplight": {
        "id": "AEMAltBodies",
        "name": "AEMAltBodies",
        "public": true
      }
    },
    "ConsumerArticle": {
      "title": "ConsumerArticle",
      "allOf": [
        {
          "$ref": "#/definitions/BaseArticle"
        },
        {
          "$ref": "#/definitions/ClassifiedObject"
        },
        {
          "type": "object",
          "properties": {
            "alt_bodies": {
              "oneOf": [
                {
                  "$ref": "#/definitions/AEMAltBodies"
                },
                {
                  "$ref": "#/definitions/AltBodies"
                }
              ]
            }
          }
        }
      ],
      "example": {
        "content_type": "article:story",
        "id": "8a4e8091-236a-435c-992f-d44561555122",
        "language": "en-US",
        "uri": "http://news-qa6.int.ngeo.com/2017/09/video-lead-no-images/",
        "publication_datetime": "2017-08-16T20:29:00.000000Z",
        "last_modified_datetime": "2017-08-16T20:29:00.000000Z",
        "title": "Video Lead No Images",
        "short_title": "Video Lead No Images",
        "seo_title": "Video Lead No Images",
        "social_title": "Video Lead No Images",
        "abstract": null,
        "short_abstract": "Test",
        "dek": "<p>Test<\/p>",
        "sponsor_content": false,
        "sponsor_content_label": null,
        "canonical_url": null,
        "vanity_url": null,
        "lead_media": {
          "content_type": "video",
          "video": {
            "uri": "http://link.theplatform.com/s/ngs/media/guid/2423130747/0000015d-e659-d466-a57f-fed96fac0000",
            "description": "How many planets are in the solar system? How did it form in the Milky Way galaxy? Learn facts about the solar system's genesis, plus its planets, moons, and asteroids.",
            "title": "Solar System 101",
            "duration": 235435,
            "thumbnail": "http://pmdvod.nationalgeographic.com/NG_Video/637/299/smpost_1502808565266.jpg",
            "mime_type": "video/mp4",
            "type": "Universal Video",
            "source_system": {
              "id": "mpx-us",
              "asset_id": "1025016899669",
              "account": "2423130747",
              "asset_external_field_name": "id"
            }
          }
        },
        "body": "<p><b>Lorem ipsum<\/b> dolor sit amet, consectetur adipiscing elit<\/p>",
        "alt_bodies": [
          {
            "type": "text",
            "body": "Lorem ipsum dolor sit amet."
          },
          {
            "type": "structured",
            "content": [
              {
                "content_type": "video",
                "video": {
                  "uri": "http://link.theplatform.com/s/ngs/media/guid/2423130747/0000015d-e659-d466-a57f-fed96fac0000",
                  "description": "How many planets are in the solar system?",
                  "title": "Solar System 101",
                  "duration": 235435,
                  "thumbnail": "http://pmdvod.nationalgeographic.com/NG_Video/637/299/smpost_1502808565266.jpg",
                  "mime_type": "video/mp4",
                  "type": "Universal Video",
                  "source_system": {
                    "id": "mpx-us",
                    "asset_id": "1025016899669",
                    "account": "2423130747",
                    "asset_external_field_name": "id"
                  }
                }
              },
              {
                "content_type": "text",
                "text": "<p><b>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/b><\/p>"
              },
              {
                "content_type": "image",
                "image": {
                  "id": "2f8c11f2-5b90-4e50-acc0-feec661b0a54",
                  "uri": "http://news.nationalgeographic.com/content/dam/news/2017/01/24/lunar-xprize/lunar-xprize-02.jpg",
                  "caption": "Based in Bangalore, Team Indus will launch its rover, dubbed ECA, on an Indian space agency rocket in an attempt to win the Google Lunar X Prize.",
                  "title": null,
                  "credit": "Illustration courtesy Google Lunar XPrize",
                  "asset_source": null,
                  "alt_text": "Illustration of a Moon rover",
                  "aspect_ratio": 0.703125,
                  "height": 1440,
                  "width": 2048,
                  "size": "small",
                  "cropped": false,
                  "source_system": {
                    "id": "aem-us",
                    "asset_id": "2f8c11f2-5b90-4e50-acc0-feec661b0a54",
                    "account": null,
                    "asset_external_field_name": "guid"
                  },
                  "asset_provider": {
                    "id": "google xprize",
                    "asset_id": "teamindus_blog (1)",
                    "uri": null
                  },
                  "renditions": [
                    {
                      "width": "133",
                      "uri": "http://news.nationalgeographic.com/content/dam/news/2017/01/24/lunar-xprize/lunar-xprize-02.adapt.133.1.jpg",
                      "density": "1",
                      "media-selector": "(max-width: 130px)"
                    }
                  ],
                  "croppings": [],
                  "type": "main"
                }
              },
              {
                "content_type": "image_gallery",
                "image_gallery": {
                  "title": null,
                  "gallery_size": "S",
                  "aspect_ratio_type": "three-two",
                  "show_image_titles": false,
                  "show_image_captions": true,
                  "show_image_credits": true,
                  "show_image_asset_sources": true,
                  "images": [
                    {
                      "id": "3407be5c-79ff-426c-8d0a-ebae67997a54",
                      "uri": "http://www.nationalgeographic.com/content/dam/photography/PROOF/2017/May/shark-alphabet/a-shark-alphabet-gallery-NationalGeographic_104258.jpg",
                      "caption": "Pacific angelshark. Santa Catalina Island, California",
                      "title": null,
                      "credit": "Photograph by David Doubilet, National Geographic Creative",
                      "asset_source": null,
                      "alt_text": "Picture of Pacific angel shark",
                      "aspect_ratio": 0.67578125,
                      "height": 1384,
                      "width": 2048,
                      "type": "inline",
                      "source_system": {
                        "id": "aem-us",
                        "asset_id": "3407be5c-79ff-426c-8d0a-ebae67997a54",
                        "account": null,
                        "asset_external_field_name": "guid"
                      },
                      "asset_provider": {
                        "id": "ngs_rights_vendor:SPI",
                        "asset_id": "104258",
                        "uri": null
                      },
                      "renditions": [
                        {
                          "width": "133",
                          "uri": "http://www.nationalgeographic.com/content/dam/photography/PROOF/2017/May/shark-alphabet/a-shark-alphabet-gallery-NationalGeographic_104258.adapt.133.1.jpg",
                          "density": "1",
                          "media-selector": "(max-width: 130px)"
                        }
                      ],
                      "croppings": []
                    }
                  ]
                }
              },
              {
                "content_type": "youtube_video",
                "youtube_video": {
                  "title": "42",
                  "description": "<p>NASA's eclipse live coverage will begin at 12 p.m. ET on August 21.<\/p>\n",
                  "credit": "This is a credit",
                  "embed_url": "https://www.youtube.com/embed/wwMDvPCGeE0",
                  "size": "S",
                  "aspect_ratio": "16:9"
                }
              },
              {
                "content_type": "listicle",
                "listicle": {
                  "title": "TRUMP REVOKES FLOOD STANDARDS ACCOUNTING FOR SEA-LEVEL RISE",
                  "dek": "<p>August 15, 2017<\/p>\n",
                  "text": "<p>President Trump has signed an executive order revoking federal flood-risk standards that incorporated rising sea levels predicted by climate science.<\/p>\n<p>Trump’s <a href=\"https://www.whitehouse.gov/the-press-office/2017/08/15/presidential-executive-order-establishing-discipline-and-accountability\">new executive order<\/a> claims to improve federal infrastructure decisions by quickening and streamlining the environmental review process. A single sentence takes the additional step of revoking Executive Order 13690, signed by President Barack Obama on January 30, 2015.<\/p>\n<p><a href=\"https://obamawhitehouse.archives.gov/the-press-office/2015/01/30/executive-order-establishing-federal-flood-risk-management-standard-and-\">That executive order<\/a> required that federally funded projects hew to a Federal Flood Risk Management Standard, to reduce the risk of future flood damage. Specifically, the order required that floodplains had to be based on the “best-available, actionable hydrologic and hydraulic data and methods that integrate current and future changes in flooding based on climate science.”<\/p>\n<p>From 1993 to 2016, global average sea level has increased by about 3.25 inches and is projected to rise one to four feet by the end of the century. Higher sea-level rise cannot be ruled out, due to incomplete data on Antarctic ice-shelf stability. Since the 1960s, tidal flooding has increased at least fivefold in several U.S. cities.<\/p>\n<p>U.S. cities are predicted to see more floods in the coming years. A recent Union of Concerned Scientists report found that chronic flooding—a flood roughly every two weeks—will come to affect <a href=\"http://news.nationalgeographic.com/2017/07/sea-level-rise-flood-global-warming-science/\">more than 170 U.S. coastal communities in less than 20 years<\/a> and some 670 communities by 2100.<\/p>\n",
                  "display_order": "0"
                }
              }
            ]
          }
        ],
        "contributors": [],
        "keywords": [],
        "subjects": [],
        "series": [],
        "sources": [
          {
            "name": "News",
            "uuid": "2ea1233d-1a91-36a5-b06b-52819a1fd03c",
            "order": 0
          }
        ],
        "locations": [],
        "audiences": [
          {
            "name": "General",
            "uuid": "3e7d872e-f731-34a8-aec4-d48e72f452f1",
            "order": 0
          }
        ],
        "persons": [],
        "organizations": [],
        "events": [],
        "genres": [],
        "concepts": [],
        "images": [],
        "videos": [
          {
            "uri": "http://link.theplatform.com/s/ngs/media/guid/2423130747/0000015d-e659-d466-a57f-fed96fac0000",
            "description": "How many planets are in the solar ",
            "title": "Solar System 101",
            "duration": 235435,
            "thumbnail": "http://pmdvod.nationalgeographic.com/NG_Video/637/299/smpost_1502808565266.jpg",
            "mime_type": "video/mp4",
            "type": "main",
            "source_system": {
              "id": "mpx-us",
              "asset_id": "1025016899669",
              "account": "2423130747",
              "asset_external_field_name": "id"
            },
            "order": 0
          }
        ],
        "galleries": []
      },
      "x-stoplight": {
        "id": "ConsumerArticle",
        "name": "ConsumerArticle",
        "public": true
      }
    },
    "ConsumerMagazineIssue": {
      "title": "ConsumerMagazineIssue",
      "allOf": [
        {
          "$ref": "#/definitions/BaseMagazineIssue"
        },
        {
          "type": "object",
          "properties": {
            "stories": {
              "type": "array",
              "items": {
                "type": "object",
                "requires": [
                  "article_id",
                  "order",
                  "genre"
                ],
                "properties": {
                  "article_id": {
                    "type": "string"
                  },
                  "genre": {
                    "type": "object",
                    "requires": [
                      "uuid",
                      "name"
                    ],
                    "properties": {
                      "uuid": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "order": {
                    "type": "number"
                  }
                },
                "required": [
                  "article_id",
                  "genre",
                  "order"
                ]
              }
            }
          },
          "required": [
            "stories"
          ]
        }
      ],
      "example": {
        "content_type": "magazine:issue",
        "id": "528bff49-c83c-4eec-b546-d0ace693d03a",
        "magazine_id": "9af83c1e-1fdc-3710-b252-c42eedb1b7c1",
        "year": "2010",
        "issue_number": "1",
        "issue_label": "January 2010",
        "publication_datetime": "2017-01-01T00:00:00Z",
        "last_modified_datetime": "2017-01-01T00:00:00Z",
        "cover_image": {
          "id": "8f68efac-cf4c-4b3d-9533-59acc7198033",
          "uri": "http://www.nationalgeographic.com/content/dam/magazine/rights-exempt/2010/TOC/CV-0110-1.jpg",
          "title": null,
          "caption": null,
          "credit": null,
          "asset_source": null,
          "aspect_ratio": 1.4545455,
          "height": 2048,
          "width": 1408,
          "alt_text": null,
          "source_system": {
            "id": "aem-us",
            "asset_id": "8f68efac-cf4c-4b3d-9533-59acc7198033",
            "account": null,
            "asset_external_field_name": "guid"
          },
          "rights_system": {
            "asset_id": "1",
            "id": "aem-us"
          },
          "asset_provider": {
            "asset_id": "1",
            "id": "aem-us"
          },
          "renditions": [
            {
              "width": "133",
              "uri": "http://www.nationalgeographic.com/content/dam/magazine/rights-exempt/2010/TOC/CV-0110-1.adapt.133.1.jpg",
              "density": "1",
              "media-selector": "(max-width: 130px)"
            }
          ],
          "croppings": []
        },
        "stories": [
          {
            "article_id": "c6e36c4d-7564-4c86-9169-ea98923cf43b",
            "genre": {
              "uuid": "f736bd52-dedd-3d41-8b48-918c54dad12b",
              "name": "Feature"
            },
            "order": 0
          },
          {
            "article_id": "589790d5-6538-4362-b33b-7106af749a0f",
            "genre": {
              "uuid": "f736bd52-dedd-3d41-8b48-918c54dad12b",
              "name": "Feature"
            },
            "order": 1
          }
        ]
      },
      "x-stoplight": {
        "id": "ConsumerMagazineIssue",
        "name": "ConsumerMagazineIssue",
        "public": true
      }
    },
    "ConsumerCollectionFeaturedImage": {
      "title": "ConsumerCollectionFeaturedImage",
      "allOf": [
        {
          "$ref": "#/definitions/CollectionFeaturedImage"
        },
        {
          "$ref": "#/definitions/ClassifiedObject"
        }
      ],
      "example": {
        "content_type": "collection:featured_image",
        "id": "fd5444cc-4777-4438-b9d4-5085c0564b44",
        "language": "en-US",
        "uri": "http://www-qa6.int.ngeo.com/photography/photo-of-the-day/",
        "sling:resourceType": "photography/components/pagetypes/photography/infinite-gallery",
        "publication_datetime": "2017-08-18T04:00:00.000000Z",
        "last_modified_datetime": "2017-08-18T04:00:00.000000Z",
        "title": "Photo of the Day",
        "short_title": "Photo of the Day",
        "seo_title": "Photo of the Day",
        "social_title": "Photo of the Day",
        "abstract": null,
        "short_abstract": "Daily National Geographic photos, including photos of animals, people, culture, adventure, science, travel, underwater, exploration, and more.",
        "dek": "<p>Daily National Geographic photos, including photos of animals, people, culture, adventure, science, travel, underwater, exploration, and more.<\/p>",
        "sponsor_content": false,
        "sponsor_content_label": null,
        "canonical_url": "http://google.com",
        "vanity_url": "/content/photography/en_US/photo-of-the-day/2016/8/satara-eagle-feather",
        "keywords": [],
        "subjects": [
          {
            "uuid": "42",
            "name": "everything"
          }
        ],
        "series": [],
        "source": [],
        "locations": [],
        "audience": [],
        "person": [],
        "organization": [],
        "event": [],
        "genre": [],
        "concept": []
      },
      "x-stoplight": {
        "id": "ConsumerCollectionFeaturedImage",
        "name": "ConsumerCollectionFeaturedImage",
        "public": true
      }
    }
  },
  "x-stoplight": {
    "version": {
      "groups": {
        "docs": [
          {
            "divider": false,
            "items": [
              {
                "_id": "GET_",
                "type": "endpoints"
              }
            ],
            "name": "Endpoints"
          },
          {
            "divider": false,
            "items": [
              {
                "_id": "ConsumerArticle",
                "type": "schemas"
              },
              {
                "_id": "AEMAltBodies",
                "type": "schemas"
              },
              {
                "_id": "ConsumerMagazineIssue",
                "type": "schemas"
              },
              {
                "_id": "FeaturedImage",
                "type": "schemas"
              },
              {
                "_id": "ConsumerCollectionFeaturedImage",
                "type": "schemas"
              }
            ],
            "name": "Assets"
          }
        ],
        "traits": [],
        "tests": [],
        "savedEntries": []
      }
    },
    "functions": {},
    "textSections": {},
    "mock": {
      "enabled": false,
      "dynamic": false
    }
  },
  "x-tests": {}
}
