contentstack · Schema

CreateProjectRequest

Parameters for creating or updating a project.

Properties

Name Type Description
name string Display name for the project.
description string Description of the project's purpose.
View JSON Schema on GitHub

JSON Schema

contentstack-createprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateProjectRequest",
  "title": "CreateProjectRequest",
  "type": "object",
  "description": "Parameters for creating or updating a project.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the project."
    },
    "description": {
      "type": "string",
      "description": "Description of the project's purpose."
    }
  }
}