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

     1  ---
     2  job:
     3    type: object
     4    title: job
     5    properties:
     6      id:
     7        type: string
     8      name:
     9        type: string
    10      briefing:
    11        type: string
    12      due_date:
    13        type: string
    14        format: date-time
    15        nullable: true
    16      state:
    17        type: string
    18      ticket_url:
    19        type: string
    20      project:
    21        "$ref": "./project_short.yaml#/project_short"
    22      branch:
    23        "$ref": "./branch_name.yaml#/branch_name"
    24      created_at:
    25        type: string
    26        format: date-time
    27      updated_at:
    28        type: string
    29        format: date-time
    30    example:
    31      id: 626ea67628690c73ac86ac81eec2d185
    32      name: Translations for new Feature
    33      briefing: Some instructions for the translators
    34      due_date: '2017-02-28T09:52:53Z'
    35      state: completed
    36      ticket_url: 'https://example.atlassian.net/browse/FOO'
    37      created_at: '2017-01-28T09:52:53Z'
    38      updated_at: '2017-01-28T09:52:53Z'
    39      project:
    40        id: abcd1234cdef1234abcd1234cdef1234
    41        name: My Android Project
    42        main_format: xml
    43        created_at: '2015-01-28T09:52:53Z'
    44        updated_at: '2015-01-28T09:52:53Z'