Class: JSONSchema::ValidatorMap
- Inherits:
-
Object
- Object
- JSONSchema::ValidatorMap
- Defined in:
- sig/jsonschema.rbs
Overview
Map of validators for all sub-schemas in a JSON Schema, keyed by JSON Pointer.
Instance Method Summary collapse
- #[] ⇒ Validator?
- #fetch ⇒ Validator
- #key? ⇒ Boolean
- #keys ⇒ ::Array[::String]
- #length ⇒ ::Integer
- #size ⇒ ::Integer
Instance Method Details
#fetch ⇒ Validator
197 |
# File 'sig/jsonschema.rbs', line 197
def fetch: (::String pointer) -> Validator
|
#key? ⇒ Boolean
198 |
# File 'sig/jsonschema.rbs', line 198
def key?: (::String pointer) -> bool
|
#keys ⇒ ::Array[::String]
199 |
# File 'sig/jsonschema.rbs', line 199
def keys: () -> ::Array[::String]
|
#length ⇒ ::Integer
200 |
# File 'sig/jsonschema.rbs', line 200
def length: () -> ::Integer
|
#size ⇒ ::Integer
201 |
# File 'sig/jsonschema.rbs', line 201
def size: () -> ::Integer
|