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
aws-controllers-k8s/acm-controller
f5e3cd4b2acf57a8c93dff2d6be11e23248c52a6
2023-01-11T17:52:07
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
a51d9b8332bc782750d414355f2d49b4620fc9af
2023-03-23T14:48:48
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
ec06613bd99b0e629aba8bd0d731f00049159c5f
2024-03-07T18:04:46
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
88ef0fc7330be38902a77ea455ddb4c7de00e943
2022-08-01T15:19:37
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
306bbeea21482b72698dac90589884fc581b7c28
2023-06-15T18:53:48
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
ddeb8f109db95e2144079f9dc1a05389258ff71d
2022-05-03T21:27:19
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
70bd9913232af4de797632ffb720a0da380b00cb
2023-02-02T20:07:21
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
6762c43fc823245f1cfc823370997d38ff0583f9
2022-10-26T16:42:38
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
b75141c02f3482da294090da74d5c9b8fc2a5810
2023-09-15T05:55:13
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
2593d785e2ecc0238cf6d99e7c5984b061d9d813
2023-09-07T21:27:06
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/emrcontainers-controller
0a0222fadef33dc1bfa63e387617a5cfdc8b2583
2022-06-21T19:54:03
helm/values.schema.json
7
2024-05-27T06:21:57.450819Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
fe4b4f15e0113b55d72eb15161959b9c6502f803
2023-02-02T23:25:21
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
ed82bed7c436345810deae310b8e65563740b484
2022-01-20T18:35:38
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
fbb24e9ffe6b1f36206754e6b2d08d0968ee611d
2023-08-07T22:14:32
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
8211123d6c31cdcd449b0b5bd9b708d3b0dbe362
2022-01-10T18:20:36
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "object" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
fa3e0396d1323a010a4c10d30fae4de7d03e89d3
2022-12-11T15:32:18
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
96098a0b0ac9139d913191b40ef8aeeef7f1d51c
2023-09-15T20:28:14
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
550645256f1b1fd9c17168c33ab1bba0cb25d0a4
2023-02-10T11:12:46
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
0fb6964775233d9ea550ab94aed67cc79aeb1b12
2022-06-17T18:37:26
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
40dfa3b30be7cbb42d1f296f6d8ce36f81ae9bd7
2023-09-07T04:23:05
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
cbf1a423aacfc97ee100bb9c996e63267c15ab45
2023-05-15T23:00:35
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
7a46369ac2a32839c2a3a6b8c49ef5544debbb3e
2022-07-22T23:48:29
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/applicationautoscaling-controller
88e45cdd84bcd3b578effe0f393f1f927f551ffe
2024-03-06T23:16:31
helm/values.schema.json
14
2024-05-28T01:52:55.473827Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
ed18d5c78c6fbaa434e82cbf0624cacbe38b4857
2023-02-09T17:43:46
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
455d94c724a57044b881ee5c28b3903bd6a175e4
2023-02-10T10:30:47
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
c3a7affbcce74b21fb65a1cbd559ac94504f2136
2024-03-07T18:14:45
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
0e660ee6b55980a8a424d7ad5dbf9d56fb535e8e
2023-05-13T01:47:12
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
565e80f84111f1e31a426bab37d45b0de7bfd305
2023-09-07T02:30:05
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
e653478190927ffa9c7e13349651df22b03d9571
2022-12-15T16:46:37
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
ccc1aad740900f4a116641c6e9334dd7befe0e3c
2023-09-15T19:00:14
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/sqs-controller
8b2d5b1c257da21dcebeeb659fabbec88e0fc429
2022-05-08T17:23:57
helm/values.schema.json
9
2024-05-28T01:00:59.926395Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
kurema/BookViewerApp3
d6bc77108248430faede9648edadf13f4a791d66
2023-11-08T19:22:56
BookViewerApp/Views/BrowserTools/CushionInfo.json
76
2024-05-28T03:00:52.038669Z
{ "$id": "https://github.com/kurema/BookViewerApp3/tree/master/BookViewerApp/Views/BrowserTools/CushionInfo.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "content": { "type": "string" }, "filename": { "type": "string" }, "url": { "type": "string" } }, "title": "Info of the cushion page", "type": "object" }
MIT
en
kurema/BookViewerApp3
a4d5c5bbf8329a718ba33a3163266a3d832d3716
2023-11-13T20:04:23
BookViewerApp/Views/BrowserTools/DirectoryInfo.json
76
2024-05-28T03:00:52.038669Z
{ "$id": "https://github.com/kurema/BookViewerApp3/tree/master/BookViewerApp/Views/BrowserTools/DirectoryInfo.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "basePath": { "type": "string" }, "currentDirectory": { "type": "string" }, "entries": { "items": { "properties": { "folder": { "type": "string" }, "isFolder": { "type": "boolean" }, "name": { "type": "string" }, "size": { "type": "integer" }, "updated": { "format": "date-time", "type": "string" } }, "type": "object" }, "type": "array" }, "pageDirection": { "enum": [ "left", "right", "down" ], "type": "string" }, "previewFile": { "type": "string" }, "rootName": { "type": "string" } }, "title": "Directory info and some additional data like current directory.", "type": "object" }
MIT
en
kurema/BookViewerApp3
f05af55df1022f493d455ef39368f729028a8483
2023-11-09T19:43:33
BookViewerApp/Views/BrowserTools/DirectoryInfo.json
76
2024-05-28T03:00:52.038669Z
{ "$id": "https://github.com/kurema/BookViewerApp3/tree/master/BookViewerApp/Views/BrowserTools/DirectoryInfo.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "currentDirectory": { "type": "string" }, "entries": { "items": { "properties": { "folder": { "type": "string" }, "isFolder": { "type": "boolean" }, "name": { "type": "string" }, "size": { "type": "integer" }, "updated": { "format": "date-time", "type": "string" } }, "type": "object" }, "type": "array" }, "pageDirection": { "enum": [ "left", "right", "down" ], "type": "string" }, "previewFile": { "type": "string" }, "rootName": { "type": "string" } }, "title": "Directory info and some additional data like current directory.", "type": "object" }
MIT
en
kurema/BookViewerApp3
284a014075a2c634a8a522e42e024223652708f5
2023-10-30T09:29:28
BookViewerApp/Views/BrowserTools/CushionInfo.json
76
2024-05-28T03:00:52.038669Z
{ "$id": "https://github.com/kurema/BookViewerApp3/tree/master/BookViewerApp/Views/BrowserTools/CushionInfo", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "content": { "type": "string" }, "filename": { "type": "string" }, "url": { "type": "string" } }, "title": "Info of the cushion page", "type": "object" }
MIT
en
kurema/BookViewerApp3
d6bc77108248430faede9648edadf13f4a791d66
2023-11-08T19:22:56
BookViewerApp/Views/BrowserTools/DirectoryInfo.json
76
2024-05-28T03:00:52.038669Z
{ "$id": "https://github.com/kurema/BookViewerApp3/tree/master/BookViewerApp/Views/BrowserTools/DirectoryInfo.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "currentDirectory": { "type": "string" }, "entries": { "items": { "properties": { "folder": { "type": "string" }, "isFolder": { "type": "boolean" }, "name": { "type": "string" }, "size": { "type": "integer" }, "updated": { "format": "date-time", "type": "string" } }, "type": "object" }, "type": "array" }, "previewFile": { "type": "string" }, "rootName": { "type": "string" } }, "title": "Directory info and some additional data like current directory.", "type": "object" }
MIT
en
ngtranminhtuan/LLMOPS
34fa91b4e8ed168d154e0bd2eca8331c8206f1c8
2024-03-15T04:00:27
helm/nginx-ingress/values.schema.json
13
2024-05-27T07:15:19.587382Z
{ "$schema": "https://json-schema.org/draft/2019-09/schema", "default": {}, "examples": [ { "controller": { "affinity": {}, "appprotect": { "enable": false, "logLevel": "fatal" }, "appprotectdos": { "debug": false, "enable": false, "maxDaemons": 0, "maxWorkers": 0, "memory": 0 }, "config": { "annotations": {}, "entries": {}, "name": "" }, "customConfigMap": "", "customPorts": [], "defaultTLS": { "cert": "", "key": "", "secret": "" }, "disableIPV6": false, "enableCertManager": false, "enableCustomResources": true, "enableExternalDNS": false, "enableLatencyMetrics": false, "enableOIDC": false, "enablePreviewPolicies": false, "enableSnippets": false, "enableTLSPassthrough": false, "env": [], "extraContainers": [], "globalConfiguration": { "create": false, "spec": {} }, "healthStatus": false, "healthStatusURI": "/nginx-health", "hostNetwork": false, "image": { "digest": "", "pullPolicy": "IfNotPresent", "repository": "nginx/nginx-ingress", "tag": "2.3.1" }, "includeYear": false, "ingressClass": "nginx", "initContainers": [], "kind": "deployment", "lifecycle": {}, "logLevel": 1, "minReadySeconds": 0, "name": "", "nginxDebug": false, "nginxReloadTimeout": 60000, "nginxStatus": { "allowCidrs": "127.0.0.1", "enable": true, "port": 8080 }, "nginxplus": false, "nodeSelector": {}, "pod": { "annotations": {}, "extraLabels": {} }, "podDisruptionBudget": { "annotations": {}, "enabled": false, "minAvailable": 0, "minUnavailable": 0 }, "priorityClassName": "", "readOnlyRootFilesystem": false, "readyStatus": { "enable": true, "initialDelaySeconds": 0, "port": 8081 }, "replicaCount": 1, "reportIngressStatus": { "annotations": {}, "enable": true, "enableLeaderElection": true, "externalService": "", "ingressLink": "", "leaderElectionLockName": "" }, "resources": { "requests": { "cpu": "100m", "memory": "128Mi" } }, "service": { "allocateLoadBalancerNodePorts": false, "annotations": {}, "create": true, "customPorts": [], "externalIPs": [], "externalTrafficPolicy": "Local", "extraLabels": {}, "httpPort": { "enable": true, "nodePort": "", "port": 80, "targetPort": 80 }, "httpsPort": { "enable": true, "nodePort": "", "port": 443, "targetPort": 443 }, "ipFamilies": [], "ipFamilyPolicy": "", "loadBalancerIP": "", "loadBalancerSourceRanges": [], "type": "LoadBalancer" }, "serviceAccount": { "imagePullSecretName": "", "name": "" }, "serviceMonitor": { "create": false, "endpoints": {}, "labels": {}, "selectorMatchLabels": {} }, "setAsDefaultIngress": false, "strategy": {}, "terminationGracePeriodSeconds": 30, "tolerations": [], "topologySpreadConstraints": {}, "volumeMounts": [], "volumes": [], "watchNamespace": "", "wildcardTLS": { "cert": "", "key": "", "secret": "" } }, "nginxServiceMesh": { "enable": false, "enableEgress": false }, "prometheus": { "create": true, "port": 9113, "scheme": "http", "secret": "" }, "rbac": { "create": true }, "serviceInsight": { "create": true, "port": 9114, "scheme": "http", "secret": "" } } ], "properties": { "controller": { "default": {}, "examples": [ { "affinity": {}, "appprotect": { "enable": false, "logLevel": "fatal" }, "appprotectdos": { "debug": false, "enable": false, "maxDaemons": 0, "maxWorkers": 0, "memory": 0 }, "config": { "annotations": {}, "entries": {}, "name": "" }, "customConfigMap": "", "customPorts": [], "defaultTLS": { "cert": "", "key": "", "secret": "" }, "disableIPV6": false, "enableCertManager": false, "enableCustomResources": true, "enableExternalDNS": false, "enableLatencyMetrics": false, "enableOIDC": false, "enablePreviewPolicies": false, "enableSnippets": false, "enableTLSPassthrough": false, "env": [], "extraContainers": [], "globalConfiguration": { "create": false, "spec": {} }, "healthStatus": false, "healthStatusURI": "/nginx-health", "hostNetwork": false, "image": { "digest": "", "pullPolicy": "IfNotPresent", "repository": "nginx/nginx-ingress", "tag": "2.3.1" }, "includeYear": false, "ingressClass": "nginx", "initContainers": [], "kind": "deployment", "lifecycle": {}, "logLevel": 1, "minReadySeconds": 0, "name": "", "nginxDebug": false, "nginxReloadTimeout": 60000, "nginxStatus": { "allowCidrs": "127.0.0.1", "enable": true, "port": 8080 }, "nginxplus": false, "nodeSelector": {}, "pod": { "annotations": {}, "extraLabels": {} }, "priorityClassName": "", "readOnlyRootFilesystem": false, "readyStatus": { "enable": true, "initialDelaySeconds": 0, "port": 8081 }, "replicaCount": 1, "reportIngressStatus": { "annotations": {}, "enable": true, "enableLeaderElection": true, "externalService": "", "ingressLink": "", "leaderElectionLockName": "" }, "resources": { "requests": { "cpu": "100m", "memory": "128Mi" } }, "service": { "allocateLoadBalancerNodePorts": false, "annotations": {}, "create": true, "customPorts": [], "externalIPs": [], "externalTrafficPolicy": "Local", "extraLabels": {}, "httpPort": { "enable": true, "port": 80, "targetPort": 80 }, "httpsPort": { "enable": true, "port": 443, "targetPort": 443 }, "ipFamilies": [], "ipFamilyPolicy": "", "loadBalancerIP": "", "loadBalancerSourceRanges": [], "type": "LoadBalancer" }, "serviceAccount": { "imagePullSecretName": "", "name": "" }, "serviceMonitor": { "create": false, "endpoints": {}, "labels": {}, "selectorMatchLabels": {} }, "setAsDefaultIngress": false, "strategy": {}, "terminationGracePeriodSeconds": 30, "tolerations": [], "topologySpreadConstraints": {}, "volumeMounts": [], "volumes": [], "watchNamespace": "", "wildcardTLS": { "cert": "", "key": "", "secret": "" } } ], "properties": { "affinity": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Affinity", "default": {}, "title": "The affinity Schema", "type": "object" }, "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations Schema", "type": "object" }, "appprotect": { "default": {}, "examples": [ { "enable": true, "logLevel": "fatal" } ], "properties": { "enable": { "default": false, "examples": [ false, true ], "title": "Enable the App Protect WAF module in the Ingress Controller", "type": "boolean" }, "logLevel": { "default": "", "enum": [ "fatal", "error", "warn", "info", "debug", "trace" ], "examples": [ "fatal", "error", "warn", "info", "debug", "trace" ], "title": "The logLevel for App Protect WAF", "type": "string" } }, "required": [ "enable" ], "title": "The App Protect WAF Schema", "type": "object" }, "appprotectdos": { "default": {}, "examples": [ { "debug": false, "enable": true, "maxDaemons": 0, "maxWorkers": 0, "memory": 0 } ], "properties": { "debug": { "default": false, "examples": [ false, true ], "title": "debugging for App Protect DoS", "type": "boolean" }, "enable": { "default": false, "examples": [ false, true ], "title": "Enable the App Protect DoS module in the Ingress Controller", "type": "boolean" }, "maxDaemons": { "default": 0, "examples": [ 0 ], "title": "Max number of ADMD instances", "type": "integer" }, "maxWorkers": { "default": 0, "examples": [ 0 ], "title": "Max number of nginx processes to support", "type": "integer" }, "memory": { "default": 0, "examples": [ 0 ], "title": "RAM memory size to consume in MB", "type": "integer" } }, "required": [ "enable" ], "title": "The App Protect DoS Schema", "type": "object" }, "config": { "default": {}, "examples": [ { "annotations": {}, "entries": {}, "name": "" } ], "properties": { "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations Schema", "type": "object" }, "entries": { "default": {}, "examples": [ {} ], "properties": {}, "required": [], "title": "The entries Schema", "type": "object" }, "name": { "default": "", "examples": [ "" ], "title": "The name Schema", "type": "string" } }, "required": [], "title": "The config Schema", "type": "object" }, "customConfigMap": { "default": "", "examples": [ "" ], "title": "The customConfigMap Schema", "type": "string" }, "customPorts": { "default": [], "examples": [ [ { "containerPort": 80, "name": "http", "protocol": "TCP" }, { "containerPort": 443, "name": "https", "protocol": "TCP" } ] ], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ContainerPort", "type": "object" }, "title": "The customPorts to expose on the NGINX Ingress Controller pod", "type": "array" }, "defaultTLS": { "default": {}, "examples": [], "properties": { "cert": { "default": "", "examples": [], "title": "The cert Schema", "type": "string" }, "key": { "default": "", "examples": [], "title": "The key Schema", "type": "string" }, "secret": { "default": "", "examples": [ "" ], "title": "The secret Schema", "type": "string" } }, "required": [], "title": "The defaultTLS Schema", "type": "object" }, "disableIPV6": { "default": false, "examples": [ false ], "title": "The disableIPV6", "type": "boolean" }, "dnsPolicy": { "allOf": [ { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/dnsPolicy" }, { "enum": [ "ClusterFirstWithHostNet", "ClusterFirst", "Default", "None" ] } ], "type": "string" }, "enableCertManager": { "default": false, "examples": [ false ], "title": "The enableCertManager", "type": "boolean" }, "enableCustomResources": { "default": false, "examples": [ true ], "title": "The enableCustomResources", "type": "boolean" }, "enableExternalDNS": { "default": false, "examples": [ false ], "title": "The enableExternalDNS", "type": "boolean" }, "enableLatencyMetrics": { "default": false, "examples": [ false ], "title": "The enableLatencyMetrics", "type": "boolean" }, "enableOIDC": { "default": false, "examples": [ false ], "title": "The enableOIDC", "type": "boolean" }, "enablePreviewPolicies": { "default": false, "examples": [ false ], "title": "The enablePreviewPolicies", "type": "boolean" }, "enableSnippets": { "default": false, "examples": [ false ], "title": "The enableSnippets", "type": "boolean" }, "enableTLSPassthrough": { "default": false, "examples": [ false ], "title": "The enableTLSPassthrough", "type": "boolean" }, "env": { "default": [], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.EnvVar", "type": "object" }, "title": "The env Schema", "type": "array" }, "extraContainers": { "default": [], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container", "type": "object" }, "title": "The extraContainers Schema", "type": "array" }, "globalConfiguration": { "default": {}, "examples": [ { "create": false, "spec": {} } ], "properties": { "create": { "default": false, "examples": [ false ], "title": "The create Schema", "type": "boolean" }, "spec": { "default": {}, "examples": [ {} ], "properties": { "listeners": { "default": [], "items": { "default": {}, "properties": { "name": { "default": "", "examples": [ "dns-tcp" ], "title": "The name", "type": "string" }, "port": { "default": 0, "examples": [ 5353 ], "title": "The port", "type": "integer" }, "protocol": { "default": "", "examples": [ "TCP" ], "title": "The protocol", "type": "string" } }, "type": "object" }, "title": "The listeners Schema", "type": "array" } }, "required": [], "title": "The spec Schema", "type": "object" } }, "required": [ "create", "spec" ], "title": "The globalConfiguration Schema", "type": "object" }, "healthStatus": { "default": false, "examples": [ false ], "title": "The healthStatus", "type": "boolean" }, "healthStatusURI": { "default": "/nginx-health", "examples": [ "/nginx-health" ], "format": "uri-reference", "title": "The healthStatusURI Schema", "type": "string" }, "hostNetwork": { "default": false, "examples": [ false, true ], "title": "The hostNetwork Schema", "type": "boolean" }, "image": { "default": {}, "examples": [ { "pullPolicy": "IfNotPresent", "repository": "nginx/nginx-ingress", "tag": "2.3.1" } ], "properties": { "digest": { "default": "", "examples": [ "sha256:2710c264e8eaeb663cee63db37b75a1ac1709f63a130fb091c843a6c3a4dc572" ], "title": "The digest of the Ingress Controller image", "type": "string" }, "pullPolicy": { "allOf": [ { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container/properties/imagePullPolicy" }, { "enum": [ "Always", "IfNotPresent", "Never" ] } ], "default": "IfNotPresent", "examples": [ "Always", "IfNotPresent", "Never" ], "title": "The pullPolicy for the Ingress Controller image", "type": "string" }, "repository": { "default": "nginx/nginx-ingress", "examples": [ "nginx/nginx-ingress" ], "title": "The repository of the Ingress Controller", "type": "string" }, "tag": { "default": "2.3.1", "examples": [ "2.3.1" ], "title": "The tag of the Ingress Controller image", "type": "string" } }, "required": [ "repository" ], "title": "The image Schema", "type": "object" }, "includeYear": { "default": false, "examples": [ false ], "title": "The includeYear", "type": "boolean" }, "ingressClass": { "default": "", "examples": [ "nginx" ], "title": "The ingressClass", "type": "string" }, "initContainers": { "default": [], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Container", "type": "object" }, "title": "The initContainers Schema", "type": "array" }, "kind": { "default": "", "enum": [ "deployment", "daemonset" ], "examples": [ "deployment", "daemonset" ], "title": "The kind of the Ingress Controller", "type": "string" }, "lifecycle": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Lifecycle", "default": {}, "title": "The lifecycle Schema", "type": "object" }, "logLevel": { "default": 1, "enum": [ 0, 1, 2, 3 ], "examples": [ 1 ], "title": "The logLevel of the Ingress Controller", "type": "integer" }, "minReadySeconds": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.apps.v1.DeploymentSpec/properties/minReadySeconds", "default": 0, "title": "The minReadySeconds Schema", "type": "integer" }, "name": { "default": "", "examples": [ "controller" ], "title": "The name of the Ingress Controller", "type": "string" }, "nginxDebug": { "default": false, "examples": [ false, true ], "title": "Enables debugging for NGINX", "type": "boolean" }, "nginxReloadTimeout": { "default": 0, "examples": [ 60000 ], "title": "Timeout in milliseconds which the Ingress Controller will wait for a successful NGINX reload after a change or at the initial start", "type": "integer" }, "nginxStatus": { "default": {}, "examples": [ { "allowCidrs": "127.0.0.1", "enable": true, "port": 8080 } ], "properties": { "allowCidrs": { "default": "127.0.0.1", "examples": [ "127.0.0.1" ], "title": "The allowCidrs", "type": "string" }, "enable": { "default": false, "examples": [ true ], "title": "The enable", "type": "boolean" }, "port": { "default": 8080, "examples": [ 8080 ], "title": "The port", "type": "integer" } }, "required": [], "title": "The nginxStatus Schema", "type": "object" }, "nginxplus": { "default": false, "examples": [ false, true ], "title": "Deploys the Ingress Controller for NGINX Plus", "type": "boolean" }, "nodeSelector": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/nodeSelector", "default": {}, "title": "The nodeSelector Schema", "type": "object" }, "pod": { "default": {}, "examples": [ { "annotations": {}, "extraLabels": {} } ], "properties": { "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations Schema", "type": "object" }, "extraLabels": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/labels", "default": {}, "title": "The extraLabels Schema", "type": "object" } }, "required": [], "title": "The pod Schema", "type": "object" }, "podDisruptionBudget": { "default": {}, "examples": [ { "enable": true, "minAvailable": 1 }, { "enable": true, "maxUnavailable": 1 } ], "properties": { "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations Schema", "type": "object" }, "enabled": { "type": "boolean" }, "maxUnavailable": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec/properties/maxUnavailable" }, "minAvailable": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec/properties/minAvailable" } }, "required": [ "enabled" ], "title": "The podDisruptionBudget Schema", "type": "object" }, "priorityClassName": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/priorityClassName", "default": "", "title": "The priorityClassName", "type": "string" }, "readOnlyRootFilesystem": { "default": false, "examples": [ false ], "title": "The readOnlyRootFilesystem", "type": "boolean" }, "readyStatus": { "default": {}, "examples": [ { "enable": true, "initialDelaySeconds": 0, "port": 8081 } ], "properties": { "enable": { "default": false, "examples": [ true ], "title": "The enable", "type": "boolean" }, "initialDelaySeconds": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Probe/properties/initialDelaySeconds", "default": 0, "type": "integer" }, "port": { "default": 0, "examples": [ 8081 ], "title": "The port", "type": "integer" } }, "required": [], "title": "The readyStatus", "type": "object" }, "replicaCount": { "default": 1, "examples": [ 1 ], "title": "The replicaCount", "type": "integer" }, "reportIngressStatus": { "default": {}, "examples": [ { "annotations": {}, "enable": true, "enableLeaderElection": true, "externalService": "", "ingressLink": "", "leaderElectionLockName": "" } ], "properties": { "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations Schema", "type": "object" }, "enable": { "default": false, "examples": [ true ], "title": "The enable", "type": "boolean" }, "enableLeaderElection": { "default": false, "examples": [ true ], "title": "The enableLeaderElection", "type": "boolean" }, "externalService": { "default": "", "examples": [ "" ], "title": "The externalService", "type": "string" }, "ingressLink": { "default": "", "examples": [ "" ], "title": "The ingressLink", "type": "string" }, "leaderElectionLockName": { "default": "", "examples": [ "" ], "title": "The leaderElectionLockName", "type": "string" } }, "required": [ "enable" ], "title": "The reportIngressStatus Schema", "type": "object" }, "resources": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ResourceRequirements", "default": {}, "title": "The resources Schema", "type": "object" }, "service": { "default": {}, "examples": [ { "allocateLoadBalancerNodePorts": false, "annotations": {}, "create": true, "customPorts": [], "externalIPs": [], "externalTrafficPolicy": "Local", "extraLabels": {}, "httpPort": { "enable": true, "port": 80, "targetPort": 80 }, "httpsPort": { "enable": true, "port": 443, "targetPort": 443 }, "ipFamilies": [], "ipFamilyPolicy": "", "loadBalancerIP": "", "loadBalancerSourceRanges": [], "name": "", "type": "LoadBalancer" } ], "properties": { "allocateLoadBalancerNodePorts": { "default": false, "ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/allocateLoadBalancerNodePorts", "title": "The allocateLoadBalancerNodePorts Schema", "type": "boolean" }, "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations", "type": "object" }, "create": { "default": false, "examples": [ true ], "title": "The create", "type": "boolean" }, "customPorts": { "default": [], "items": { "ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServicePort", "type": "object" }, "title": "The customPorts", "type": "array" }, "externalIPs": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/externalIPs", "default": [], "title": "The externalIPs", "type": "array" }, "externalTrafficPolicy": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/externalTrafficPolicy", "default": "", "title": "The externalTrafficPolicy", "type": "string" }, "extraLabels": { "default": {}, "examples": [ {} ], "properties": {}, "required": [], "title": "The extraLabels", "type": "object" }, "httpPort": { "default": {}, "examples": [ { "enable": true, "nodePort": "", "port": 80, "targetPort": 80 } ], "properties": { "enable": { "default": false, "examples": [ true ], "title": "The enable", "type": "boolean" }, "nodePort": { "default": 0, "examples": [ 443 ], "title": "The nodePort", "type": "integer" }, "port": { "default": 0, "examples": [ 80 ], "title": "The port", "type": "integer" }, "targetPort": { "default": 0, "examples": [ 80 ], "title": "The targetPort", "type": "integer" } }, "required": [], "title": "The httpPort", "type": "object" }, "httpsPort": { "default": {}, "examples": [ { "enable": true, "nodePort": "", "port": 443, "targetPort": 443 } ], "properties": { "enable": { "default": false, "examples": [ true ], "title": "The enable", "type": "boolean" }, "nodePort": { "default": 0, "examples": [ 443 ], "title": "The nodePort", "type": "integer" }, "port": { "default": 0, "examples": [ 443 ], "title": "The port", "type": "integer" }, "targetPort": { "default": 0, "examples": [ 443 ], "title": "The targetPort", "type": "integer" } }, "required": [], "title": "The httpsPort", "type": "object" }, "ipFamilies": { "default": [], "ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/ipFamilies", "title": "The ipFamilies Schema", "type": "array" }, "ipFamilyPolicy": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/ipFamilyPolicy", "default": "", "examples": [ "" ], "title": "The ipFamilyPolicy Schema", "type": "string" }, "loadBalancerIP": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/loadBalancerIP", "default": "", "title": "The loadBalancerIP", "type": "string" }, "loadBalancerSourceRanges": { "default": [], "examples": [ [] ], "items": {}, "title": "The loadBalancerSourceRanges", "type": "array" }, "type": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.ServiceSpec/properties/type", "default": "", "title": "The type", "type": "string" } }, "required": [], "title": "The service Schema", "type": "object" }, "serviceAccount": { "default": {}, "examples": [ { "imagePullSecretName": "", "name": "" } ], "properties": { "annotations": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/annotations", "default": {}, "title": "The annotations Schema", "type": "object" }, "imagePullSecretName": { "default": "", "examples": [ "" ], "title": "The imagePullSecretName", "type": "string" }, "name": { "default": "", "examples": [ "" ], "title": "The name Schema", "type": "string" } }, "required": [], "title": "The serviceAccount Schema", "type": "object" }, "serviceMonitor": { "default": {}, "examples": [ { "create": false, "endpoints": [], "labels": {}, "selectorMatchLabels": {} } ], "properties": { "create": { "default": false, "examples": [ false ], "title": "The create", "type": "boolean" }, "endpoints": { "default": [], "items": {}, "required": [], "title": "The endpoints", "type": "array" }, "labels": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta/properties/labels", "default": {}, "title": "The labels Schema", "type": "object" }, "selectorMatchLabels": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector/properties/matchLabels", "default": {}, "title": "The selectorMatchLabels Schema", "type": "object" } }, "required": [], "title": "The serviceMonitor Schema", "type": "object" }, "setAsDefaultIngress": { "default": false, "examples": [ false ], "title": "The setAsDefaultIngress", "type": "boolean" }, "strategy": { "allOf": [ { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.apps.v1.DeploymentStrategy" }, { "properties": { "type": { "enum": [ "Recreate", "RollingUpdate", "OnDelete" ], "type": "string" } } } ], "default": {}, "title": "The strategy Schema", "type": "object" }, "terminationGracePeriodSeconds": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/terminationGracePeriodSeconds", "default": 30, "title": "The terminationGracePeriodSeconds Schema", "type": "integer" }, "tolerations": { "default": [], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Toleration", "type": "object" }, "title": "The tolerations Schema", "type": "array" }, "topologySpreadConstraints": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/topologySpreadConstraints", "default": {}, "title": "The topologySpreadConstraints Schema", "type": "object" }, "volumeMounts": { "default": [], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.VolumeMount", "type": "object" }, "title": "The volumeMounts Schema", "type": "array" }, "volumes": { "default": [], "items": { "$ref": "https://raw.githubusercontent.com/nginxinc/kubernetes-json-schema/master/v1.26.1/_definitions.json#/definitions/io.k8s.api.core.v1.Volume", "type": "object" }, "title": "The volumes Schema", "type": "array" }, "watchNamespace": { "default": "", "examples": [ "" ], "title": "The watchNamespace", "type": "string" }, "watchSecretNamespace": { "default": "", "examples": [ "" ], "title": "The watchSecretNamespace", "type": "string" }, "wildcardTLS": { "default": {}, "examples": [], "properties": { "cert": { "default": "", "examples": [ "" ], "title": "The cert Schema", "type": "string" }, "key": { "default": "", "examples": [ "" ], "title": "The key Schema", "type": "string" }, "secret": { "default": "", "examples": [ "" ], "title": "The secret Schema", "type": "string" } }, "required": [], "title": "The wildcardTLS Schema", "type": "object" } }, "required": [ "name", "kind", "image" ], "title": "The Ingress Controller Helm Schema", "type": "object" }, "nginxServiceMesh": { "default": {}, "examples": [ { "enable": false, "enableEgress": false } ], "properties": { "enable": { "default": false, "examples": [ false ], "title": "The enable", "type": "boolean" }, "enableEgress": { "default": false, "examples": [ false ], "title": "The enableEgress", "type": "boolean" } }, "required": [ "enable" ], "title": "The nginxServiceMesh Schema", "type": "object" }, "prometheus": { "default": {}, "examples": [ { "create": true, "port": 9113, "scheme": "http", "secret": "" } ], "properties": { "create": { "default": false, "examples": [ true ], "title": "The create", "type": "boolean" }, "port": { "default": 9113, "examples": [ 9113 ], "title": "The port", "type": "integer" }, "scheme": { "default": "http", "examples": [ "http" ], "title": "The scheme", "type": "string" }, "secret": { "default": "", "examples": [ "" ], "title": "The secret", "type": "string" } }, "required": [ "create" ], "title": "The prometheus Schema", "type": "object" }, "rbac": { "default": {}, "examples": [ { "create": true } ], "properties": { "create": { "default": false, "examples": [ true ], "title": "The create Schema", "type": "boolean" } }, "required": [ "create" ], "title": "The rbac Schema", "type": "object" }, "serviceInsight": { "default": {}, "examples": [ { "create": true, "port": 9114, "scheme": "http", "secret": "" } ], "properties": { "create": { "default": false, "examples": [ true ], "title": "The create", "type": "boolean" }, "port": { "default": 9114, "examples": [ 9114 ], "title": "The port", "type": "integer" }, "scheme": { "default": "http", "examples": [ "http" ], "title": "The scheme", "type": "string" }, "secret": { "default": "", "examples": [ "" ], "title": "The secret", "type": "string" } }, "required": [ "create" ], "title": "The Service Insight Schema", "type": "object" } }, "required": [ "controller", "rbac", "prometheus", "serviceInsight", "nginxServiceMesh" ], "title": "Root Schema", "type": "object" }
MIT
en
hyperjump-io/json-schema
bd2806df6bbc0177636bafe2291e6fda25b2acc8
2023-11-25T03:56:16
bundle/test-case.schema.json
193
2024-05-28T04:17:32.375302Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "compatibility": { "examples": [ "7", "2020", "<=2019", "6,<=2019", "=2020" ], "type": "string" }, "description": { "type": "string" }, "externalSchemas": { "patternProperties": { "": { "description": "a JSON Schema", "type": [ "object", "boolean" ] } }, "propertyNames": { "description": "Retrieval URI for the schema", "format": "uri" }, "type": "object" }, "schema": { "type": "object" }, "tests": { "items": { "$ref": "./test.schema.json" }, "type": "array" } }, "title": "Test Case", "type": "object" }
MIT
en
hyperjump-io/json-schema
bd2806df6bbc0177636bafe2291e6fda25b2acc8
2023-11-25T03:56:16
bundle/file-schemas/main.schema.json
193
2024-05-28T04:17:32.375302Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "foo": { "$ref": "string.schema.json" } }, "type": "object" }
MIT
en
hyperjump-io/json-schema
bd2806df6bbc0177636bafe2291e6fda25b2acc8
2023-11-25T03:56:16
bundle/test.schema.json
193
2024-05-28T04:17:32.375302Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "description": { "type": "string" }, "instance": {} }, "title": "Test", "type": "object" }
MIT
en
hyperjump-io/json-schema
bd2806df6bbc0177636bafe2291e6fda25b2acc8
2023-11-25T03:56:16
bundle/file-schemas/string.schema.json
193
2024-05-28T04:17:32.375302Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "string" }
MIT
en
hyperjump-io/json-schema
bd2806df6bbc0177636bafe2291e6fda25b2acc8
2023-11-25T03:56:16
bundle/test-suite.schema.json
193
2024-05-28T04:17:32.375302Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "items": { "$ref": "./test-case.schema.json" }, "title": "Test Suite", "type": "array" }
MIT
en
hyperjump-io/json-schema
bd2806df6bbc0177636bafe2291e6fda25b2acc8
2023-11-25T03:56:16
bundle/file-schemas/mixed-schemes.schema.json
193
2024-05-28T04:17:32.375302Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "bar": { "$ref": "https://bundler.hyperjump.io/number" }, "foo": { "$ref": "string.schema.json" } }, "type": "object" }
MIT
en
globus/globus-compute
0a30228952f984837db322a9c1ea86f726e096d4
2023-08-24T17:53:26
compute_endpoint/globus_compute_endpoint/endpoint/config/user_config_schema.json
139
2024-05-29T12:00:31.181222Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "properties": { "endpoint_init": { "type": "string" }, "endpoint_setup": { "type": "string" }, "worker_init": { "type": "string" } }, "type": "object" }
Apache-2.0
en
globus/globus-compute
259a691151fcd5ea1c562f5193893b9a39af6e11
2023-12-14T19:41:13
compute_endpoint/globus_compute_endpoint/endpoint/config/user_config_schema.json
139
2024-05-29T12:00:31.181222Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "properties": { "endpoint_setup": { "type": "string" }, "worker_init": { "type": "string" } }, "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/featurecollection.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featurecollection.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureSchema": { "$ref": "featureschema.json" }, "featureType": { "$ref": "featuretype.json" }, "features": { "items": { "$ref": "feature.json" }, "type": "array" }, "geometryDimension": { "maximum": 3, "minimum": 0, "type": "integer" }, "type": { "enum": [ "FeatureCollection" ], "type": "string" } }, "required": [ "type", "features" ], "title": "a JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
6d993aab19c6543e9859729480fb8cf93b619b4c
2023-03-06T14:34:09
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "Prism", "MultiPrism", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection with additional 'coordRefSys' member", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString with additional 'coordRefSys' member", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString with additional 'coordRefSys' member", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint with additional 'coordRefSys' member", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon with additional 'coordRefSys' member", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "MultiPrism": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "prisms": { "items": { "$ref": "#/$defs/Prism" }, "type": "array" }, "type": { "enum": [ "MultiPrism" ], "type": "string" } }, "required": [ "type", "prisms" ], "title": "JSON-FG Multi-Prism", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point with additional 'coordRefSys' member", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon with additional 'coordRefSys' member", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "Prism": { "properties": { "base": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "bbox": { "$ref": "#/$defs/bbox3d" }, "lower": { "type": "number" }, "type": { "enum": [ "Prism" ], "type": "string" }, "upper": { "type": "number" } }, "required": [ "type", "base", "upper" ], "title": "JSON-FG Prism", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "title": "the geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "format": "uri", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "format": "uri", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "https://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "type": "array" } ], "title": "the coordRefSys member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "format": "uri", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "format": "uri", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "https://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "type": "array" } ], "title": "the coordRefSys member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/featuretype.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featuretype.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "the featureType member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
8d71518a41907f0750e5d99f53d65448531322ec
2022-01-07T15:50:40
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "http://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "title": "Geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/feature.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/feature.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "properties": { "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "geometry": { "$ref": "geometry.json" }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "place": { "$ref": "place.json" }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "time": { "$ref": "time.json" }, "type": { "enum": [ "Feature" ], "type": "string" } }, "required": [ "type", "time", "place", "geometry", "properties" ], "title": "a JSON-FG Feature", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/featuretype.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featuretype.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "the featureType member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
77b560718830b4d25f427908a39b128079769259
2022-02-19T09:31:33
core/schemas/feature.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "http://beta.schemas.opengis.net/json-fg/feature.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "properties": { "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "geometry": { "$ref": "geometry.json" }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "place": { "$ref": "place.json" }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "time": { "$ref": "time.json" }, "type": { "enum": [ "Feature" ], "type": "string" } }, "required": [ "type", "time", "place", "geometry", "properties" ], "title": "a JSON-FG Feature", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
e3d58196722eb4b9a98df9723fd2d51ab5ab54fa
2023-09-04T15:33:24
core/schemas/featurecollection.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featurecollection.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureSchema": { "$ref": "featureschema.json" }, "featureType": { "$ref": "featuretype.json" }, "features": { "items": { "$ref": "feature.json" }, "type": "array" }, "geometryDimension": { "maximum": 3, "minimum": 0, "type": "integer" }, "type": { "enum": [ "FeatureCollection" ], "type": "string" } }, "required": [ "type", "features" ], "title": "a JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "Prism", "MultiPrism", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection with additional 'coordRefSys' member", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString with additional 'coordRefSys' member", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString with additional 'coordRefSys' member", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint with additional 'coordRefSys' member", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon with additional 'coordRefSys' member", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "MultiPrism": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "prisms": { "items": { "$ref": "#/$defs/Prism" }, "type": "array" }, "type": { "enum": [ "MultiPrism" ], "type": "string" } }, "required": [ "type", "prisms" ], "title": "JSON-FG Multi-Prism", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point with additional 'coordRefSys' member", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon with additional 'coordRefSys' member", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "Prism": { "properties": { "base": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "bbox": { "$ref": "#/$defs/bbox3d" }, "lower": { "type": "number" }, "type": { "enum": [ "Prism" ], "type": "string" }, "upper": { "type": "number" } }, "required": [ "type", "base", "upper" ], "title": "JSON-FG Prism", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "title": "the geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/place.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/place.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/Polyhedron" }, { "$ref": "geometry-objects.json#/$defs/MultiPolyhedron" }, { "$ref": "geometry-objects.json#/$defs/Prism" }, { "$ref": "geometry-objects.json#/$defs/MultiPrism" }, { "$ref": "geometry-objects.json#/$defs/CustomGeometry" } ], "title": "the place member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/place.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/place.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/Polyhedron" }, { "$ref": "geometry-objects.json#/$defs/MultiPolyhedron" }, { "$ref": "geometry-objects.json#/$defs/Prism" }, { "$ref": "geometry-objects.json#/$defs/MultiPrism" }, { "$ref": "geometry-objects.json#/$defs/CustomGeometry" } ], "title": "the place member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
c38742ca647902ab87a7af0879720b1ce1b1f2dc
2022-09-08T10:26:51
core/schemas/time.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "date": { "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }, "interval": { "items": { "oneOf": [ { "$ref": "#/$defs/date" }, { "$ref": "#/$defs/timestamp" }, { "enum": [ ".." ], "type": "string" } ] }, "maxItems": 2, "minItems": 2, "type": "array" }, "timestamp": { "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?Z$", "type": "string" } }, "$id": "https://beta.schemas.opengis.net/json-fg/time.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "properties": { "date": { "$ref": "#/$defs/date" }, "interval": { "$ref": "#/$defs/interval" }, "timestamp": { "$ref": "#/$defs/timestamp" } }, "type": "object" } ], "title": "time" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/featureschema.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featureschema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "format": "uri", "type": "string" }, { "additionalProperties": { "format": "uri", "type": "string" }, "type": "object" } ], "title": "the featureSchema member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
0778da9c279fe878cce8ba2032a9189bb9616383
2023-11-13T16:27:40
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "description": "The value is either a URI or a CURIE.", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "description": "The value is either a URI or a CURIE.", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "https://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "minItems": 2, "type": "array" } ], "title": "the coordRefSys member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/geometry.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/geometry.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/GeometryCollection" } ], "title": "the geometry member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
23f96feccfc93039b17e1a3a3bf919b96a1b00a5
2023-05-29T10:39:04
core/schemas/conformsto.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/conformsTo.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT", "items": { "type": "string" }, "minItems": 1, "title": "the conformsTo member", "type": "array" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/featurecollection.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featurecollection.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "properties": { "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "features": { "items": { "$ref": "feature.json" }, "type": "array" }, "geometryDimension": { "maximum": 3, "minimum": 0, "type": "integer" }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "type": { "enum": [ "FeatureCollection" ], "type": "string" } }, "required": [ "type", "features" ], "title": "a JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/featuretype.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featuretype.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Schema of the featureType member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/time.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "date": { "format": "date", "type": "string" }, "interval": { "items": { "oneOf": [ { "$ref": "#/$defs/date" }, { "$ref": "#/$defs/timestamp" }, { "enum": [ ".." ], "type": "string" } ] }, "maxItems": 2, "minItems": 2, "type": "array" }, "timestamp": { "format": "date-time", "type": "string" } }, "$id": "https://beta.schemas.opengis.net/json-fg/time.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "properties": { "date": { "$ref": "#/$defs/date" }, "interval": { "$ref": "#/$defs/interval" }, "timestamp": { "$ref": "#/$defs/timestamp" } }, "type": "object" } ], "title": "time" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/featurecollection.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featurecollection.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureSchema": { "$ref": "featureschema.json" }, "featureType": { "$ref": "featuretype.json" }, "features": { "items": { "$ref": "feature.json" }, "type": "array" }, "geometryDimension": { "maximum": 3, "minimum": 0, "type": "integer" }, "type": { "enum": [ "FeatureCollection" ], "type": "string" } }, "required": [ "type", "features" ], "title": "a JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
77b560718830b4d25f427908a39b128079769259
2022-02-19T09:31:33
core/schemas/place.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "http://beta.schemas.opengis.net/json-fg/place.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/Polyhedron" }, { "$ref": "geometry-objects.json#/$defs/MultiPolyhedron" }, { "$ref": "geometry-objects.json#/$defs/CustomGeometry" } ], "title": "place" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
77b560718830b4d25f427908a39b128079769259
2022-02-19T09:31:33
core/schemas/time.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "instant": { "type": "string" }, "interval": { "items": { "oneOf": [ { "$ref": "#/$defs/instant" }, { "type": "null" } ] }, "maxItems": 2, "minItems": 2, "type": "array" } }, "$id": "http://beta.schemas.opengis.net/json-fg/time.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "properties": { "instant": { "$ref": "#/$defs/instant" }, "interval": { "$ref": "#/$defs/interval" } }, "type": "object" } ], "title": "time" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
8d71518a41907f0750e5d99f53d65448531322ec
2022-01-07T15:50:40
core/schemas/link.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "http://beta.schemas.opengis.net/json-fg/link.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "properties": { "anchor": { "type": "string" }, "href": { "format": "uri-reference", "type": "string" }, "hreflang": { "type": "string" }, "length": { "type": "string" }, "rel": { "type": "string" }, "title": { "type": "string" }, "type": { "type": "string" } }, "required": [ "href", "rel" ], "title": "JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
760c49cdf28b6fe0959e099945887de46bee8ac1
2022-08-08T15:57:49
core/schemas/place.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/place.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/Polyhedron" }, { "$ref": "geometry-objects.json#/$defs/MultiPolyhedron" }, { "$ref": "geometry-objects.json#/$defs/Prism" }, { "$ref": "geometry-objects.json#/$defs/MultiPrism" }, { "$ref": "geometry-objects.json#/$defs/CustomGeometry" } ], "title": "place" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
4e97ad0de439ab5824a098f919f742b6352d9b49
2023-11-13T14:01:20
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "description": "The value is either a URI or a CURIE.", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "description": "The value is either a URI or a CURIE.", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "https://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "minItems": 2, "type": "array" } ], "title": "the coordRefSys member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/featurecollection.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featurecollection.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "properties": { "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "features": { "items": { "$ref": "feature.json" }, "type": "array" }, "geometryDimension": { "maximum": 3, "minimum": 0, "type": "integer" }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "type": { "enum": [ "FeatureCollection" ], "type": "string" } }, "required": [ "type", "features" ], "title": "a JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
8d71518a41907f0750e5d99f53d65448531322ec
2022-01-07T15:50:40
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "format": "uri", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "format": "uri", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "http://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "type": "array" } ] }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "format": "uri", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "format": "uri", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "https://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "type": "array" } ], "title": "the coordRefSys member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/geometry.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/geometry.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/GeometryCollection" } ], "title": "the geometry member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
8a90d33aca98dd523f09e13008661f9cc74fd103
2022-02-21T18:21:13
core/schemas/time.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "date": { "format": "date", "type": "string" }, "interval": { "items": { "oneOf": [ { "$ref": "#/$defs/date" }, { "$ref": "#/$defs/timestamp" }, { "enum": [ ".." ], "type": "string" } ] }, "maxItems": 2, "minItems": 2, "type": "array" }, "timestamp": { "format": "date-time", "type": "string" } }, "$id": "http://beta.schemas.opengis.net/json-fg/time.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "properties": { "date": { "$ref": "#/$defs/date" }, "interval": { "$ref": "#/$defs/interval" }, "timestamp": { "$ref": "#/$defs/timestamp" } }, "type": "object" } ], "title": "time" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/featureschema.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featureschema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "format": "uri", "type": "string" }, { "additionalProperties": { "format": "uri", "type": "string" }, "type": "object" } ], "title": "the featureSchema member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/link.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/link.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "properties": { "anchor": { "type": "string" }, "href": { "format": "uri-reference", "type": "string" }, "hreflang": { "type": "string" }, "length": { "type": "string" }, "rel": { "type": "string" }, "title": { "type": "string" }, "type": { "type": "string" } }, "required": [ "href", "rel" ], "title": "the Link object", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
8d71518a41907f0750e5d99f53d65448531322ec
2022-01-07T15:50:40
core/schemas/featuretype.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "http://beta.schemas.opengis.net/json-fg/featuretype.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Schema of the featureType member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/place.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/place.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/Polyhedron" }, { "$ref": "geometry-objects.json#/$defs/MultiPolyhedron" }, { "$ref": "geometry-objects.json#/$defs/Prism" }, { "$ref": "geometry-objects.json#/$defs/MultiPrism" }, { "$ref": "geometry-objects.json#/$defs/CustomGeometry" } ], "title": "the place member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/time.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "date": { "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }, "interval": { "items": { "oneOf": [ { "$ref": "#/$defs/date" }, { "$ref": "#/$defs/timestamp" }, { "enum": [ ".." ], "type": "string" } ] }, "maxItems": 2, "minItems": 2, "type": "array" }, "timestamp": { "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?Z$", "type": "string" } }, "$id": "https://beta.schemas.opengis.net/json-fg/time.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "type": "null" }, { "properties": { "date": { "$ref": "#/$defs/date" }, "interval": { "$ref": "#/$defs/interval" }, "timestamp": { "$ref": "#/$defs/timestamp" } }, "type": "object" } ], "title": "the time member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "Prism", "MultiPrism", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection with additional 'coordRefSys' member", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString with additional 'coordRefSys' member", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString with additional 'coordRefSys' member", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint with additional 'coordRefSys' member", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon with additional 'coordRefSys' member", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "MultiPrism": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "prisms": { "items": { "$ref": "#/$defs/Prism" }, "type": "array" }, "type": { "enum": [ "MultiPrism" ], "type": "string" } }, "required": [ "type", "prisms" ], "title": "JSON-FG Multi-Prism", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point with additional 'coordRefSys' member", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon with additional 'coordRefSys' member", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "Prism": { "properties": { "base": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "bbox": { "$ref": "#/$defs/bbox3d" }, "lower": { "type": "number" }, "type": { "enum": [ "Prism" ], "type": "string" }, "upper": { "type": "number" } }, "required": [ "type", "base", "upper" ], "title": "JSON-FG Prism", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "title": "the geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
8d71518a41907f0750e5d99f53d65448531322ec
2022-01-07T15:50:40
core/schemas/geometry.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "http://beta.schemas.opengis.net/json-fg/geometry.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/GeometryCollection" } ], "title": "geometry" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
b1fc3a74137620f85e7a32952080ea9252c640eb
2022-04-18T02:27:24
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "Prism", "MultiPrism", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "MultiPrism": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "prisms": { "items": { "$ref": "#/$defs/Prism" }, "type": "array" }, "type": { "enum": [ "MultiPrism" ], "type": "string" } }, "required": [ "type", "prisms" ], "title": "JSON-FG Multi-Prism", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "Prism": { "properties": { "base": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "bbox": { "$ref": "#/$defs/bbox3d" }, "lower": { "type": "number" }, "type": { "enum": [ "Prism" ], "type": "string" }, "upper": { "type": "number" } }, "required": [ "type", "base", "upper" ], "title": "JSON-FG Prism", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "http://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "title": "Geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/coordrefsys.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "refsys-byref": { "properties": { "epoch": { "type": "number" }, "href": { "format": "uri", "type": "string" }, "type": { "enum": [ "Reference" ], "type": "string" } }, "required": [ "type", "href" ], "type": "object" }, "refsys-custom": { "properties": { "type": { "not": { "enum": [ "Reference" ] }, "type": "string" } }, "required": [ "type" ], "type": "object" }, "refsys-simpleref": { "format": "uri", "type": "string" }, "single-refsys": { "oneOf": [ { "$ref": "#/$defs/refsys-simpleref" }, { "$ref": "#/$defs/refsys-byref" }, { "$ref": "#/$defs/refsys-custom" } ] } }, "$id": "https://beta.schemas.opengis.net/json-fg/coordrefsys.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "$ref": "#/$defs/single-refsys" }, { "items": { "$ref": "#/$defs/single-refsys" }, "type": "array" } ] }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/featuretype.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featuretype.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "the featureType member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
f80746d2251137168b6a08bb7f174ee61a780a96
2023-11-13T13:47:58
core/schemas/feature.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/feature.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureSchema": { "$ref": "featureschema.json" }, "featureType": { "$ref": "featuretype.json" }, "geometry": { "$ref": "geometry.json" }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "place": { "$ref": "place.json" }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "time": { "$ref": "time.json" }, "type": { "enum": [ "Feature" ], "type": "string" } }, "required": [ "type", "time", "place", "geometry", "properties" ], "title": "a JSON-FG Feature", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
23f96feccfc93039b17e1a3a3bf919b96a1b00a5
2023-05-29T10:39:04
core/schemas/featurecollection.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/featurecollection.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "features": { "items": { "$ref": "feature.json" }, "type": "array" }, "geometryDimension": { "maximum": 3, "minimum": 0, "type": "integer" }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "type": { "enum": [ "FeatureCollection" ], "type": "string" } }, "required": [ "type", "features" ], "title": "a JSON-FG Feature Collection", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
23f96feccfc93039b17e1a3a3bf919b96a1b00a5
2023-05-29T10:39:04
core/schemas/feature.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/feature.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "geometry": { "$ref": "geometry.json" }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "place": { "$ref": "place.json" }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "time": { "$ref": "time.json" }, "type": { "enum": [ "Feature" ], "type": "string" } }, "required": [ "type", "time", "place", "geometry", "properties" ], "title": "a JSON-FG Feature", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/geometry.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/geometry.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/GeometryCollection" } ], "title": "the geometry member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/feature.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/feature.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "properties": { "coordRefSys": { "$ref": "coordrefsys.json" }, "featureType": { "$ref": "featuretype.json" }, "geometry": { "$ref": "geometry.json" }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "links": { "items": { "$ref": "link.json" }, "type": "array" }, "place": { "$ref": "place.json" }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "time": { "$ref": "time.json" }, "type": { "enum": [ "Feature" ], "type": "string" } }, "required": [ "type", "time", "place", "geometry", "properties" ], "title": "a JSON-FG Feature", "type": "object" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
39e8e952ed29feef64d30317905d7b8ab870abb3
2023-10-03T05:37:06
core/schemas/conformsto.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/conformsto.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0", "items": { "type": "string" }, "minItems": 1, "title": "the conformsTo member", "type": "array" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
a40615f56dd80213d06012bdb3c5ed083c4ca407
2023-03-06T14:33:26
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "Prism", "MultiPrism", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "MultiPrism": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "prisms": { "items": { "$ref": "#/$defs/Prism" }, "type": "array" }, "type": { "enum": [ "MultiPrism" ], "type": "string" } }, "required": [ "type", "prisms" ], "title": "JSON-FG Multi-Prism", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "Prism": { "properties": { "base": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "bbox": { "$ref": "#/$defs/bbox3d" }, "lower": { "type": "number" }, "type": { "enum": [ "Prism" ], "type": "string" }, "upper": { "type": "number" } }, "required": [ "type", "base", "upper" ], "title": "JSON-FG Prism", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.1.1", "title": "the geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
74990efcb2553f6784821461ef0f001d9950d2c8
2024-02-20T12:05:11
core/schemas/time.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "date": { "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }, "interval": { "items": { "oneOf": [ { "$ref": "#/$defs/date" }, { "$ref": "#/$defs/timestamp" }, { "enum": [ ".." ], "type": "string" } ] }, "maxItems": 2, "minItems": 2, "type": "array" }, "timestamp": { "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?Z$", "type": "string" } }, "$id": "https://beta.schemas.opengis.net/json-fg/time.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.2", "oneOf": [ { "type": "null" }, { "properties": { "date": { "$ref": "#/$defs/date" }, "interval": { "$ref": "#/$defs/interval" }, "timestamp": { "$ref": "#/$defs/timestamp" } }, "type": "object" } ], "title": "the time member" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "title": "Geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
85da1bf9687bab4ea4c716633d0f5e5084a39a63
2022-05-16T12:43:28
core/schemas/geometry-objects.json
25
2024-05-28T03:15:28.68877Z
{ "$defs": { "CustomGeometry": { "properties": { "type": { "not": { "enum": [ "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "Polyhedron", "MultiPolyhedron", "Prism", "MultiPrism", "GeometryCollection" ] }, "type": "string" } }, "required": [ "type" ], "title": "A custom geometry object", "type": "object" }, "GeometryCollection": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "geometries": { "items": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "type": "array" }, "type": { "enum": [ "GeometryCollection" ], "type": "string" } }, "required": [ "type", "geometries" ], "title": "GeoJSON GeometryCollection", "type": "object" }, "LineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": { "enum": [ "LineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON LineString", "type": "object" }, "MultiLineString": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 2, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiLineString" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiLineString", "type": "object" }, "MultiPoint": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "$ref": "#/$defs/position" }, "type": "array" }, "type": { "enum": [ "MultiPoint" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPoint", "type": "object" }, "MultiPolygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON MultiPolygon", "type": "object" }, "MultiPolyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": "array" }, "type": { "enum": [ "MultiPolyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG MultiPolyhedron", "type": "object" }, "MultiPrism": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "prisms": { "items": { "$ref": "#/$defs/Prism" }, "type": "array" }, "type": { "enum": [ "MultiPrism" ], "type": "string" } }, "required": [ "type", "prisms" ], "title": "JSON-FG Multi-Prism", "type": "object" }, "Point": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "$ref": "#/$defs/position" }, "type": { "enum": [ "Point" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Point", "type": "object" }, "Polygon": { "properties": { "bbox": { "$ref": "#/$defs/bbox" }, "coordinates": { "items": { "items": { "$ref": "#/$defs/position" }, "minItems": 4, "type": "array" }, "type": "array" }, "type": { "enum": [ "Polygon" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "GeoJSON Polygon", "type": "object" }, "Polyhedron": { "properties": { "bbox": { "$ref": "#/$defs/bbox3d" }, "coordinates": { "items": { "items": { "items": { "items": { "$ref": "#/$defs/position3d" }, "minItems": 4, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "type": { "enum": [ "Polyhedron" ], "type": "string" } }, "required": [ "type", "coordinates" ], "title": "JSON-FG Polyhedron", "type": "object" }, "Prism": { "properties": { "base": { "oneOf": [ { "$ref": "#/$defs/Point" }, { "$ref": "#/$defs/LineString" }, { "$ref": "#/$defs/Polygon" }, { "$ref": "#/$defs/MultiPoint" }, { "$ref": "#/$defs/MultiLineString" }, { "$ref": "#/$defs/MultiPolygon" } ] }, "bbox": { "$ref": "#/$defs/bbox3d" }, "lower": { "type": "number" }, "type": { "enum": [ "Prism" ], "type": "string" }, "upper": { "type": "number" } }, "required": [ "type", "base", "upper" ], "title": "JSON-FG Prism", "type": "object" }, "bbox": { "oneOf": [ { "$ref": "#/$defs/bbox2d" }, { "$ref": "#/$defs/bbox3d" } ] }, "bbox2d": { "items": { "type": "number" }, "maxItems": 4, "minItems": 4, "type": "array" }, "bbox3d": { "items": { "type": "number" }, "maxItems": 6, "minItems": 6, "type": "array" }, "position": { "items": { "type": "number" }, "maxItems": 3, "minItems": 2, "type": "array" }, "position3d": { "items": { "type": "number" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "$id": "https://beta.schemas.opengis.net/json-fg/geometry-objects.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "title": "Geometry objects" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/geometry.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/geometry.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/GeometryCollection" } ], "title": "geometry" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
ae4a5aec468d57d6627fd6dd45ff07a2bd20fdcb
2022-05-16T12:38:17
core/schemas/place.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/place.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "oneOf": [ { "type": "null" }, { "$ref": "geometry-objects.json#/$defs/Point" }, { "$ref": "geometry-objects.json#/$defs/MultiPoint" }, { "$ref": "geometry-objects.json#/$defs/LineString" }, { "$ref": "geometry-objects.json#/$defs/MultiLineString" }, { "$ref": "geometry-objects.json#/$defs/Polygon" }, { "$ref": "geometry-objects.json#/$defs/MultiPolygon" }, { "$ref": "geometry-objects.json#/$defs/Polyhedron" }, { "$ref": "geometry-objects.json#/$defs/MultiPolyhedron" }, { "$ref": "geometry-objects.json#/$defs/CustomGeometry" } ], "title": "place" }
Apache-2.0
en
opengeospatial/ogc-feat-geo-json
e3d58196722eb4b9a98df9723fd2d51ab5ab54fa
2023-09-04T15:33:24
core/schemas/feature.json
25
2024-05-28T03:15:28.68877Z
{ "$id": "https://beta.schemas.opengis.net/json-fg/feature.json", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "This JSON Schema is part of JSON-FG version 0.2.0-SNAPSHOT", "properties": { "conformsTo": { "$ref": "conformsto.json" }, "coordRefSys": { "$ref": "coordrefsys.json" }, "featureSchema": { "$ref": "featureschema.json" }, "featureType": { "$ref": "featuretype.json" }, "geometry": { "$ref": "geometry.json" }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "place": { "$ref": "place.json" }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "time": { "$ref": "time.json" }, "type": { "enum": [ "Feature" ], "type": "string" } }, "required": [ "type", "time", "place", "geometry", "properties" ], "title": "a JSON-FG Feature", "type": "object" }
Apache-2.0
en