University of Western Australia events API

The events API from University of Western Australia — 4 operation(s) for events.

OpenAPI Specification

uwa-events-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Pure Web Service 524 activities events API
  description: 'This is the Pure Web Service. Listed below are all available endpoints, along with a short description.<br/><br/>In order to use the Pure Web Service, you must enter an API key. These are generated in the Administrator tab of Pure, and issued with a given set of available endpoints.<br/>To enter your API key and begin your use, press the ''Authorize'' button to at the top of this page. <br/>You are then presented with two options for entering the API key: <ol><li>Use the API key in query format.</li><li>Use the API key in a header.</li><br/> For further documentation, see <a href="documentation/Default.htm">Web Service Documentation</a>.<br/><br/>This is final version of the legacy versioned Web Service, and will be available until otherwise announced in release notes.<br/>Please note that when doing new development it is advised to investigate the new Pure API - to see if relevant endpoints are available for your use case.<br/><em>If enabled</em>, you can can see documentation here <a href="../..">API Documentation</a>.<br/><br/>'
  version: '524'
  contact:
    name: Elsevier
servers:
- url: https://api.research-repository.uwa.edu.au/ws/api/524
security:
- apiKey: []
- api-key: []
tags:
- name: events
paths:
  /events:
    get:
      tags:
      - events
      summary: Lists all events
      description: Lists all events in the Pure instance. If you need to filter the events returned, see the POST version which supports additional filtering.
      operationId: listEvents
      security:
      - apiKey: []
      - api-key: []
      parameters:
      - name: q
        in: query
        required: false
        description: Free text search string using Lucene query syntax. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#q_param">Read more...</a>
        schema:
          type: string
      - name: fields
        in: query
        required: false
        description: Limit the fields included in the response. E.g. 'nameVariants.nameVariant' will only return the name variants. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#fields_param">Read more...</a>
        schema:
          type: array
          items:
            type: string
      - name: order
        in: query
        required: false
        description: 'Specify the ordering of content in the result. Default: ID ascending. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#order_param">Read more...</a>'
        schema:
          type: array
          enum:
          - created
          - rating
          - modified
          - title
          items:
            type: string
      - name: orderBy
        in: query
        required: false
        description: 'Choose the directionality of the result. If set, this will override direction on ''Order''. Read more about order elements and direction here: <a href="documentation/Content/Topics/Parameter_Descriptions.htm#order_param">Read more...</a>'
        schema:
          type: string
          enum:
          - ascending
          - descending
      - name: locale
        in: query
        required: false
        description: Enter the desired locale. E.g. 'en_GB' will only return the English text strings. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#locale_param">Read more...</a>
        schema:
          type: array
          enum:
          - en_GB
          items:
            type: string
      - name: fallbackLocale
        in: query
        required: false
        description: Fallback locale string. Syntax is 'Locale1=>Locale2' to map Locale1 to Locale2. E.g. 'da_DK=>en_GB'. Locale1 must be equal to the locale provided in the locale string. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#fallbackLocale_param">Read more...</a>
        schema:
          type: array
          items:
            type: string
      - name: rendering
        in: query
        required: false
        description: HTML rendering formats. If rendering formats are specified, the content will be returned in these formats instead of XML. If XML is also wanted, it can be included using the fields parameter. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#rendering_param">Read more...</a>
        schema:
          type: array
          enum:
          - ddp_metadata
          - system
          - expertKeywordGroupsPortal
          - short
          - long
          items:
            type: string
      - name: linkingStrategy
        in: query
        required: false
        description: Specify the linking strategy to use when creating HTML renderings. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#linkingStrategy_param">Read more...</a>
        schema:
          type: string
          enum:
          - documentLinkingStrategy
          - portalLinkingStrategy
          - ddpLinkingStrategy
          - noLinkingStrategy
          - externalSourceIdLinkingStrategy
      - name: returnUsedContent
        in: query
        required: false
        description: If 'true', the IDs of the content used to create HTML renderings are returned as part of the result. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#usedContent_param">Read more...</a>
        schema:
          type: boolean
      - name: navigationLink
        in: query
        required: false
        description: 'Include navigation links for paging and content. Default: true. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#navLink_param">Read more...</a>'
        schema:
          type: boolean
      - name: size
        in: query
        required: false
        description: 'Enter the number of results per window. Default: 10. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#size_offset_param">Read more...</a>'
        schema:
          type: integer
      - name: offset
        in: query
        required: false
        description: 'Enter the offset into the total result set where items should be returned from. Default: 0. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#size_offset_param">Read more...</a>'
        schema:
          type: integer
      - name: page
        in: query
        required: false
        description: Enter the desired page number. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#page_size_param">Read more...</a>
        schema:
          type: integer
      - name: pageSize
        in: query
        required: false
        description: Enter the desired number of results per page. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#page_size_param">Read more...</a>
        schema:
          type: integer
      responses:
        '200':
          description: Successful operation
          content:
            application/xml:
              schema: &id001
                $ref: '#/components/schemas/WSEventListResult'
            application/json:
              schema: *id001
    post:
      tags:
      - events
      summary: Complex operation for events
      description: Lists events in the Pure instance, similar to the GET version, instead of using parameters to alter the response, an XML document is posted with the request. The XML document contains fields for all the parameters available for the GET version, but also additional filtering options. For documentation of the XML format see <a href="documentation/Content/Topics/CT_Event.htm#post_xml">Event documentation</a>.
      operationId: listEvents_1
      security:
      - apiKey: []
      - api-key: []
      requestBody:
        content:
          application/xml:
            schema: &id002
              $ref: '#/components/schemas/WSEventsQuery'
          application/json:
            schema: *id002
      responses:
        '200':
          description: Successful operation
          content:
            application/xml:
              schema: &id003
                $ref: '#/components/schemas/WSEventListResult'
            application/json:
              schema: *id003
  /events-meta/orderings:
    get:
      tags:
      - events
      summary: Lists available orderings
      description: Lists all orderings available to the event endpoint. These values can be used by the order parameter.
      operationId: getAvailableOrderings_7
      security:
      - apiKey: []
      - api-key: []
      responses:
        '200':
          description: Successful operation
          content:
            application/xml:
              schema: &id004
                $ref: '#/components/schemas/WSOrderingsList'
            application/json:
              schema: *id004
  /events-meta/renderings:
    get:
      tags:
      - events
      summary: Lists available renderings
      description: Lists all renderings available to the event endpoint. These values can be used by the rendering parameter.
      operationId: getAvailableRenderings_7
      security:
      - apiKey: []
      - api-key: []
      responses:
        '200':
          description: Successful operation
          content:
            application/xml:
              schema: &id005
                $ref: '#/components/schemas/WSRenderingsList'
            application/json:
              schema: *id005
  /events/{id}:
    get:
      tags:
      - events
      summary: Get event
      description: Get an event with a specific ID (path parameter).
      operationId: getEvent
      security:
      - apiKey: []
      - api-key: []
      parameters:
      - name: id
        in: path
        required: true
        description: ID of the desired event
        schema:
          type: string
      - name: idClassificationType
        in: query
        required: false
        description: Give an optional classification type used to specify which type of ID should be used in the match. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#idclassification_param">Read more...</a>
        schema:
          type: string
      - name: idClassification
        in: query
        required: false
        description: Give an optional classification used to specify which type of ID should be used in the match. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#idclassification_param">Read more...</a>
        schema:
          type: string
      - name: fields
        in: query
        required: false
        description: Limit the fields included in the response. E.g. 'nameVariants.nameVariant' will only return the name variants. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#fields_param">Read more...</a>
        schema:
          type: array
          items:
            type: string
      - name: locale
        in: query
        required: false
        description: Enter the desired locale. E.g. 'en_GB' will only return the English text strings. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#locale_param">Read more...</a>
        schema:
          type: array
          enum:
          - en_GB
          items:
            type: string
      - name: fallbackLocale
        in: query
        required: false
        description: Fallback locale string. Syntax is 'Locale1=>Locale2' to map Locale1 to Locale2. E.g. 'da_DK=>en_GB'. Locale1 must be equal to the locale provided in the locale string. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#fallbackLocale_param">Read more...</a>
        schema:
          type: array
          items:
            type: string
      - name: rendering
        in: query
        required: false
        description: HTML rendering formats. If rendering formats are specified, the content will be returned in these formats instead of XML. If XML is also wanted, it can be included using the fields parameter. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#rendering_param">Read more...</a>
        schema:
          type: array
          enum:
          - ddp_metadata
          - system
          - expertKeywordGroupsPortal
          - short
          - long
          items:
            type: string
      - name: returnUsedContent
        in: query
        required: false
        description: If 'true', the IDs of the content used to create HTML renderings are returned as part of the result. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#usedContent_param">Read more...</a>
        schema:
          type: boolean
      - name: navigationLink
        in: query
        required: false
        description: 'Include navigation links for paging and content. Default: true. <a href="documentation/Content/Topics/Parameter_Descriptions.htm#navLink_param">Read more...</a>'
        schema:
          type: boolean
      responses:
        '200':
          description: Successful operation
          content:
            application/xml:
              schema: &id006
                $ref: '#/components/schemas/WSEvent'
            application/json:
              schema: *id006
        '404':
          description: Resource not found
          content:
            application/xml:
              schema: &id007
                $ref: '#/components/schemas/WSErrorResult'
            application/json:
              schema: *id007
