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

     1  ---
     2  format:
     3    type: object
     4    title: format
     5    properties:
     6      name:
     7        type: string
     8      api_name:
     9        type: string
    10      description:
    11        type: string
    12      extension:
    13        type: string
    14      default_encoding:
    15        type: string
    16      importable:
    17        type: boolean
    18      exportable:
    19        type: boolean
    20      default_file:
    21        type: string
    22      renders_default_locale:
    23        type: boolean
    24      includes_locale_information:
    25        type: boolean
    26    example:
    27      name: Ruby/Rails YAML
    28      api_name: yml
    29      description: YAML file format for use with Ruby/Rails applications
    30      extension: yml
    31      default_encoding: UTF-8
    32      importable: true
    33      exportable: true
    34      default_file: "./config/locales/<locale_name>.yml"
    35      renders_default_locale: false
    36      includes_locale_information: true