草庐IT

javascript - JSON 架构 : "allof" with "additionalProperties"

假设我们有模式跟随模式(来自教程here):{"$schema":"http://json-schema.org/draft-04/schema#","definitions":{"address":{"type":"object","properties":{"street_address":{"type":"string"},"city":{"type":"string"},"state":{"type":"string"}},"required":["street_address","city","state"]}},"type":"object","properties":{"
12