{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/projects-v2", "title": "Projects v2 Project", "description": "A projects v2 project", "type": "object", "properties": { "id": { "type": "number" }, "node_id": { "type": "string" }, "owner": { "$ref": "#/components/schemas/simple-user" }, "creator": { "$ref": "#/components/schemas/simple-user" }, "title": { "type": "string" }, "description": { "type": "string", "nullable": true }, "public": { "type": "boolean" }, "closed_at": { "type": "string", "format": "date-time", "example": "2022-04-28T12:00:00Z", "nullable": true }, "created_at": { "type": "string", "format": "date-time", "example": "2022-04-28T12:00:00Z" }, "updated_at": { "type": "string", "format": "date-time", "example": "2022-04-28T12:00:00Z" }, "number": { "type": "integer" }, "short_description": { "type": "string", "nullable": true }, "deleted_at": { "type": "string", "format": "date-time", "example": "2022-04-28T12:00:00Z", "nullable": true }, "deleted_by": { "$ref": "#/components/schemas/nullable-simple-user" } }, "required": [ "id", "node_id", "owner", "creator", "title", "description", "public", "closed_at", "created_at", "updated_at", "number", "short_description", "deleted_at", "deleted_by" ] }