ListProjectsResponse

ListProjectsResponse schema from Amazon Glue DataBrew API

Data AnalyticsData PreparationETLMachine Learning

Properties

Name Type Description
Projects object
NextToken object
View JSON Schema on GitHub

JSON Schema

glue-databrew-list-projects-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-list-projects-response-schema.json",
  "title": "ListProjectsResponse",
  "description": "ListProjectsResponse schema from Amazon Glue DataBrew API",
  "type": "object",
  "properties": {
    "Projects": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectList"
        },
        {
          "description": "A list of projects that are defined ."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A token that you can use in a subsequent call to retrieve the next set of results."
        }
      ]
    }
  },
  "required": [
    "Projects"
  ]
}