CreateProjectRequest schema from Activepieces API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/activepieces/refs/heads/main/json-schema/activepieces-create-project-request-schema.json", "title": "CreateProjectRequest", "description": "CreateProjectRequest schema from Activepieces API", "type": "object", "properties": { "displayName": { "type": "string", "description": "Project name", "example": "New Project" } }, "required": [ "displayName" ] }