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

     1  ---
     2  space:
     3    type: object
     4    title: space
     5    properties:
     6      id:
     7        type: string
     8      name:
     9        type: string
    10      created_at:
    11        type: string
    12        format: date-time
    13      updated_at:
    14        type: string
    15        format: date-time
    16      projects_count:
    17        type: integer
    18      projects:
    19        type: array
    20        items:
    21          "$ref": "./project.yaml#/project"
    22    example:
    23      id: 2e7574e8f2372906a03110c2a7cfe671
    24      name: My first space
    25      created_at: '2020-02-25T12:17:25Z'
    26      updated_at: '2020-03-13T14:46:57Z'
    27      projects_count: 2
    28      projects:
    29      - id: abcd1234cdef1234abcd1234cdef1234
    30        name: My Android Project
    31        main_format: xml
    32        project_image_url: http://assets.example.com/project.png
    33        account: account
    34        created_at: '2015-01-28T09:52:53Z'
    35        updated_at: '2015-01-28T09:52:53Z'
    36      - id: abcd11231fadef1234adacd1234cdef1234
    37        name: My IOS Project
    38        main_format: yml
    39        project_image_url: http://assets.example.com/project2.png
    40        account: account
    41        created_at: '2015-01-28T09:52:53Z'
    42        updated_at: '2015-01-28T09:52:53Z'