github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/schemas/repo_sync.yaml (about)

     1  ---
     2  repo_sync:
     3    type: object
     4    title: repo_sync
     5    properties:
     6      id:
     7        type: string
     8      project:
     9        "$ref": "./project_short.yaml#/project_short"
    10      provider:
    11        type: string
    12      enabled:
    13        type: boolean
    14      auto_import:
    15        type: boolean
    16      repo_name:
    17        type: string
    18      created_at:
    19        type: string
    20        format: date-time
    21      last_import_at:
    22        type: string
    23        format: date-time
    24      last_export_at:
    25        type: string
    26        format: date-time
    27    example:
    28      id: abcd1234cdef1234abcd1234cdef1234
    29      project:
    30        id: abcd1234cdef1234abcd1234cdef1234
    31        name: My Android Project
    32        main_format: xml
    33        created_at: '2015-01-28T09:52:53Z'
    34        updated_at: '2015-01-28T09:52:53Z'
    35      provider: github
    36      enabled: true
    37      auto_import: true
    38      repo_name: organization/repo
    39      created_at: '2015-01-28T09:52:53Z'
    40      last_import_at: '2015-01-28T09:52:53Z'
    41      last_export_at: '2015-01-28T09:52:53Z'