# SyncSourcesRequest

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    SyncSourcesRequest:
      type: object
      properties:
        source:
          type: string
          enum:
            - all
            - devto
            - remoteok
          default: all
          description: >-
            Which data source to sync: 'all' syncs both, 'devto' syncs DEV.to
            only, 'remoteok' syncs RemoteOK only
        devto_tag:
          type: string
          default: hackathon
          description: >-
            Tag to search for on DEV.to (only used when source is 'devto' or
            'all')
        limit:
          type: integer
          minimum: 1
          maximum: 100
          default: 30
          description: Maximum items to fetch per source
      x-apidog-orders:
        - source
        - devto_tag
        - limit
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
