repository
stringclasses
528 values
commit
stringlengths
40
40
commitDate
timestamp[s]
path
stringlengths
11
149
repoStars
int64
5
94.9k
repoLastFetched
stringclasses
528 values
content
stringlengths
48
736k
license
stringclasses
14 values
language
stringclasses
7 values
invopop/jsonschema
e803ab25037d05b814b4b8ae313762cc1c75be79
2020-01-29T02:05:56
fixtures/allow_additional_props.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
fbf400c964771617882771526b353e61e2cda9df
2022-08-04T10:32:40
fixtures/go_comments.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "NamedPets": { "additionalProperties": { "$ref": "#/$defs/Pet" }, "description": "NamedPets is a map of animal names to pets.", "type": "object" }, "Pet": { "additionalProperties": false, "description": "Pet defines the user's fury friend.", "...
MIT
en
invopop/jsonschema
d65fe469b0489087e7f77154846f6fe5e31a0d0b
2020-02-10T11:53:47
fixtures/required_from_jsontags.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
fd8d96416671e33ef79358139312e88557a8aaab
2019-05-30T23:57:21
fixtures/defaults_expanded_toplevel.json
457
2024-05-27T06:45:28.205821Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
e1afd7ef3abf40b7520d74a8d310d60d6b449574
2022-02-03T02:40:42
fixtures/go_comments.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/User", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "Pet": { "additionalProperties": false, "description": "Pet defines the user's fury friend.", "properties": { "name": { "description": "Name of the animal.", "ti...
MIT
en
invopop/jsonschema
4c3020b1ad06753f0e7309c4536230130b0f3583
2023-09-06T16:01:04
fixtures/oneof_ref.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "Server": { "additionalProperties": false, "properties": { "ip_address": { "oneOf": [ { "$ref": "#/$defs/ipv4" }, { "$ref": "#/$defs/ipv6" } ] }, "ip_address_any": { ...
MIT
en
invopop/jsonschema
151e3c21f49d67ce78eec0136f0e821bd9dc55f2
2021-12-28T22:04:59
fixtures/custom_type_with_interface.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/CustomTypeFieldWithInterface", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "CustomTimeWithInterface": { "format": "date-time", "type": "string" }, "CustomTypeFieldWithInterface": { "additionalProperties": false, "properties": ...
MIT
en
invopop/jsonschema
83a598aac4a08e3c6edb184fd40b3c690fd3f3a7
2022-07-21T22:47:45
fixtures/inlining_embedded.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "Inner": { "additionalProperties": false, "properties": { "Foo": { "type": "string" } }, "required": [ "Foo" ], "type": "object" } }, "$id": "https://github.com/invopop/jsonschema/outer-named", "$schema": "https://json-sc...
MIT
en
invopop/jsonschema
fbc1a8a523cdad28ed2301886471c0b3eff2490f
2022-02-03T02:25:44
fixtures/defaults_expanded_toplevel.json
457
2024-05-27T06:45:28.205821Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
a4408ec0e9e13a56fff7ddbfab426061c34caa4c
2023-09-06T19:39:07
fixtures/number_handling.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "NumberHandler": { "additionalProperties": false, "properties": { "float32": { "default": 12.5, "type": "number" }, "int64": { "default": 12, "type": "integer" } }, "required": [ "int64", "...
MIT
en
invopop/jsonschema
9145459e837c0b427fa1babd0faaaf5097cd91db
2021-02-03T20:12:11
fixtures/schema_with_minimum.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/MinValue", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "MinValue": { "additionalProperties": false, "properties": { "value4": { "minimum": 0, "type": "integer" } }, "required": [ "value4" ...
MIT
en
invopop/jsonschema
787cd8204a0da0e8654528ce47675c636893bfe7
2021-09-20T00:02:43
fixtures/allow_additional_props.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
6787b8074a9ea5594e2bae1d6c3496160b06c8b9
2022-02-14T11:33:20
fixtures/oneof.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "ChildOneOf": { "additionalProperties": false, "oneOf": [ { "required": [ "child1", "child4" ], "title": "group1" }, { "required": [ "child2", "child3" ], "t...
MIT
en
invopop/jsonschema
ee500fb7e13058beee8271f324ad557253acc113
2022-09-16T10:12:14
fixtures/anyof.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "ChildAnyOf": { "additionalProperties": false, "anyOf": [ { "required": [ "child1", "child4" ], "title": "group1" }, { "required": [ "child2", "child3" ], "t...
MIT
en
invopop/jsonschema
151e3c21f49d67ce78eec0136f0e821bd9dc55f2
2021-12-28T22:04:59
fixtures/custom_slice_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/CustomSliceOuter", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "CustomSliceOuter": { "additionalProperties": false, "properties": { "slice": { "$ref": "#/definitions/CustomSliceType", "$schema": "http://json-schema.org...
MIT
en
invopop/jsonschema
fa819247876e6b20293e57d3eb98afed476e5a43
2022-05-09T22:09:34
fixtures/go_comments.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "NamedPets": { "description": "NamedPets is a map of animal names to pets.", "patternProperties": { ".*": { "$ref": "#/$defs/Pet" } }, "type": "object" }, "Pet": { "additionalProperties": false, "description": "Pet defines the user...
MIT
en
invopop/jsonschema
992e094365739d2e0d8031d9f273fd0f4b21729f
2023-10-13T15:55:10
fixtures/with_custom_format.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "WithCustomFormat": { "additionalProperties": false, "properties": { "dates": { "items": { "format": "date", "type": "string" }, "type": "array" }, "odds": { "items": { "format": "odd", ...
MIT
en
invopop/jsonschema
12cbc49539c8deac9baeae7811fdcab42fd5def0
2023-10-04T08:45:54
fixtures/no_reference.json
457
2024-05-27T06:45:28.205821Z
{ "$id": "https://github.com/invopop/jsonschema/test-user", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "Baz": { "foo": [ "bar", "bar1" ], "hello": "world", "type": "string" }, "MapType": { "t...
MIT
en
invopop/jsonschema
151e3c21f49d67ce78eec0136f0e821bd9dc55f2
2021-12-28T22:04:59
fixtures/custom_map_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/CustomMapOuter", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "CustomMapOuter": { "additionalProperties": false, "properties": { "my_map": { "$ref": "#/definitions/CustomMapType", "$schema": "http://json-schema.org/draf...
MIT
en
invopop/jsonschema
3adca1741eb43906119d730881e7241390577444
2020-01-23T07:54:51
fixtures/oneof.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/RootOneOf", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "ChildOneOf": { "additionalProperties": false, "oneOf": [ { "required": [ "child1", "child4" ], "title": "group1" }, ...
MIT
en
invopop/jsonschema
530c7ec495a44ba3d94c5b49a19f1e278959af3b
2020-01-27T19:28:18
fixtures/ignore_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": {}, "type": "object" }, "TestUser": { "additionalProperties": false, "properties": { "Baz": ...
MIT
en
invopop/jsonschema
a176ac1737cd502905bb0b77d36a89d0b3bfeee1
2022-02-13T15:49:12
fixtures/custom_map_type.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "CustomMapOuter": { "additionalProperties": false, "properties": { "my_map": { "$ref": "#/$defs/CustomMapType", "$schema": "http://json-schema.org/draft/2020-12/schema" } }, "required": [ "my_map" ], "type": "object" ...
MIT
en
invopop/jsonschema
3330865a0c6b1813bd90bd6255752e15bba096fe
2022-02-15T00:08:52
fixtures/custom_type_with_interface.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "CustomTimeWithInterface": { "format": "date-time", "type": "string" }, "CustomTypeFieldWithInterface": { "additionalProperties": false, "properties": { "CreatedAt": { "$ref": "#/$defs/CustomTimeWithInterface" } }, "required": [ ...
MIT
en
invopop/jsonschema
2fc8c2c65333dae5e8a94b90ae4776d49b9dcc34
2022-02-17T11:25:33
fixtures/commas_in_pattern.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/PatternTest", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "PatternTest": { "additionalProperties": false, "properties": { "with_pattern": { "maxLength": 50, "minLength": 1, "pattern": "[0-9]{1,4}", ...
MIT
en
invopop/jsonschema
83a598aac4a08e3c6edb184fd40b3c690fd3f3a7
2022-07-21T22:47:45
fixtures/user_with_anchor.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "UserWithAnchor": { "additionalProperties": false, "properties": { "name": { "$anchor": "Name", "type": "string" } }, "required": [ "name" ], "type": "object" } }, "$id": "https://github.com/invopop/jsonschema/use...
MIT
en
invopop/jsonschema
3330865a0c6b1813bd90bd6255752e15bba096fe
2022-02-15T00:08:52
fixtures/schema_with_minimum.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "MinValue": { "additionalProperties": false, "properties": { "value4": { "minimum": 0, "type": "integer" } }, "required": [ "value4" ], "type": "object" } }, "$id": "https://github.com/invopop/jsonschema/min-value...
MIT
en
invopop/jsonschema
8b29eab41725e31920734db930a42c6ce802da63
2021-10-22T21:42:03
fixtures/custom_map_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/CustomMapOuter", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "CustomMapOuter": { "additionalProperties": false, "properties": { "my_map": { "items": { "properties": { "key": { "type": "s...
MIT
en
invopop/jsonschema
b0206aa42ef7921e95277fe9f3dc01e1807e0b86
2023-09-25T06:41:32
fixtures/ignore_type.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "Bytes": { "contentEncoding": "base64", "type": "string" }, "GrandfatherType": { "additionalProperties": false, "properties": {}, "type": "object" }, "MapType": { "type": "object" }, "TestUser": { "additionalProperties": false, "...
MIT
en
invopop/jsonschema
2b3f409d9919322b03ee5aae5c96fcd862aba90b
2022-02-21T12:35:14
fixtures/base_schema_id.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "LookupName": { "additionalProperties": false, "properties": { "first": { "type": "string" }, "surname": { "type": "string" } }, "required": [ "first", "surname" ], "type": "object" }, "Loo...
MIT
en
invopop/jsonschema
e803ab25037d05b814b4b8ae313762cc1c75be79
2020-01-29T02:05:56
fixtures/ignore_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": {}, "type": "object" }, "TestUser": { "additionalProperties": false, "properties": { "Baz": ...
MIT
en
invopop/jsonschema
04bb8d856292e626946ddedfb0538045b84b1343
2017-10-25T02:22:28
fixtures/defaults_expanded_toplevel.json
457
2024-05-27T06:45:28.205821Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
d29031c5d0877bed761b260142616fa9a701eb4a
2020-11-25T20:17:47
fixtures/required_from_jsontags.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
2b3f409d9919322b03ee5aae5c96fcd862aba90b
2022-02-21T12:35:14
fixtures/lookup.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "LookupUser": { "additionalProperties": false, "properties": { "alias": { "type": "string" }, "name": { "$ref": "https://example.com/schemas/lookup-name" } }, "required": [ "name" ], "type": "object" }...
MIT
en
invopop/jsonschema
04bb8d856292e626946ddedfb0538045b84b1343
2017-10-25T02:22:28
fixtures/required_from_jsontags.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
fd8d96416671e33ef79358139312e88557a8aaab
2019-05-30T23:57:21
fixtures/allow_additional_props.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
1014919a589cb62aa9287aebd5a841726661e3ed
2021-08-18T09:53:45
fixtures/required_from_jsontags.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
fa80106e9fdaa7d66907c3db40628503a0528810
2019-04-27T06:12:45
fixtures/allow_additional_props.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
e6fc2822d59dca8a68927da95f2b6aa977e0a08e
2021-02-14T20:01:37
fixtures/custom_additional.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/GrandfatherType", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": false, "properties": { "family_name": { "type": "string" }, "ip_addr": { "format": "ipv4", ...
MIT
en
invopop/jsonschema
96db623ed2c5cf99009f7e884163d35f519ba188
2022-03-02T20:43:51
fixtures/keynamed.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "KeyNamed": { "additionalProperties": false, "properties": { "20.01": { "description": "Description was preserved", "type": "integer" }, "ThisWasLeftAsIs": { "type": "string" }, "coming_from_json_tag": { "type...
MIT
en
invopop/jsonschema
83a598aac4a08e3c6edb184fd40b3c690fd3f3a7
2022-07-21T22:47:45
fixtures/custom_slice_type.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "CustomSliceOuter": { "additionalProperties": false, "properties": { "slice": { "$ref": "#/$defs/CustomSliceType" } }, "required": [ "slice" ], "type": "object" }, "CustomSliceType": { "oneOf": [ { "...
MIT
en
invopop/jsonschema
83a598aac4a08e3c6edb184fd40b3c690fd3f3a7
2022-07-21T22:47:45
fixtures/custom_type_with_interface.json
457
2024-05-27T06:45:28.205821Z
{ "$defs": { "CustomTimeWithInterface": { "format": "date-time", "type": "string" }, "CustomTypeFieldWithInterface": { "additionalProperties": false, "properties": { "CreatedAt": { "$ref": "#/$defs/CustomTimeWithInterface" } }, "required": [ ...
MIT
en
invopop/jsonschema
edb03dcab7bc2884de8ef57016a9fa031135ba8c
2021-05-26T22:56:47
fixtures/compact_date.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/CompactDate", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "CompactDate": { "description": "Short date that only includes year and month", "pattern": "^[0-9]{4}-[0-1][0-9]$", "title": "Compact Date", "type": "string" } } }
MIT
en
invopop/jsonschema
159cbd5dba2666b7dfd18fa214dfb0c86625280f
2019-05-04T00:25:08
fixtures/ignore_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": {}, "type": "object" }, "TestUser": { "additionalProperties": false, "properties": { "SomeUn...
MIT
en
invopop/jsonschema
0366d1034a17e261f9c87cefd7adeafcfae86822
2020-05-14T01:46:46
fixtures/ignore_type.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": {}, "type": "object" }, "TestUser": { "additionalProperties": false, "properties": { "Baz": ...
MIT
en
invopop/jsonschema
fbc1a8a523cdad28ed2301886471c0b3eff2490f
2022-02-03T02:25:44
fixtures/allow_additional_props.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
invopop/jsonschema
d29031c5d0877bed761b260142616fa9a701eb4a
2020-11-25T20:17:47
fixtures/allow_additional_props.json
457
2024-05-27T06:45:28.205821Z
{ "$ref": "#/definitions/TestUser", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "GrandfatherType": { "additionalProperties": true, "properties": { "family_name": { "type": "string" } }, "required": [ "family_name" ], ...
MIT
en
hpcc-systems/helm-chart
552604426744a128c809bde078a528060d0e2a86
2023-01-13T16:04:09
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
b7a69836a25f2a9e9dcc76582978485e82cd5b55
2022-09-29T15:39:24
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
78859f837352a7d12dba201b1cc3e04be7048b43
2022-04-06T15:49:40
helm/examples/local/hpcc-localfile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
3cab008371d2512dc00a64af32ccfc63540885f6
2020-06-11T15:44:39
helm/examples/local/hpcc-localfile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "storage": { "additionalProperties": false, "properties": { "hostpath": { "type": "string" }, "size": { "type": "string" } }, "re...
Apache-2.0
en
hpcc-systems/helm-chart
7a28af475093e72c5b90c8f8fc74237793eea0eb
2022-03-24T09:42:22
helm/examples/nfs/hpcc-nfs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
c6dd33a4c5ff157605abe605e50c3c7c012d90d8
2022-10-24T16:28:41
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
7b64a07e918f354559b0f743eeec6cba185199ca
2022-03-30T14:44:57
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
8fa75efb495d584d7ec51fa7bcf176a5ce1a1f05
2022-11-24T15:14:59
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
edf8b25fccbd1956a7be55f58ae458672c358e66
2021-05-12T16:02:36
helm/examples/filestore/hpcc-filestore/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "nfs": { "properties": { "path": { "description": "nfs exported path", "type": "string" }, "server": { "description": "nfs server ip", ...
Apache-2.0
en
hpcc-systems/helm-chart
299ed95026fcc73c994ff57e685ded384926cba2
2021-04-21T16:59:28
helm/examples/efs/hpcc-efs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
7b64a07e918f354559b0f743eeec6cba185199ca
2022-03-30T14:44:57
helm/examples/efs/hpcc-efs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
5e8aa5664ce367cd87745aab684fffc5ce6a8001
2022-03-02T13:45:09
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
686bcb4582cb86f1c64d138d354767571fc81c28
2022-05-13T14:44:34
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
0876a22886ea3b3fab6fec7fea280a1bae707c6f
2022-09-12T16:21:07
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
3cab008371d2512dc00a64af32ccfc63540885f6
2020-06-11T15:44:39
helm/examples/nfs/hpcc-nfs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "storage": { "additionalProperties": false, "properties": { "size": { "type": "string" }, "sku": { "type": "string" } }, "require...
Apache-2.0
en
hpcc-systems/helm-chart
45d4593993ba769f32ac55008585484c0ec4231a
2021-07-02T14:38:49
helm/examples/local/hpcc-localfile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
7a28af475093e72c5b90c8f8fc74237793eea0eb
2022-03-24T09:42:22
helm/examples/efs/hpcc-efs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
7b64a07e918f354559b0f743eeec6cba185199ca
2022-03-30T14:44:57
helm/examples/local/hpcc-localfile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
7b64a07e918f354559b0f743eeec6cba185199ca
2022-03-30T14:44:57
helm/examples/filestore/hpcc-filestore/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "nfs": { "properties": { "path": { "description": "nfs exported path", "type": "string" }, "server": { "description": "nfs server ip", ...
Apache-2.0
en
hpcc-systems/helm-chart
45d4593993ba769f32ac55008585484c0ec4231a
2021-07-02T14:38:49
helm/examples/nfs/hpcc-nfs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
b471d9fc6804b330d51a1039d79d753e272ce293
2022-03-09T13:54:58
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
247520fb4d5a1d0a19357559fec5fda760ca3247
2022-02-17T15:28:43
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
7b64a07e918f354559b0f743eeec6cba185199ca
2022-03-30T14:44:57
helm/examples/nfs/hpcc-nfs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
36758f34874a3a5fc1658cd28a575f5560a4d842
2022-08-24T15:39:56
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
349f93d63c1b8ffc82f8a69769e984075260e5b1
2023-01-09T21:23:38
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
e3725b1a4d58d39b405d7a82cf5269ad2171c7c6
2021-05-19T16:18:46
helm/examples/nfs/hpcc-nfs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
8c6a7a897e3c158a78f51e6c36e263788cbbcdb2
2022-07-21T14:04:14
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
48f60999c0b5946830d89a648b8da3188f5a2ec2
2021-04-01T13:12:08
helm/examples/local/hpcc-localfile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
d3a2b60520475f647801e087473960bf74e3be21
2021-08-26T12:19:30
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "bundle": { "additionalProperties": { "type": [ "integer", "string", "boolean" ] }, "properties": { "name": { "description"...
Apache-2.0
en
hpcc-systems/helm-chart
7ea17f7179ecbb474168c0771982a9659befff5b
2023-02-13T17:02:05
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
aecede07c12f1936827a65fa67be8edd061b1530
2020-09-16T14:00:30
helm/examples/nfs/hpcc-nfs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "storage": { "additionalProperties": false, "properties": { "size": { "type": "string" }, "sku": { "type": "string" } }, "require...
Apache-2.0
en
hpcc-systems/helm-chart
bc9cdae02ad20d01eb7b2f053a0e20bca7b613fc
2022-08-30T16:47:35
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
45d4593993ba769f32ac55008585484c0ec4231a
2021-07-02T14:38:49
helm/examples/filestore/hpcc-filestore/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "nfs": { "properties": { "path": { "description": "nfs exported path", "type": "string" }, "server": { "description": "nfs server ip", ...
Apache-2.0
en
hpcc-systems/helm-chart
7b9619579fb5be531eecbeb0713c242420383a86
2022-02-02T16:55:25
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
4e79da2ce1f57dacf86c47e87f56d6440571eb7a
2022-08-08T13:00:34
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
7a28af475093e72c5b90c8f8fc74237793eea0eb
2022-03-24T09:42:22
helm/examples/local/hpcc-localfile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
5f7ae0438ef1eedab498b8136ba1ceebb106f0be
2023-01-27T09:50:09
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
644475ca0a22ba449e5af83c1b004462196c43dd
2022-06-24T15:51:27
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
8c6a7a897e3c158a78f51e6c36e263788cbbcdb2
2022-07-21T14:04:14
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
7a28af475093e72c5b90c8f8fc74237793eea0eb
2022-03-24T09:42:22
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
e8eaa82649e2770dbdc12842c8cbe03f53e9e5c5
2023-04-27T16:04:58
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
36758f34874a3a5fc1658cd28a575f5560a4d842
2022-08-24T15:39:56
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
2386295530a1a12eb818e030f1e1d6c87f50c51f
2022-08-16T15:52:55
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
5a6b0ca837302b9e52f6ce13741a9eaf66091ec3
2022-06-17T15:54:46
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
3cab008371d2512dc00a64af32ccfc63540885f6
2020-06-11T15:44:39
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "storage": { "additionalProperties": false, "properties": { "size": { "type": "string" }, "sku": { "type": "string" } }, "require...
Apache-2.0
en
hpcc-systems/helm-chart
7a28af475093e72c5b90c8f8fc74237793eea0eb
2022-03-24T09:42:22
helm/examples/filestore/hpcc-filestore/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "nfs": { "properties": { "path": { "description": "nfs exported path", "type": "string" }, "server": { "description": "nfs server ip", ...
Apache-2.0
en
hpcc-systems/helm-chart
2386295530a1a12eb818e030f1e1d6c87f50c51f
2022-08-16T15:52:55
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
232f5b2c3ce1e0577eed62e7e744d1fd34ae1296
2020-07-22T14:51:27
helm/examples/efs/hpcc-efs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "efs": { "additionalProperties": false, "properties": { "id": { "type": "string" }, "image": { "type": "string" }, "namespace": { ...
Apache-2.0
en
hpcc-systems/helm-chart
78d5e17c8bfc0e8f49b7b0bfb30646f8922ee3be
2022-11-14T17:31:15
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authDomain": { "additionalProperties": { "type": [ "integer", "string" ]...
Apache-2.0
en
hpcc-systems/helm-chart
b3f1ae17da26221d3ef6dd8388723a599a06c63f
2022-04-08T13:35:47
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
299ed95026fcc73c994ff57e685ded384926cba2
2021-04-21T16:59:28
helm/examples/azure/hpcc-azurefile/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "labels": { "description": "a list of labels associated with this plane, e.g. lz, data", "items": { ...
Apache-2.0
en
hpcc-systems/helm-chart
45d4593993ba769f32ac55008585484c0ec4231a
2021-07-02T14:38:49
helm/examples/efs/hpcc-efs/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "plane": { "additionalProperties": false, "properties": { "category": { "description": "the category this plane is usd for, e.g. lz, data", "type": "string" ...
Apache-2.0
en
hpcc-systems/helm-chart
7bc91b325ca301e9019b008144b3df8c2fc6cbd6
2022-07-06T15:25:41
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en
hpcc-systems/helm-chart
78859f837352a7d12dba201b1cc3e04be7048b43
2022-04-06T15:49:40
helm/hpcc/values.schema.json
10
2024-05-28T04:25:31.595363Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "auth": { "description": "Authentication method", "type": "string" }, "authNZ": { "additionalProperties": { "type": [ "object" ] }, "type": "...
Apache-2.0
en