Render · Schema

projectPOSTInput

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
name string The name of the project
ownerId string The ID of the owner that the project belongs to
environments array The environments to create when creating the project
View JSON Schema on GitHub

JSON Schema

render-projectpostinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/projectPOSTInput",
  "title": "projectPOSTInput",
  "type": "object",
  "required": [
    "name",
    "ownerId",
    "environments"
  ],
  "properties": {
    "name": {
      "description": "The name of the project",
      "type": "string"
    },
    "ownerId": {
      "description": "The ID of the owner that the project belongs to",
      "type": "string"
    },
    "environments": {
      "description": "The environments to create when creating the project",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/projectPOSTEnvironmentInput"
      }
    }
  }
}