Asana · Schema

CustomFieldCompact

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
gid string
resource_type string
name string
resource_subtype string
type string
View JSON Schema on GitHub

JSON Schema

asana-customfieldcompact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldCompact",
  "title": "CustomFieldCompact",
  "type": "object",
  "properties": {
    "gid": {
      "type": "string",
      "readOnly": true,
      "example": "12345"
    },
    "resource_type": {
      "type": "string",
      "readOnly": true,
      "example": "custom_field"
    },
    "name": {
      "type": "string",
      "example": "Priority"
    },
    "resource_subtype": {
      "type": "string",
      "enum": [
        "text",
        "enum",
        "multi_enum",
        "number",
        "date",
        "people"
      ],
      "example": "enum"
    },
    "type": {
      "type": "string",
      "enum": [
        "text",
        "enum",
        "multi_enum",
        "number",
        "date",
        "people"
      ]
    }
  }
}