Amazon Monitron · Schema

ListProjectsResponse

ListProjectsResponse schema from Amazon Monitron API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
items array A list of Monitron projects.
nextToken string A pagination token to retrieve the next set of results.
View JSON Schema on GitHub

JSON Schema

monitron-api-list-projects-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-monitron/refs/heads/main/json-schema/monitron-api-list-projects-response-schema.json",
  "title": "ListProjectsResponse",
  "description": "ListProjectsResponse schema from Amazon Monitron API",
  "type": "object",
  "properties": {
    "items": {
      "description": "A list of Monitron projects.",
      "items": {
        "$ref": "#/components/schemas/Project"
      },
      "type": "array"
    },
    "nextToken": {
      "description": "A pagination token to retrieve the next set of results.",
      "type": "string"
    }
  }
}