第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Golang invopop jsonschema if/then/else 用法

Golang invopop jsonschema if/then/else 用法

Go
不負(fù)相思意 2023-02-21 12:56:18
我正在使用庫(kù) invopop/jsonschema來(lái)生成基于 go struct 標(biāo)簽的 json-schema。但我在如何使用 if/then/else 屬性上苦苦掙扎。我在做這樣的事情type Boulou struct {    Name              string                   `json:"name" jsonschema:"required,minLength=1,description=unique name"`    Transformers      []TransformerConfig `json:"transformers" jsonschema:"title=transformers,if=properties.kind.const=convert_swim,then=required[0]=convert_swim_config"`}但似乎不起作用(如果你想玩的話,我做了一個(gè)圍棋游樂(lè)場(chǎng))。提前致謝 !資源:條件的 json-schema 規(guī)范:https ://json-schema.org/understanding-json-schema/reference/conditionals.html
查看完整描述

1 回答

?
當(dāng)年話下

TA貢獻(xiàn)1890條經(jīng)驗(yàn) 獲得超9個(gè)贊

在 invopop/jsonschema 中使用 Go 標(biāo)簽并不能很好地支持這些復(fù)雜的用例。任何打破常規(guī)用例的東西我都建議實(shí)施該JSONSchema()方法,以便您可以手動(dòng)定義對(duì)象。按照你的例子:


type Boulou struct {

    Name              string              `json:"name"`

    Transformers      []TransformerConfig `json:"transformers"`

}


func (Boulou) JSONSchema() *jsonschema.Schema {

  props = orderedmap.New()

  props.Set("name", &jsonschema.Schema{

    Type: "string",

    Title: "Name",

  })

  props.Set("transformers", &jsonschema.Schema{

    Type: "array",

    Title: "Transformers",

    Items: &jsonschema.Schema{

      Ref:  ".....",

      If:   "properties.kind.const=convert_swim",

      Then: "required[0]=convert_swim_config",

    },

  })

  return &jsonschema.Schema{

    Type:       "object",

    Title:      "Boulou",

    Properties: props,

  }

}

我沒(méi)有直接測(cè)試過(guò)這個(gè),但我相信你明白了。您需要手動(dòng)弄清楚Ref您的TransformerConfig是什么。


更新:現(xiàn)在有一個(gè)新的PR #52,一旦發(fā)布,應(yīng)該會(huì)更容易做到!



查看完整回答
反對(duì) 回復(fù) 2023-02-21
  • 1 回答
  • 0 關(guān)注
  • 223 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)