Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 490 Bytes

File metadata and controls

30 lines (25 loc) · 490 Bytes

Process schemas

Process List Item
Process

Process List Item

type ProcessListItem = {
    id: string
  ; name: string
}

Process

type Process = {
    id: string
  ; name: string
  ; description: string
  ; lastModifiedBy: string
  ; dateModified: string
  ; dateCreated: string
  ; alertEmailAddress: string
  ; alertSMS: string
  ; availableToSubscriber: boolean
  ; runsAvailableToSubscriber: boolean
}