“判别器"在多态性方面,OpenAPI 2.0(Swagger 2.0) [英] "discriminator" in polymorphism, OpenAPI 2.0 (Swagger 2.0)

查看:156
本文介绍了“判别器"在多态性方面,OpenAPI 2.0(Swagger 2.0)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

引用 OpenAPI 2.0,架构对象 Swagger 2.0,架构对象discriminator字段的定义为:

Referencing OpenAPI 2.0, Schema Object, or Swagger 2.0, Schema Object, and the definition of discriminator field as:

增加了对多态性的支持.区分符是架构属性名称,用于在继承该架构的其他架构之间进行区分.必须在此模式下定义使用的属性名称,并且该属性名称必须在required属性列表中.使用时,值必须是此架构或继承该架构的任何架构的名称.

Adds support for polymorphism. The discriminator is the schema property name that is used to differentiate between other schema that inherit this schema. The property name used MUST be defined at this schema and it MUST be in the required property list. When used, the value MUST be the name of this schema or any schema that inherits it.

我的困惑/问题:

  • 这对我来说是模棱两可的,它究竟在继承或多态性中起什么作用.有人可以用一个工作示例解释discriminator的确切作用,如果不使用它怎么办?在某些操作中是否有任何错误,警告或依赖它的工具?
  • 是否 swagger-editor 不支持discriminator,并且使用了此字段在其他一些工具中?
  • It is ambiguous to me, what role exactly it plays in inheritance or polymorphism. Could some one please explain discriminator with a working example showing what it exactly does and what if we do not use it? Any errors, warnings or any tools that depends on it for some operations?
  • Is it the case that swagger-editor does not support discriminator, and this field is used in some other tools?

到目前为止,我已经尝试过:

  • 我尝试使用 swagger-editor 和同一文档中的示例(也在下面提到) ,请尝试使用此属性,看看是否可以看到其任何特殊行为.我更改了属性,将其删除,然后将Dog模型扩展到了一个更高的级别,并在新的子模型上进行了尝试,但是在
  • I have tried to use swagger-editor and the example from the same documentation (also mentioned below), to play around with this property to see if I can see any of its special behaviors. I changed the property, removed it, and extend the Dog model to one level deeper and tried the same on the new sub-model, but I did not see any changes in the preview of swagger-editor.
  • I tried searching online, and specially stackoverflow questions, but did not find any relevant information.

我用来做实验的示例代码:

definitions:
  Pet:
    type: object
    discriminator: petType
    properties:
      name:
        type: string
      petType:
        type: string
    required:
    - name
    - petType
  Cat:
    description: A representation of a cat
    allOf:
    - $ref: '#/definitions/Pet'
    - type: object
      properties:
        huntingSkill:
          type: string
          description: The measured skill for hunting
          default: lazy
          enum:
          - clueless
          - lazy
          - adventurous
          - aggressive
      required:
      - huntingSkill
  Dog:
    description: A representation of a dog
    allOf:
    - $ref: '#/definitions/Pet'
    - type: object
      properties:
        packSize:
          type: integer
          format: int32
          description: the size of the pack the dog is from
          default: 0
          minimum: 0
      required:
      - packSize

推荐答案

根据此 Google网上论坛discriminator用于allOf属性的顶部,并且在多态的超类型中进行了定义.如果不使用discriminator,则allOf关键字描述一个模型包含其他模型的组成属性.

According to this google group, discriminator is used on top of the allOf property and it is defined in the super type for polymorphism. If discriminator is not used, the allOf keyword describes that a model contains the properties of other models for composition.

就像在您的示例代码中一样,Pet是具有petType属性的超类型,其标识为discriminator,而CatPet的子类型.以下是Cat对象的json示例:

Just like in your sample code, Pet is a super type with property of petType identified as the discriminator and Cat is a sub type of Pet. Following is a json example of a Cat object:

{
  "petType": "Cat",
  "name": "‎Kitty"
}

使用discriminator旨在指示用于标识对象类型的属性.假设有一些工具可以使用discriminator适当支持定义对象,则可以通过扫描属性来确定类型.例如,根据petType标识对象是Cat.

The use of discriminator intends to indicate the property used to identify the type of an object. Assumes that there are tools that can proper support definition objects with the use of discriminator, it is possible to determine the type by scanning the property. For example, identify the object is a Cat according to petType.

但是,discriminator字段在当前版本的规范或示例中定义不正确(请参见

However, the discriminator field is not well defined in the current version's specification or the samples (see issue #403). As far as I know, there is no tools provided by Swagger properly support it at the time being.

discriminator.在这种情况下,它很自然,可以用作其他开发人员了解多态关系的指标.如果支持discriminator的第三方工具(如 ReDoc )(请参见此

discriminator may be used if the model has a property used to determine the type. In this case, it is naturally fit and it can be used as an indicator for other developers understand the polymorphism relationship. If third party tools like ReDoc which support discriminator (see petType in this gif and example) is considered, you may find this useful.

这篇关于“判别器"在多态性方面,OpenAPI 2.0(Swagger 2.0)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