| 629 | } |
| 630 | |
| 631 | JsonObjectValue *JsonSchema::getObjectValue(const QString &name, JsonObjectValue *value) |
| 632 | { |
| 633 | JsonValue *v = value->member(name); |
| 634 | if (!v) |
| 635 | return 0; |
| 636 | |
| 637 | return v->toObject(); |
| 638 | } |
| 639 | |
| 640 | JsonBooleanValue *JsonSchema::getBooleanValue(const QString &name, JsonObjectValue *value) |
| 641 | { |