contentstack · Schema

ProjectList

A list of automation projects.

Properties

Name Type Description
data array Array of project objects.
View JSON Schema on GitHub

JSON Schema

contentstack-projectlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectList",
  "title": "ProjectList",
  "type": "object",
  "description": "A list of automation projects.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of project objects.",
      "items": {
        "$ref": "#/components/schemas/Project"
      }
    }
  }
}