components:
  schemas:
    WSResidencyFlag:
      type: object
      properties:
        key:
          type: string
          enum:
          - UNKNOWN
          - HOME
          - OVERSEAS
        value:
          $ref: '#/components/schemas/WSLocalizedString'
    WSPageInformation:
      type: object
      properties:
        offset:
          type: integer
          format: int32
        size:
          type: integer
          format: int32
      xml:
        name: pageInformation
    WSPersonExternalPosition:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        appointment:
          $ref: '#/components/schemas/WSClassification'
        appointmentValue:
          $ref: '#/components/schemas/WSLocalizedString'
        externalOrganisation:
          $ref: '#/components/schemas/WSExternalOrganisationRef'
        period:
          $ref: '#/components/schemas/WSCompoundDateRange'
    WSHonoraryStaffOrganisationAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        person:
          $ref: '#/components/schemas/WSPersonRef'
        affiliationId:
          type: string
        addresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: address
            $ref: '#/components/schemas/WSClassifiedAddress'
        emails:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: email
            $ref: '#/components/schemas/WSClassifiedValue'
        phoneNumbers:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: phoneNumber
            $ref: '#/components/schemas/WSClassifiedValue'
        employmentType:
          $ref: '#/components/schemas/WSClassification'
        webAddresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: webAddress
            $ref: '#/components/schemas/WSClassifiedLocalizedValue'
        organisation:
          xml:
            name: organisationalUnit
          $ref: '#/components/schemas/WSOrganisationRef'
        period:
          $ref: '#/components/schemas/WSDateRange'
        keywordGroups:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: keywordGroup
            $ref: '#/components/schemas/WSKeywordGroup'
        jobDescription:
          $ref: '#/components/schemas/WSLocalizedString'
        jobTitle:
          $ref: '#/components/schemas/WSClassification'
        primaryAssociation:
          type: boolean
    WSEventsQuery:
      type: object
      properties:
        uuids:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: uuid
        size:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        linkingStrategy:
          type: string
        locales:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: locale
        fallbackLocales:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: fallbackLocale
        renderings:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: rendering
        fields:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: field
        orderings:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: ordering
        returnUsedContent:
          type: boolean
        navigationLink:
          type: boolean
        ids:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: id
        idClassification:
          type: string
        idClassificationType:
          type: string
        modifiedAfter:
          type: string
          format: date-time
        modifiedBefore:
          type: string
          format: date-time
        createdAfter:
          type: string
          format: date-time
        createdBefore:
          type: string
          format: date-time
        searchString:
          type: string
        titles:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: title
        excludeByTypeUri:
          type: boolean
        typeUris:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: typeUri
        workflowSteps:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: workflowStep
        keywordURIs:
          type: array
          xml:
            name: keywordUris
            wrapped: true
          items:
            type: string
            xml:
              name: keywordUri
        freeKeywords:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: freeKeyword
      xml:
        name: eventsQuery
    WSClassifiedLocalizedValue:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        value:
          $ref: '#/components/schemas/WSLocalizedString'
        classification:
          xml:
            name: type
          $ref: '#/components/schemas/WSClassification'
    WSInternalExternalOrganisationAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        organisation:
          xml:
            name: organisationalUnit
          $ref: '#/components/schemas/WSOrganisationRef'
        externalOrganisation:
          xml:
            name: externalOrganisationalUnit
          $ref: '#/components/schemas/WSExternalOrganisationRef'
    WSCompoundDate:
      type: object
      properties:
        year:
          type: integer
          format: int32
        month:
          type: integer
          format: int32
        day:
          type: integer
          format: int32
    WSAddress:
      type: object
      properties:
        address1:
          type: string
        address2:
          type: string
        address3:
          type: string
        address4:
          type: string
        address5:
          type: string
        postalCode:
          type: string
        city:
          type: string
        country:
          $ref: '#/components/schemas/WSClassification'
        subdivision:
          $ref: '#/components/schemas/WSClassification'
        state:
          type: string
        geoLocation:
          $ref: '#/components/schemas/WSGeoLocation'
      xml:
        name: address
    WSPersonOrganisationAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        person:
          $ref: '#/components/schemas/WSPersonRef'
        affiliationId:
          type: string
        addresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: address
            $ref: '#/components/schemas/WSClassifiedAddress'
        emails:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: email
            $ref: '#/components/schemas/WSClassifiedValue'
        phoneNumbers:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: phoneNumber
            $ref: '#/components/schemas/WSClassifiedValue'
        employmentType:
          $ref: '#/components/schemas/WSClassification'
        webAddresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: webAddress
            $ref: '#/components/schemas/WSClassifiedLocalizedValue'
        organisation:
          xml:
            name: organisationalUnit
          $ref: '#/components/schemas/WSOrganisationRef'
        period:
          $ref: '#/components/schemas/WSDateRange'
        keywordGroups:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: keywordGroup
            $ref: '#/components/schemas/WSKeywordGroup'
        primaryAssociation:
          type: boolean
    WSPersonSupervisorAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        supervisor:
          $ref: '#/components/schemas/WSPersonRef'
        externalSupervisor:
          $ref: '#/components/schemas/WSExternalPersonRef'
        supervisionPercentage:
          type: integer
          format: int32
        period:
          $ref: '#/components/schemas/WSDateRange'
        supervisorRole:
          $ref: '#/components/schemas/WSClassification'
        student:
          $ref: '#/components/schemas/WSPersonOrganisationAssociation'
    WSClassifiedValue:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        value:
          $ref: '#/components/schemas/WSValue'
        classification:
          xml:
            name: type
          $ref: '#/components/schemas/WSClassification'
    WSPersonEducationSupervisorAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        supervisor:
          $ref: '#/components/schemas/WSPersonRef'
        externalSupervisor:
          $ref: '#/components/schemas/WSExternalPersonRef'
    WSEventRef:
      type: object
      properties:
        uuid:
          type: string
          xml:
            attribute: true
        link:
          $ref: '#/components/schemas/WSNavigationLink'
        name:
          $ref: '#/components/schemas/WSLocalizedString'
        type:
          $ref: '#/components/schemas/WSClassification'
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        ref:
          $ref: '#/components/schemas/WSEvent'
    WSPersonExpertise:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        areasOfExpertise:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: areaOfExpertise
        areaOfExpertiseClassifications:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: areaOfExpertiseClassification
            $ref: '#/components/schemas/WSClassification'
        willingnessToMedia:
          type: boolean
        moderatedWillingnessToMedia:
          type: boolean
        type:
          $ref: '#/components/schemas/WSClassification'
    WSUuidList:
      type: object
      properties:
        family:
          type: string
          xml:
            attribute: true
        uuids:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: uuid
    WSKeyword:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        locale:
          type: string
          xml:
            attribute: true
        freeKeywords:
          type: array
          xml:
            wrapped: true
          items:
            type: string
            xml:
              name: freeKeyword
    WSPersonEducation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        period:
          $ref: '#/components/schemas/WSCompoundDateRange'
        fieldOfStudy:
          $ref: '#/components/schemas/WSClassification'
        qualification:
          $ref: '#/components/schemas/WSClassification'
        awardDate:
          type: string
          format: date-time
        organisationalUnits:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: organisationalUnit
            $ref: '#/components/schemas/WSInternalExternalOrganisationAssociation'
        projectTitle:
          $ref: '#/components/schemas/WSLocalizedString'
        distinction:
          $ref: '#/components/schemas/WSClassification'
        supervisor:
          $ref: '#/components/schemas/WSPersonEducationSupervisorAssociation'
    WSVisitingScholarOrganisationAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        person:
          $ref: '#/components/schemas/WSPersonRef'
        affiliationId:
          type: string
        addresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: address
            $ref: '#/components/schemas/WSClassifiedAddress'
        emails:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: email
            $ref: '#/components/schemas/WSClassifiedValue'
        phoneNumbers:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: phoneNumber
            $ref: '#/components/schemas/WSClassifiedValue'
        employmentType:
          $ref: '#/components/schemas/WSClassification'
        webAddresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: webAddress
            $ref: '#/components/schemas/WSClassifiedLocalizedValue'
        organisation:
          xml:
            name: organisationalUnit
          $ref: '#/components/schemas/WSOrganisationRef'
        period:
          $ref: '#/components/schemas/WSDateRange'
        keywordGroups:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: keywordGroup
            $ref: '#/components/schemas/WSKeywordGroup'
        purposeOfStay:
          type: string
        visitorFrom:
          $ref: '#/components/schemas/WSExternalOrganisationRef'
        jobDescription:
          $ref: '#/components/schemas/WSLocalizedString'
        jobTitle:
          $ref: '#/components/schemas/WSClassification'
        primaryAssociation:
          type: boolean
    WSStaffOrganisationAssociation:
      type: object
      properties:
        pureId:
          type: integer
          format: int64
          xml:
            attribute: true
        externalId:
          type: string
          xml:
            attribute: true
        externalIdSource:
          type: string
          xml:
            attribute: true
        externallyManaged:
          type: boolean
          xml:
            attribute: true
        person:
          $ref: '#/components/schemas/WSPersonRef'
        affiliationId:
          type: string
        addresses:
          type: array
          xml:
            wrapped: true
          items:
            xml:
              name: address
            $ref: '#/components/schemas/WSClassifiedAddress'
        emails:
          type: array
          xml:
            wrapped: true
          items:
 

# --- truncated at 32 KB (72 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/uwa/refs/heads/main/openapi/uwa-events-api-openapi.yml