Autodesk Construction Cloud · Schema
IssueRequest
ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management
Properties
| Name | Type | Description |
|---|---|---|
| title | string | |
| description | string | |
| issueTypeId | string | |
| issueSubtypeId | string | |
| status | string | |
| dueDate | string | |
| assignedToId | string | |
| locationId | string | |
| locationDescription | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IssueRequest",
"title": "IssueRequest",
"type": "object",
"required": [
"title",
"issueTypeId",
"issueSubtypeId"
],
"properties": {
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"issueTypeId": {
"type": "string"
},
"issueSubtypeId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"draft",
"open"
],
"default": "open"
},
"dueDate": {
"type": "string",
"format": "date"
},
"assignedToId": {
"type": "string"
},
"locationId": {
"type": "string"
},
"locationDescription": {
"type": "string"
}
}
}