json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "order": { "type": "number" }, "categories": { "type": "array", "items": { "type": "number" } } }, "required": [ "id", "name", "description", "order", "categories" ] }, "properties": {}, "additionalProperties": false }
o45138
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "person": { "properties": { "name": { "type": "string" }, "email": { "type": "string", "format": "email" }, "phone_number": { "type": "string" }, "title": { "type": "string" } }, "required": [ "email" ], "additionalProperties": false } }, "required": [ "person" ], "additionalProperties": false }
o58916
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactPublishedEvent", "extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event", "properties": { "meta": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactPublishedEventMeta", "javaInterfaces": [ "com.ericsson.eiffel.semantics.events.Meta" ], "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelArtifactPublishedEvent" ] }, "version": { "type": "string", "enum": [ "1.1.0" ], "default": "1.1.0" }, "time": { "type": "integer", "format": "utc-millisec" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Source", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Serializer", "properties": { "groupId": { "type": "string" }, "artifactId": { "type": "string" }, "version": { "type": "string" } }, "required": [ "groupId", "artifactId", "version" ], "additionalProperties": false }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Security", "properties": { "sdm": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Sdm", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactPublishedEventData", "properties": { "locations": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Location", "properties": { "type": { "type": "string", "enum": [ "ARTIFACTORY", "NEXUS", "PLAIN", "OTHER" ] }, "uri": { "type": "string" } }, "required": [ "type", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.CustomData", "properties": { "key": { "type": "string" }, "value": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "array" }, { "type": "number" } ] } }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "locations" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Link", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o89727
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "JSON Table Schema", "description": "JSON Table Schema is a specification for describing tabular data.", "type": "object", "properties": { "fields": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "name": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "type": { "enum": [ "string", "number", "integer", "date", "time", "datetime", "boolean", "object", "geopoint", "geojson", "array", "duration", "any" ] }, "rdfType": { "type": "string" }, "format": { "type": "string" }, "constraints": { "type": "object", "properties": { "required": { "type": "boolean" }, "minLength": { "type": "integer" }, "maxLength": { "type": "integer" }, "unique": { "type": "boolean" }, "pattern": { "type": "string" }, "minimum": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "maximum": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true } } } }, "required": [ "name" ] } }, "primaryKey": { "oneOf": [ { "type": "string" }, { "type": "array" } ] }, "foreignKeys": { "type": "array", "items": { "type": "object", "required": [ "fields", "reference" ], "properties": { "fields": { "oneOf": [ { "type": "string" }, { "type": "array" } ] }, "reference": { "type": "object", "required": [ "resource", "fields" ], "properties": { "resource": { "type": "string" }, "fields": { "oneOf": [ { "type": "string" }, { "type": "array" } ] } } } } } } }, "required": [ "fields" ] }
o34889
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "10/EPMP update metadata request: a set of EP metadata key-value pairs in JSON object representation", "type": "object", "minProperties": 1, "patternProperties": { "^[a-zA-Z0-9_]+$": {} }, "additionalProperties": false }
o53909
{ "properties": { "date": { "description": "The date of the meeting", "format": "date", "type": "string" }, "location": { "description": "The location of the meeting", "type": "string" }, "participants": { "description": "The participants of the meeting", "items": { "type": "string" }, "type": "array" }, "time": { "description": "The time of the meeting", "format": "time", "type": "string" } }, "required": [ "participants", "date", "time", "location" ], "type": "object" }
schedule_meeting_a452974e
{ "properties": { "attribute1": { "type": "string" }, "attribute10": { "type": "string" }, "attribute11": { "type": "string" }, "attribute12": { "type": "string" }, "attribute13": { "type": "string" }, "attribute14": { "type": "string" }, "attribute15": { "type": "string" }, "attribute16": { "type": "string" }, "attribute2": { "type": "string" }, "attribute3": { "type": "string" }, "attribute4": { "type": "string" }, "attribute5": { "type": "string" }, "attribute6": { "type": "string" }, "attribute7": { "type": "string" }, "attribute8": { "type": "string" }, "attribute9": { "type": "string" }, "defaultauthenticationgroup": { "type": "string" }, "fullreqexpr": { "type": "string" }, "name": { "type": "string" }, "scheme": { "enum": [ "http", "https" ], "type": "string" }, "serverip": { "type": "string" }, "serverport": { "type": "integer" }, "successrule": { "type": "string" } }, "title": "authenticationwebauthaction", "type": "object" }
o30180
{ "description": "Creates a new generic web worker definition in the given or default project.", "properties": { "name": { "$default": { "$source": "argv", "index": 0 }, "description": "The name of the worker.", "type": "string", "x-prompt": "What name would you like to use for the worker?" }, "path": { "description": "The path at which to create the worker file, relative to the current workspace.", "format": "path", "type": "string", "visible": false }, "project": { "$default": { "$source": "projectName" }, "description": "The name of the project.", "type": "string" }, "snippet": { "default": true, "description": "Add a worker creation snippet in a sibling file of the same name.", "type": "boolean" }, "target": { "default": "build", "description": "The target to apply web worker to.", "type": "string" } }, "required": [ "name", "project" ], "title": "Angular Web Worker Options Schema", "type": "object" }
o64890
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec": { "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, "type": "array" }, "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": "string" }, "type": "array" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentSource": { "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentSpec": { "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { "attacher": { "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, "nodeName": { "description": "The node that the volume should be attached to.", "type": "string" }, "source": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentStatus": { "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "properties": { "attachError": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeError", "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." }, "attached": { "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "boolean" }, "attachmentMetadata": { "additionalProperties": { "type": "string" }, "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "object" }, "detachError": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeError", "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." } }, "required": [ "attached" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeError": { "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "storage.k8s.io/v1" ], "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "VolumeAttachment" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentSpec", "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1_VolumeAttachmentStatus", "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachment", "version": "v1" } ] }
kb_1105_Normalized
{ "additionalProperties": false, "description": "Gadget definition schema", "properties": { "module": { "additionalProperties": false, "properties": { "dependencies": { "description": "ResourceLoader modules this gadget depends upon", "type": "array" }, "messages": { "description": "Messages this gadget depends upon", "type": "array" }, "position": { "default": "bottom", "description": "Whether this module should be loaded asynchronously after the page loads (bottom) or synchronously before the page is rendered (top)", "enum": [ "top", "bottom" ], "type": "string" }, "scripts": { "description": "List of JavaScript pages included in this gadget", "type": "array" }, "styles": { "description": "List of CSS pages included in this gadget", "type": "array" } }, "type": "object" }, "settings": { "additionalProperties": false, "properties": { "category": { "default": "", "description": "Key of the category this gadget belongs to", "type": "string" }, "default": { "default": false, "description": "Whether this gadget is enabled by default", "type": "boolean" }, "hidden": { "default": false, "description": "Whether this gadget is hidden from preferences", "type": "boolean" }, "rights": { "description": "The rights required to be able to enable/load this gadget", "items": { "type": "string" }, "type": "array" }, "skins": { "description": "Skins supported by this gadget; empty or true if all skins are supported", "items": { "type": "string" }, "type": [ "array", "boolean" ] } }, "type": "object" } }, "type": "object" }
o76853
{ "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "___content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Holds common attributes of ANS Content objects.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "address": { "$ref": "#/definitions/trait_address_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "canonical_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "comments": { "$ref": "#/definitions/trait_comments_json" }, "content_aliases": { "$ref": "#/definitions/trait_content_aliases_json" }, "content_restrictions": { "$ref": "#/definitions/trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/trait_contributors_json" }, "copyright": { "$ref": "#/definitions/trait_copyright_json" }, "created_date": { "$ref": "#/definitions/trait_created_date_json" }, "credits": { "$ref": "#/definitions/trait_credits_json" }, "description": { "$ref": "#/definitions/trait_description_json" }, "display_date": { "$ref": "#/definitions/trait_display_date_json" }, "distributor": { "$ref": "#/definitions/trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/trait_first_publish_date_json" }, "geo": { "$ref": "#/definitions/trait_geo_json" }, "headlines": { "$ref": "#/definitions/trait_headlines_json" }, "label": { "$ref": "#/definitions/trait_label_json" }, "language": { "$ref": "#/definitions/trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/trait_last_updated_date_json" }, "location": { "$ref": "#/definitions/trait_location_json" }, "owner": { "$ref": "#/definitions/trait_owner_json" }, "pitches": { "$ref": "#/definitions/trait_pitches_json" }, "planning": { "$ref": "#/definitions/trait_planning_json" }, "promo_items": { "$ref": "#/definitions/trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/trait_related_content_json" }, "revision": { "$ref": "#/definitions/trait_revision_json" }, "short_url": { "$ref": "#/definitions/trait_short_url_json" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "source": { "$ref": "#/definitions/trait_source_json" }, "status": { "$ref": "#/definitions/trait_status_json" }, "subheadlines": { "$ref": "#/definitions/trait_subheadlines_json" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "syndication": { "$ref": "#/definitions/trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/trait_tracking_json" }, "type": { "type": "string" }, "vanity_credits": { "$ref": "#" }, "version": { "$ref": "#/definitions/trait_version_json" }, "workflow": { "$ref": "#/definitions/trait_workflow_json" } }, "required": [ "type", "version" ], "title": "A content object.", "type": "object" }, "___image_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds attributes of an ANS image component. In the Arc ecosystem, these are stored in Anglerfish.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "address": { "$ref": "#/definitions/trait_address_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "alt_text": { "$ref": "#/definitions/trait_alt_text_json" }, "canonical_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "caption": { "description": "Caption for the image.", "type": "string" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "comments": { "$ref": "#/definitions/trait_comments_json" }, "content_restrictions": { "$ref": "#/definitions/trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/trait_contributors_json" }, "copyright": { "$ref": "#/definitions/trait_copyright_json" }, "created_date": { "$ref": "#/definitions/trait_created_date_json" }, "credits": { "$ref": "#/definitions/trait_credits_json" }, "description": { "$ref": "#/definitions/trait_description_json" }, "display_date": { "$ref": "#/definitions/trait_display_date_json" }, "distributor": { "$ref": "#/definitions/trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/trait_first_publish_date_json" }, "focal_point": { "$ref": "#/definitions/trait_focal_point_json" }, "geo": { "$ref": "#/definitions/trait_geo_json" }, "headlines": { "$ref": "#/definitions/trait_headlines_json" }, "height": { "description": "Height for the image.", "type": "integer" }, "image_type": { "$ref": "#/definitions/trait_image_type_json" }, "label": { "$ref": "#/definitions/trait_label_json" }, "language": { "$ref": "#/definitions/trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/trait_last_updated_date_json" }, "licensable": { "description": "True if the image can legally be licensed to others.", "type": "boolean" }, "location": { "$ref": "#/definitions/trait_location_json" }, "owner": { "$ref": "#/definitions/trait_owner_json" }, "pitches": { "$ref": "#/definitions/trait_pitches_json" }, "planning": { "$ref": "#/definitions/trait_planning_json" }, "promo_items": { "$ref": "#/definitions/trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/trait_related_content_json" }, "revision": { "$ref": "#/definitions/trait_revision_json" }, "short_url": { "$ref": "#/definitions/trait_short_url_json" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "source": { "$ref": "#/definitions/trait_source_json" }, "status": { "$ref": "#/definitions/trait_status_json" }, "subheadlines": { "$ref": "#/definitions/trait_subheadlines_json" }, "subtitle": { "description": "Subtitle for the image.", "type": "string" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "syndication": { "$ref": "#/definitions/trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/trait_tracking_json" }, "type": { "enum": [ "image" ], "type": "string" }, "url": { "description": "URL for the image.", "type": "string" }, "vanity_credits": { "$ref": "#" }, "version": { "$ref": "#/definitions/trait_version_json" }, "width": { "description": "Width for the image.", "type": "integer" }, "workflow": { "$ref": "#/definitions/trait_workflow_json" } }, "required": [ "type", "version" ], "title": "An image.", "type": "object" }, "___redirect_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A redirect to another story.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "canonical_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "owner": { "$ref": "#/definitions/trait_owner_json" }, "redirect_url": { "$ref": "#/definitions/trait_canonical_url_json" }, "revision": { "$ref": "#/definitions/trait_revision_json" }, "type": { "enum": [ "redirect" ], "type": "string" }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "version", "canonical_url", "redirect_url" ], "title": "A redirect object.", "type": "object" }, "___story_elements_custom_embed_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A custom embed element. Can be used to reference content from external providers about which little is known.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "embed": { "additionalProperties": false, "description": "The embed data.", "properties": { "config": { "additionalProperties": false, "description": "Arbitrary configuration data generated by a plugin. Users are responsible for maintaining schema.", "patternProperties": { "^([a-zA-Z0-9_])*$": {} }, "properties": { "referent": { "not": {} }, "type": { "not": {} }, "version": { "not": {} } }, "title": "Embed Configuration", "type": "object" }, "id": { "description": "Foreign ID of embedded item.", "maxLength": 128, "minLength": 1, "title": "Embed ID", "type": "string" }, "url": { "description": "Provider URL for this embed item. When concatenated with Embed ID, should produce a URL that returns json metadata about the embedded content.", "maxLength": 512, "minLength": 1, "title": "Embed Provider URL", "type": "string" } }, "required": [ "id", "url" ], "title": "Embed", "type": "object" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "enum": [ "custom_embed" ], "type": "string" } }, "required": [ "type", "embed" ], "title": "Custom Embed", "type": "object" }, "___story_elements_raw_html_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "An html content element", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "content": { "description": "Any arbitrary chunk of HTML.", "type": "string" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "enum": [ "raw_html" ] } }, "required": [ "type", "content" ], "type": "object" }, "___utils_author_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models attribution to an individual or group for contribution towards some content item. In the Arc ecosystem, these are stored in the arc-author-service.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "affiliation": { "description": "The name of an organization the author is affiliated with. E.g., The Washington Post, or George Mason University.", "title": "Affiliation", "type": "string" }, "awards": { "description": "A list of awards the author has received.", "items": { "additionalProperties": false, "properties": { "award_name": { "description": "The name of the award.", "title": "Award Name", "type": "string" } }, "type": "object" }, "title": "Awards", "type": "array" }, "bio": { "description": "A one or two sentence description of the author.", "title": "Short Biography", "type": "string" }, "books": { "description": "A list of books written by the author.", "items": { "additionalProperties": false, "properties": { "book_title": { "description": "The book title.", "title": "Title", "type": "string" }, "book_url": { "description": "A link to a page to purchase or learn more about the book.", "title": "URL", "type": "string" } }, "title": "Book", "type": "object" }, "title": "Books", "type": "array" }, "byline": { "description": "The public-facing name, or nom-de-plume, name of the author.", "title": "Byline", "type": "string" }, "contributor": { "description": "If true, this author is an external contributor to the publication.", "title": "Contributor", "type": "boolean" }, "division": { "description": "The desk or group that this author normally reports to. E.g., 'Politics' or 'Sports.'", "title": "Division", "type": "string" }, "education": { "description": "A list of schools that this author has graduated from.", "items": { "additionalProperties": false, "properties": { "school_name": { "description": "The name of the school.", "title": "School Name", "type": "string" } }, "title": "School", "type": "object" }, "title": "Education", "type": "array" }, "email": { "_format": "email", "description": "The professional email address of this author.", "title": "E-mail", "type": "string" }, "expertise": { "description": "A comma-delimited list of subjects the author in which the author has expertise.", "title": "Expertise", "type": "string" }, "first_name": { "description": "The real first name of a human author.", "title": "First Name", "type": "string" }, "image": { "$ref": "#/definitions/___image_json" }, "languages": { "description": "A description of list of languages that the author is somewhat fluent in, excluding the native language of the parent publication, and identified in the language of the parent publication. E.g., Russian, Japanese, Greek.", "title": "Languages", "type": "string" }, "last_name": { "description": "The real last name of a human author.", "title": "Last Name", "type": "string" }, "location": { "description": "The city or locality that the author resides in or is primarily associated with.", "title": "Location", "type": "string" }, "long_bio": { "description": "The full biography of the author.", "title": "Long Biography", "type": "string" }, "middle_name": { "description": "The real middle name of a human author.", "title": "Middle Name", "type": "string" }, "name": { "description": "The full human name of contributor. See also byline, first_name, last_name, middle_name, suffix.", "title": "Name", "type": "string" }, "org": { "description": "Deprecated. In ANS 0.5.8 and prior versions, this field is populated with the 'location' field from Arc Author Service. New implementations should use the 'location' and 'affiliation' field. Content should be identical to 'location.'", "title": "Org", "type": "string" }, "role": { "description": "The organizational role or title of this author.", "title": "Role", "type": "string" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "socialLinks": { "$ref": "#/definitions/trait_social_json", "description": "Deperecated. Included for backwards-compatibility. Content should be identical to social_links." }, "social_links": { "$ref": "#/definitions/trait_social_json" }, "suffix": { "description": "The real suffix of a human author.", "title": "Suffix", "type": "string" }, "type": { "description": "Indicates that this is an author", "enum": [ "author" ], "type": "string" }, "url": { "description": "A link to an author's landing page on the website, or a personal website.", "type": "string" }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "name" ], "title": "An author of a piece of content.", "type": "object" }, "___utils_auxiliary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a auxiliary used in targeting a piece of content.", "properties": { "_id": { "description": "The unique identifier for this auxiliary.", "type": "string" }, "name": { "description": "The general name for this auxiliary.", "type": "string" }, "uid": { "description": "A short identifier for this auxiliary. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "uid" ], "title": "Auxiliary", "type": "object" }, "___utils_dictionary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "patternProperties": { ".*": { "type": "string" } }, "properties": { "basic": { "type": "string" } }, "required": [ "basic" ] }, "___utils_keyword_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "frequency": { "description": "An optional count of the frequency of the keyword as it appears in the content it describes", "type": "integer" }, "keyword": { "description": "The keyword used to describe a piece of content", "type": "string" }, "score": { "description": "An arbitrary weighting to give the keyword", "type": "number" }, "tag": { "description": "The Part of Speech tag for this keyword.", "type": "string" } }, "required": [ "keyword", "score" ], "title": "Keyword", "type": "object" }, "___utils_named_entity_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a named entity (i.e. name of a person, place, or organization) used in a piece of content.", "properties": { "_id": { "description": "A unique identifier for the concept of the named entity.", "type": "string" }, "name": { "description": "The actual string of text that was identified as a named entity.", "type": "string" }, "score": { "decription": "An optional relevancy for this named entitiy.", "type": "number" }, "type": { "description": "A description of what the named entity is. E.g. 'organization', 'person', or 'location'.", "type": "string" } }, "required": [ "_id", "name", "type" ], "title": "Named Entity", "type": "object" }, "___utils_reference_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "This represents a reference to external content that should be denormalized", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/trait_channel_json" }, "referent": { "additionalProperties": false, "dependencies": { "website": { "properties": { "type": { "enum": [ "section" ], "type": "string" } } } }, "properties": { "id": { "description": "The id passed to the provider to retrieve an ANS document", "type": "string" }, "provider": { "description": "A URL that can resolve the id into an ANS element", "type": "string" }, "referent_properties": { "additionalProperties": {}, "description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object", "type": "object" }, "service": { "description": "The type of interaction the provider expects. E.g., 'oembed'", "type": "string" }, "type": { "description": "The ANS type that the provider should return.", "type": "string" }, "website": { "description": "The website which the referenced id belongs to. Currently supported only for sections.", "type": "string" } }, "required": [ "id" ], "type": "object" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "type": { "enum": [ "reference" ], "type": "string" } }, "required": [ "type", "referent" ], "title": "Representation of a normalized element", "type": "object" }, "___utils_section_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "_website": { "$ref": "#/definitions/trait_website_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent": { "description": "The id of this section's parent section in various commonly-used hierarchies, where available.", "properties": { "default": { "type": "string" } }, "type": "object" }, "parent_id": { "description": "The id of this section's parent section in the default hierarchy, if any.", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "section" ] }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Section", "type": "object" }, "___utils_site_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section or 'site' in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent_id": { "description": "The id of this section's parent site, if any", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "site" ] }, "version": { "$ref": "#/definitions/trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Site", "type": "object" }, "___utils_tag_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "_id": { "$ref": "#/definitions/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A more detailed description of the tag.", "type": "string" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "subtype": { "$ref": "#/definitions/trait_subtype_json" }, "text": { "description": "The text of the tag as displayed to users.", "type": "string" }, "type": { "enum": [ "tag" ] } }, "required": [ "text" ], "title": "Tag", "type": "object" }, "___utils_topic_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a topic used in describing a piece of content.", "properties": { "_id": { "description": "The unique identifier for this topic.", "type": "string" }, "name": { "description": "The general name for this topic.", "type": "string" }, "score": { "description": "An arbitrary weighting to give the topic", "type": "number" }, "uid": { "description": "A short identifier for this topic. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "score", "uid" ], "title": "Topic", "type": "object" }, "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "trait_address_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "dependencies": { "extended_address": [ "street_address" ], "post_office_box": [ "street_address" ] }, "description": "An Address following the convention of http://microformats.org/wiki/hcard", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "country_name": { "type": "string" }, "extended_address": { "type": "string" }, "locality": { "type": "string" }, "post_office_box": { "type": "string" }, "postal_code": { "type": "string" }, "region": { "type": "string" }, "street_address": { "type": "string" } }, "title": "Address", "type": "object" }, "trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "trait_alt_text_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The direct ANS equivalent of the HTML 'alt' attribute. A description of the contents of an image for improved accessibility.", "title": "Alt Text", "type": "string" }, "trait_canonical_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The relative URL to this document on the website specified by the `canonical_website` field. In the Arc ecosystem, this will be populated by the content api from the arc-canonical-url service if present based on the canonical_website. In conjunction with canonical_website, it can be used to determine the SEO canonical url or open graph url. In a multi-site context, this field may be different from the website_url field.", "title": "Canonical URL", "type": "string" }, "trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "trait_comments_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Comment configuration data", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "allow_comments": { "description": "If false, commenting is disabled on this content.", "type": "boolean" }, "comments_period": { "description": "How long (in days) after publish date until comments are closed.", "type": "integer" }, "display_comments": { "description": "If false, do not render comments on this content.", "type": "boolean" }, "moderation_required": { "description": "If true, comments must be moderator-approved before being displayed.", "type": "boolean" } }, "title": "Comments", "type": "object" }, "trait_content_aliases_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An list of alternate names that this content can be fetched by instead of id.", "items": { "pattern": "^([a-z])([a-z0-9-])*$", "type": "string" }, "title": "Aliases trait", "type": "array" }, "trait_content_restrictions_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Trait that applies contains the content restrictions of an ANS object.", "properties": { "content_code": { "description": "The content restriction code/level/flag associated with the ANS object", "type": "string" }, "embargo": { "additionalProperties": false, "description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.", "properties": { "active": { "description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo.", "type": "boolean" }, "description": { "description": "An optional description for the embargo.", "type": "string" }, "end_time": { "_format": "date-time", "description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false.", "type": "string" } }, "required": [ "active" ], "type": "object" }, "geo": { "additionalProperties": false, "description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.", "properties": { "restrictions": { "description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.", "items": { "additionalProperties": false, "description": "An object specifying the _id of the restriction this content should be associated with.", "properties": { "restriction_id": { "description": "The _id of the restriction that is stored in Global Settings.", "type": "string" } }, "required": [ "restriction_id" ], "type": "object" }, "maxItems": 1, "minItems": 1, "type": "array" } }, "required": [ "restrictions" ], "type": "object" } }, "title": "Content Restrictions", "type": "object" }, "trait_contributors_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that holds information on who created and contributed to a given document in Arc.", "properties": { "created_by": { "description": "The Creator of the Document.", "properties": { "display_name": { "description": "The display name of the Arc user who created the Document", "type": "string" }, "user_id": { "description": "The unique ID of the Arc user who created the Document", "type": "string" } }, "type": "object" } }, "title": "Contributors", "type": "object" }, "trait_copyright_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A copyright notice for the legal owner of this content. E.g., '\u00a9 1996-2018 The Washington Post.' Format may vary between organizations.", "title": "Copyright information", "type": "string" }, "trait_created_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was originally created (RFC3339-formatted). In the Arc ecosystem, this will be automatically generated for stories in the Story API.", "title": "Created Date", "type": "string" }, "trait_credits_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A list of people and groups attributed to this content, keyed by type of contribution. In the Arc ecosystem, references in this list will be denormalized into author objects from the arc-author-service.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Credit trait", "type": "object" }, "trait_description_json": { "$ref": "#/definitions/___utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The descriptions, or blurbs, for the content.", "title": "Description", "type": "object" }, "trait_display_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "The RFC3339-formatted dated time of the most recent date the story was (re)displayed on a public site.", "title": "Display_Date", "type": "string" }, "trait_distributor_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Information about a third party that provided this content from outside this document's hosted organization.", "oneOf": [ { "additionalProperties": false, "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "category": { "description": "The machine-readable category of how this content was produced. Use 'staff' if this content was produced by an employee of the organization who owns this document repository. (Multisite note: content produced within a single *organization*, but shared across multiple *websites* should still be considered 'staff.') Use \u2018wires\u2019 if this content was produced for another organization and shared with the one who owns this document repository. Use 'freelance' if this content was produced by an individual on behalf of the organization who owns this document repository. Use 'stock' if this content is stock media distributed directly from a stock media provider. Use 'handout' if this is content provided from a source for an article (usually promotional media distributed directly from a company). Use 'other' for all other cases.", "enum": [ "staff", "wires", "freelance", "stock", "handout", "other" ], "type": "string" }, "mode": { "enum": [ "custom" ], "type": "string" }, "name": { "description": "The human-readable name of the distributor of this content. E.g., Reuters.", "type": "string" }, "subcategory": { "description": "The machine-readable subcategory of how this content was produced. E.g., 'freelance - signed'. May vary between organizations.", "type": "string" } } }, { "additionalProperties": false, "properties": { "mode": { "enum": [ "reference" ], "type": "string" }, "reference_id": { "description": "The ARC UUID of the distributor of this content. E.g., ABCDEFGHIJKLMNOPQRSTUVWXYZ.", "type": "string" } }, "required": [ "reference_id", "mode" ] } ], "title": "Distributor", "type": "object" }, "trait_editor_note_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Additional information to be displayed near the content from the editor.", "title": "Editor_Note", "type": "string" }, "trait_first_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was first published.", "title": "First Publish Date", "type": "string" }, "trait_focal_point_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.", "properties": { "x": { "description": "The coordinate point on the horizontal axis", "type": "number" }, "y": { "description": "The coordinate point on the vertical axis", "type": "number" } }, "required": [ "x", "y" ], "title": "Focal Point", "type": "object" }, "trait_geo_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Latitidue and Longitude of the content", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "title": "Geo", "type": "object" }, "trait_headlines_json": { "$ref": "#/definitions/___utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The headline(s) or title for this content. The 'basic' key is required.", "title": "Headlines", "type": "object" }, "trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "trait_image_type_json": { "$schema": "http://json-schema.org/draft-04/schema#", "category": { "description": "The machine-readable enumeration of valid image types.", "enum": [ "photograph", "graphic", "illustration", "thumbnail" ], "type": "string" }, "description": "A more specific category for an image.", "title": "Image Type", "type": "string" }, "trait_label_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "What the Washington Post calls a Kicker", "patternProperties": { "^[a-zA-Z0-9_]*$": { "additionalProperties": false, "description": "Additional user-defined keyed label objects.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "properties": { "basic": { "additionalProperties": false, "description": "The default label object for this piece of content.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "title": "Label", "type": "object" }, "trait_last_updated_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was last updated (RFC3339-formatted).", "title": "Last Updated Date", "type": "string" }, "trait_locale_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The primary language of the content. The value should follow IETF BCP47. (e.g. 'en', 'es-419', etc.) ", "title": "Locale", "type": "string" }, "trait_location_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A description of the location, useful if a full address or lat/long specification is overkill.", "title": "Location related trait", "type": "string" }, "trait_owner_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.", "properties": { "id": { "description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)", "type": "string" }, "sponsored": { "description": "True if this content is advertorial or native advertising.", "type": "boolean" } }, "title": "Owner information ", "type": "object" }, "trait_pitches_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a story's pitches. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "platform": { "description": "A list of the story's pitches to a platform.", "items": { "$ref": "#/definitions/trait_platform_pitch_json" }, "type": "array" }, "publication": { "description": "A list of the story's pitches to a publication.", "items": { "$ref": "#/definitions/trait_publication_pitch_json" }, "type": "array" } }, "title": "Pitches", "type": "object" }, "trait_planning_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies planning information to a document or resource. In the Arc ecosystem, this data is generated by WebSked. Newsroom use only. All these fields should be available and editable in WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "budget_line": { "description": "Used for the newsroom to identify what the story is about, especially if a user is unfamiliar with the slug of a story and the headline or they do not yet exist. Newsroom use only.", "title": "Budget Line", "type": "string" }, "deadline_miss": { "description": "The delta between the story's planned publish date and actual first publish time, in minutes.", "type": "integer" }, "internal_note": { "description": "This note is used for shared communication inside the newsroom.", "title": "Internal Note", "type": "string" }, "scheduling": { "additionalProperties": false, "description": "Scheduling information.", "properties": { "planned_publish_date": { "_format": "date-time", "description": "When the content is planned to be published.", "type": "string" }, "scheduled_publish_date": { "_format": "date-time", "description": "When the content was first published.", "type": "string" }, "will_have_gallery": { "description": "Will this content have galleries?", "type": "boolean" }, "will_have_graphic": { "description": "Will this content have graphics?", "type": "boolean" }, "will_have_image": { "description": "Will this content have images?", "type": "boolean" }, "will_have_video": { "description": "Will this content have videos?", "type": "boolean" } }, "type": "object" }, "story_length": { "additionalProperties": false, "description": "Story length information.", "properties": { "character_count_actual": { "description": "The current number of characters in the story.", "type": "integer" }, "character_count_planned": { "description": "The anticipated number of characters in the story.", "type": "integer" }, "character_encoding": { "description": "The encoding used for counting characters in the story.", "type": "string" }, "inch_count_actual": { "description": "The current length of the story in inches.", "type": "integer" }, "inch_count_planned": { "description": "The anticipated length of the story in inches.", "type": "integer" }, "line_count_actual": { "description": "The current length of the story in lines.", "type": "integer" }, "line_count_planned": { "description": "The anticipated length of the story in lines.", "type": "integer" }, "word_count_actual": { "description": "Current number of words.", "type": "integer" }, "word_count_planned": { "description": "The anticipated number of words in the story.", "type": "integer" } }, "type": "object" }, "websked_sort_date": { "_format": "date-time", "description": "Date to be used for chronological sorting in WebSked.", "type": "string" } }, "title": "Scheduling information", "type": "object" }, "trait_platform_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Platform pitch event", "type": "object" }, "trait_platform_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/trait_platform_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/trait_platform_pitch_event_json" }, "platform_path": { "description": "The path of the platform that this pitch targets.", "type": "string" } }, "title": "Platform pitch", "type": "object" }, "trait_promo_items_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of promotional content to use when highlighting the story. In the Arc ecosystem, references in these lists will be denormalized.", "patternProperties": { ".*": { "oneOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/___utils_reference_json" }, { "$ref": "#/definitions/___story_elements_raw_html_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ] } }, "properties": { "basic": { "oneOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/___utils_reference_json" }, { "$ref": "#/definitions/___story_elements_raw_html_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ] } }, "title": "Promo Items", "type": "object" }, "trait_publication_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "edition_id": { "description": "The ID of the publication edition that this pitch targets.", "type": "string" }, "edition_time": { "_format": "date-time", "description": "The time of the publication edition that this pitch targets.", "type": "string" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Publication pitch event", "type": "object" }, "trait_publication_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/trait_publication_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/trait_publication_pitch_event_json" }, "publication_id": { "description": "The ID of the publication that this pitch targets.", "type": "string" } }, "title": "Publication pitch", "type": "object" }, "trait_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was published.", "title": "Publish_Date", "type": "string" }, "trait_related_content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of content items or references this story is related to, arbitrarily keyed. In the Arc ecosystem, references in this object will be denormalized into the fully-inflated content objects they represent.", "patternProperties": { ".*": { "items": { "anyOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/___utils_reference_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ], "type": "object" }, "type": "array" } }, "properties": { "redirect": { "description": "An attached redirect. In Arc, when this content item is fetched by url, content api will instead return this redirect object with appropriate headers. In all other cases, this content should be treated normally.", "items": { "$ref": "#/definitions/___redirect_json" }, "maxItems": 1, "type": "array" } }, "title": "Related_Content", "type": "object" }, "trait_revision_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "branch": { "description": "The name of the branch this revision was created on.", "type": "string" }, "editions": { "description": "A list of identifiers of editions that point to this revision.", "items": { "type": "string" }, "type": "array" }, "parent_id": { "description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.", "type": "string" }, "published": { "description": "Whether or not this revision's parent story is published, in any form or place", "type": "boolean" }, "revision_id": { "description": "The unique id of this revision.", "type": "string" }, "user_id": { "description": "The unique user id of the person who created this revision.", "type": "string" } }, "title": "Revision", "type": "object" }, "trait_short_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A url-shortened version of the canonical url.", "title": "Short_Url", "type": "string" }, "trait_slug_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A short reference name for internal editorial use", "title": "Slug", "type": "string" }, "trait_social_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Links to various social media", "items": { "additionalProperties": {}, "properties": { "site": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "title": "Social Links", "type": "array" }, "trait_source_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Information about the original source and/or owner of this content", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "edit_url": { "description": "A link to edit this content in its source CMS.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)", "type": "string" }, "source_id": { "description": "The id of this content in a foreign CMS.", "type": "string" }, "source_type": { "description": "Deprecated in 0.10.9. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)", "type": "string" }, "system": { "description": "The software (CMS or editor) that was used to enter this content. E.g., 'wordpress', 'ellipsis'.", "type": "string" } }, "title": "Source", "type": "object" }, "trait_status_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Optional field to story story workflow related status (e.g. published/embargoed/etc)", "title": "Status", "type": "string" }, "trait_subheadlines_json": { "$ref": "#/definitions/___utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The sub-headline(s) for the content.", "title": "Sub-Headlines", "type": "object" }, "trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" }, "trait_syndication_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Key-boolean pair of syndication services where this article may go", "patternProperties": { ".*": { "type": "boolean" } }, "properties": { "external_distribution": { "description": "Necessary for fulfilling contractual agreements with third party clients", "type": "boolean" }, "search": { "description": "Necessary so that we can filter out all articles that editorial has deemed should not be discoverable via search", "type": "boolean" } }, "title": "Syndication", "type": "object" }, "trait_taxonomy_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds the collection of tags, categories, keywords, etc that describe content.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "associated_tasks": { "description": "A list of WebSked task IDs that this content was created or curated to satisfy.", "items": { "pattern": "^[0-9a-fA-F]{24}$", "type": "string" }, "maxItems": 200, "type": "array" }, "auxiliaries": { "description": "A list of auxiliaries. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_auxiliary_json" }, "type": "array" }, "keywords": { "description": "A list of keywords. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_keyword_json" }, "type": "array" }, "named_entities": { "description": "A list of named entities. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_named_entity_json" }, "type": "array" }, "primary_section": { "description": "A primary section object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/___utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "primary_site": { "description": "Deprecated in 0.10.9. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/___utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "sections": { "description": "A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/___utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "type": "array" }, "seo_keywords": { "description": "A list of user-editable manually entered keywords for search purposes. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "sites": { "description": "Deprecated in 0.10.9. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/___utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "type": "array" }, "stock_symbols": { "description": "A list of stock symbols of companies related to this content. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "tags": { "items": { "$ref": "#/definitions/___utils_tag_json" }, "type": "array" }, "topics": { "description": "A list of topics. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_topic_json" }, "type": "array" } }, "title": "Taxonomy", "type": "object" }, "trait_tracking_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Tracking information, probably implementation-dependent", "title": "Tracking", "type": "object" }, "trait_version_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.", "enum": [ "0.10.9" ], "title": "Describes the ANS version of this object", "type": "string" }, "trait_website_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The _id of the website on which this document exists. This field is only available in Content API. If different from canonical_website, then this document was originally sourced from the canonical_website. Generated at fetch time by Content API.", "title": "Website", "type": "string" }, "trait_workflow_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies workflow information to a document or resource. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "note": { "description": "This note will be used for any task automatically generated via WebSked task triggers.", "type": "string" }, "status_code": { "description": "Code indicating the story's current workflow status. This number should match the values configured in WebSked.", "minimum": 1, "type": "integer" } }, "title": "Workflow information", "type": "object" } }, "description": "Similar to the credits trait, but to be used only when ANS is being directly rendered to readers natively. For legal and technical reasons, the `credits` trait is preferred when converting ANS into feeds or other distribution formats. However, when present, `vanity_credits` allows more sophisticated credits presentation to override the default without losing that original data.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#/definitions/___utils_author_json" }, { "$ref": "#/definitions/___utils_reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Vanity Credits trait", "type": "object" }
wp_96_Normalized
{ "properties": { "check_in_date": { "description": "The check-in date in YYYY-MM-DD format", "type": "string" }, "check_out_date": { "description": "The check-out date in YYYY-MM-DD format", "type": "string" }, "guests": { "description": "The number of guests", "type": "integer" }, "location": { "description": "The location to search for hotels", "type": "string" } }, "required": [ "location", "check_in_date", "check_out_date", "guests" ], "type": "object" }
search_hotels_985738f1
{ "properties": { "dimensions": { "properties": { "base": { "description": "Base of triangle", "type": "number" }, "height": { "description": "Height of triangle", "type": "number" }, "radius": { "description": "Radius of circle", "type": "number" }, "side_length": { "description": "Length of side for square", "type": "number" } }, "type": "object" }, "shape": { "description": "Type of shape (circle, square, triangle, etc.)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_15d77de3
{ "default": "", "description": "# Brief\n\nOptional filename. This attribute can be used for example to export the resource into file\nwhich name is defined by this attribute-\n", "type": "string" }
o45633
{ "id": "http://schemas.triniti.io/json-schema/triniti/ovp.kaltura/caption/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_schema": { "type": "string", "pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$", "default": "pbj:triniti:ovp.kaltura::caption:1-0-0" }, "id": { "type": "string", "pattern": "^[\\w-]+$", "pbj": { "type": "string", "rule": "single" } }, "entry_id": { "type": "string", "pattern": "^[\\w-]+$", "pbj": { "type": "string", "rule": "single" } }, "version": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "size": { "type": "integer", "default": 0, "minimum": 0, "maximum": 16777215, "pbj": { "type": "medium-int", "rule": "single" } }, "file_ext": { "type": "string", "pattern": "^[\\w\\.-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "integer", "minimum": -2147483648, "maximum": 2147483647, "pbj": { "type": "timestamp", "rule": "single", "useTypeDefault": false } }, "updated_at": { "type": "integer", "minimum": -2147483648, "maximum": 2147483647, "pbj": { "type": "timestamp", "rule": "single", "useTypeDefault": false } }, "deleted_at": { "type": "integer", "minimum": -2147483648, "maximum": 2147483647, "pbj": { "type": "timestamp", "rule": "single", "useTypeDefault": false } }, "description": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "language": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "language_code": { "type": "string", "pattern": "^\\w+$", "pbj": { "type": "string", "rule": "single" } }, "is_default": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "accuracy": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "status": { "type": "string", "enum": [ "unknown", -1, 0, 2, 3, 7, 9 ], "pbj": { "type": "string-enum", "rule": "single" } }, "format": { "type": "string", "enum": [ "unknown", 1, 2, 3, 4 ], "pbj": { "type": "string-enum", "rule": "single" } } }, "required": [ "_schema" ], "additionalProperties": false }
o82974
{ "properties": { "dimensions": { "oneOf": [ { "required": [ "radius" ] }, { "required": [ "length", "width" ] }, { "required": [ "base", "height" ] } ], "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape to calculate the area of", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_f8e04f89
{ "description": "Initializer is information about an initializer that has not yet completed.", "properties": { "name": { "description": "name of the process that is responsible for initializing this object.", "type": [ "string", "null" ] } }, "required": [ "name" ], "type": "object" }
kb_463_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Postal address for Canada", "description": "Postal addresses for the country of Canada", "type": "object", "properties": { "address": { "type": "object", "properties": { "name": { "type": "string" }, "number": { "type": "string" }, "street": { "type": "string" }, "street2": { "type": "string" }, "city": { "type": "string" }, "province": { "$ref": "#/definitions/CAN_province" }, "postalCode": { "$ref": "#/definitions/CAN_postalCode" } }, "additionalProperties": false, "required": [ "name", "number", "street", "city", "province", "postalCode" ] } }, "definitions": { "CAN_province": { "type": "string", "enum": [ "AB", "BC", "MB", "NB", "NL", "NS", "NT", "NU", "ON", "PE", "QC", "SK", "YT" ] }, "CAN_postalCode": { "type": "string", "pattern": "^[A-Z][0-9][A-Z]( )?[0-9][A-Z][0-9]$" } } }
o83702
{ "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "boolean", "null" ] } }, "required": [ "endpoints", "path" ], "type": "object" }
kb_381_Normalized
{ "properties": { "end_time": { "description": "The end time of the event in YYYY-MM-DD HH:MM format", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event in YYYY-MM-DD HH:MM format", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time", "location" ], "type": "object" }
create_calendar_event_a2233073
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The length of a side (for square or rectangle)", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (circle, square, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_b5b4358c
{ "additionalProperties": false, "definitions": { "list_of_strings": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "list_or_dict": { "oneOf": [ { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, { "type": "object" } ] }, "service": { "additionalProperties": false, "dependencies": { "memswap_limit": [ "mem_limit" ] }, "id": "#/definitions/service", "properties": { "build": { "type": "string" }, "cap_add": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "cap_drop": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "cgroup_parent": { "type": "string" }, "command": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "container_name": { "type": "string" }, "cpu_shares": { "type": [ "number", "string" ] }, "cpuset": { "type": "string" }, "devices": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "dns": { "$ref": "#/definitions/string_or_list" }, "dns_search": { "$ref": "#/definitions/string_or_list" }, "dockerfile": { "type": "string" }, "domainname": { "type": "string" }, "entrypoint": { "$ref": "#/definitions/string_or_list" }, "env_file": { "$ref": "#/definitions/string_or_list" }, "environment": { "oneOf": [ { "additionalProperties": false, "patternProperties": { ".+": { "format": "environment", "type": [ "string", "number", "boolean", "null" ] } }, "type": "object" }, { "items": { "type": "string" }, "type": "array", "_uniqueItems": true } ] }, "expose": { "items": { "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "extends": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "file": { "type": "string" }, "service": { "type": "string" } }, "required": [ "service" ], "type": "object" } ] }, "external_links": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "extra_hosts": { "$ref": "#/definitions/list_or_dict" }, "hostname": { "type": "string" }, "image": { "type": "string" }, "ipc": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "links": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "log_driver": { "type": "string" }, "log_opt": { "type": "object" }, "mac_address": { "type": "string" }, "mem_limit": { "type": [ "number", "string" ] }, "memswap_limit": { "type": [ "number", "string" ] }, "net": { "type": "string" }, "pid": { "type": [ "string", "null" ] }, "ports": { "items": { "oneOf": [ { "_format": "ports", "type": "string" }, { "format": "ports", "type": "number" } ] }, "type": "array", "_uniqueItems": true }, "privileged": { "type": "boolean" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "security_opt": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "stdin_open": { "type": "boolean" }, "tty": { "type": "boolean" }, "ulimits": { "patternProperties": { "^[a-z]+$": { "oneOf": [ { "type": "integer" }, { "additionalProperties": false, "properties": { "hard": { "type": "integer" }, "soft": { "type": "integer" } }, "required": [ "soft", "hard" ], "type": "object" } ] } }, "type": "object" }, "user": { "type": "string" }, "volume_driver": { "type": "string" }, "volumes": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "volumes_from": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "working_dir": { "type": "string" } }, "type": "object" }, "string_or_list": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/list_of_strings" } ] } }, "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/service" } }, "type": "object" }
o20390
{ "additionalProperties": false, "description": "Schema for Google Analytics Enhanced Ecommerce action data", "properties": { "affiliation": { "maxLength": 500, "type": "string" }, "coupon": { "maxLength": 500, "type": "string" }, "currency": { "maxLength": 3, "minLength": 3, "type": "string" }, "id": { "maxLength": 500, "type": "string" }, "list": { "maxLength": 500, "type": "string" }, "option": { "maxLength": 500, "type": "string" }, "revenue": { "multipleOf": 0.01, "type": "number" }, "shipping": { "multipleOf": 0.01, "type": "number" }, "step": { "maximum": 2147483647, "minimum": 0, "type": "integer" }, "tax": { "multipleOf": 0.01, "type": "number" } }, "self": { "format": "jsonschema", "name": "actionFieldObject", "vendor": "com.google.analytics.enhanced-ecommerce", "version": "1-0-0" }, "type": "object" }
sp_34_Normalized
{ "properties": { "billing_address": { "description": "The billing address of the customer", "type": "string" }, "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "item_name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "item_name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "billing_address", "items" ], "type": "object" }
create_invoice_5fa3ae0e
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "VRT to CWE Mapping", "description": "Mapping from the Vulnerability Rating Taxonomy to CWE", "definitions": { "MappingMetadata": { "type": "object", "properties": { "default": { "type": "null" } }, "required": [ "default" ] }, "VRTid": { "type": "string", "pattern": "^[a-z_]*$" }, "CWE": { "type": [ "array", "null" ], "items": { "type": "string", "pattern": "^CWE-[0-9]*$" }, "minItems": 1, "_uniqueItems": true }, "Mapping": { "type": "object", "properties": { "id": { "$ref": "#/definitions/VRTid" }, "cwe": { "$ref": "#/definitions/CWE" } }, "required": [ "id", "cwe" ], "additionalProperties": false }, "MappingParent": { "type": "object", "properties": { "id": { "$ref": "#/definitions/VRTid" }, "children": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/MappingParent" }, { "$ref": "#/definitions/Mapping" } ] } }, "cwe": { "$ref": "#/definitions/CWE" } }, "required": [ "id", "children" ], "additionalProperties": false } }, "type": "object", "required": [ "metadata", "content" ], "properties": { "metadata": { "$ref": "#/definitions/MappingMetadata" }, "content": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/MappingParent" }, { "$ref": "#/definitions/Mapping" } ] } } } }
o27787
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "item_name": { "description": "The name of the item", "type": "string" }, "quantity": { "description": "The quantity of the item", "type": "integer" }, "tax_rate": { "description": "The tax rate to apply", "type": "number" }, "unit_price": { "description": "The unit price of the item", "type": "number" } }, "required": [ "customer_name", "item_name", "quantity", "unit_price" ], "type": "object" }
generate_invoice_dea15870
{ "additionalProperties": true, "properties": { "body": { "additionalProperties": true, "properties": { "group_id": { "_format": "uuid", "type": "string" }, "push_id": { "_format": "uuid", "type": "string" } }, "type": "object" }, "device": { "additionalProperties": true, "properties": { "amazon_channel": { "_format": "uuid", "type": "string" }, "android_channel": { "_format": "uuid", "type": "string" }, "ios_channel": { "_format": "uuid", "type": "string" }, "named_user_id": { "type": "string" } }, "type": "object" }, "id": { "_format": "uuid", "type": "string" }, "occurred": { "_format": "date-time", "type": "string" }, "offset": { "type": "string" }, "processed": { "_format": "date-time", "type": "string" }, "type": { "pattern": "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$", "type": "string" } }, "self": { "format": "jsonschema", "name": "SEND", "vendor": "com.urbanairship.connect", "version": "1-0-0" }, "type": "object" }
sp_397_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "attributes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "min": { "type": "integer" }, "max": { "type": "integer" }, "featureId": { "type": "string" } }, "required": [ "id", "min", "max", "featureId" ] } }, "contexts": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "min": { "type": "integer" }, "max": { "type": "integer" } }, "required": [ "id", "min", "max" ] } }, "configuration": { "type": "object", "properties": { "selectedFeatures": { "type": "array", "items": { "type": "string" } }, "attribute_values": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "value": { "type": "integer" } }, "required": [ "id", "value" ] } }, "context_values": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "value": { "type": "integer" } }, "required": [ "id", "value" ] } } }, "required": [ "selectedFeatures", "attribute_values", "context_values" ] }, "constraints": { "type": "array", "items": { "type": "string" } }, "preferences": { "type": "array", "items": { "type": "string" } } }, "required": [ "attributes", "contexts", "configuration", "constraints", "preferences" ] }
o7287
{ "items": { "description": "manifest item for image save and load", "properties": { "Config": { "description": "", "id": "", "type": "string" }, "Layers": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "Parent": { "description": "", "id": "", "type": "string" }, "RepoTags": { "items": { "type": "string" }, "minItems": 1, "type": "array" } }, "required": [ "Config", "Layers" ], "title": "manifest item", "type": "object" }, "title": "manifest item set", "type": "array" }
o43309
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Services", "type": "object", "definitions": { "locations": { "type": "array", "items": { "type": "string" } }, "name": { "type": "string" }, "checkType": { "type": "string", "enum": [ "http", "tcp" ] }, "timeout": { "type": "number" }, "slowThreshold": { "type": "number" }, "tags": { "type": [ "array", "null" ], "items": { "type": "string", "format": "mongoId" } }, "group": { "type": [ "string", "null" ] }, "auth": { "type": [ "object", "null" ], "properties": { "username": { "type": "string" }, "password": { "type": "string" } } }, "tcp": { "type": "object", "properties": { "name": { "$ref": "#/definitions/name" }, "checkType": { "type": "string", "enum": [ "tcp" ] }, "timeout": { "$ref": "#/definitions/timeout" }, "checkLocations": { "$ref": "#/definitions/locations" }, "slowThreshold": { "$ref": "#/definitions/slowThreshold" }, "tags": { "$ref": "#/definitions/tags" }, "group": { "$ref": "#/definitions/group" }, "auth": { "$ref": "#/definitions/auth" }, "host": { "type": "string" }, "port": { "type": "string" }, "data": { "type": "string" } }, "required": [ "name", "checkType", "timeout", "checkLocations", "host", "port", "data" ] }, "http": { "type": "object", "properties": { "name": { "$ref": "#/definitions/name" }, "checkType": { "type": "string", "enum": [ "http" ] }, "timeout": { "$ref": "#/definitions/timeout" }, "checkLocations": { "$ref": "#/definitions/locations" }, "slowThreshold": { "$ref": "#/definitions/slowThreshold" }, "tags": { "$ref": "#/definitions/tags" }, "group": { "$ref": "#/definitions/group" }, "auth": { "$ref": "#/definitions/auth" }, "checkMethod": { "type": "string", "enum": [ "GET", "POST", "PUT", "DELETE" ] }, "checkUrl": { "type": "string" }, "body": { "type": "string" }, "validateCert": { "type": "boolean" }, "headers": { "type": [ "array", "null" ] } }, "required": [ "name", "checkType", "timeout", "checkUrl", "checkLocations", "checkMethod", "slowThreshold" ] } }, "oneOf": [ { "$ref": "#/definitions/http" }, { "$ref": "#/definitions/tcp" } ] }
o74594
{ "$schema": "http://json-schema.org/draft-04/schema", "id": "http://danielzhu.tk/birthland/data", "title": "Stages", "type": "object", "additionalProperties": { "title": "Stage", "additionalProperties": false, "properties": { "start": { "$ref": "#/definitions/break" }, "text": { "$ref": "#/definitions/text" }, "end": { "$ref": "#/definitions/break" }, "stage": { "type": "string" }, "choices": { "type": "array", "items": { "type": "object", "required": [ "text", "prompt" ], "additionalProperties": false, "properties": { "description": { "$ref": "#/definitions/text" }, "text": { "type": "string" }, "prompt": { "$ref": "#/definitions/text" }, "action": { "type": "string" }, "stage": { "type": "string" }, "condition": { "type": "string" } } }, "minItems": 1 } } }, "definitions": { "text": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" }, "minItems": 1 } ] }, "break": { "enum": [ "none", "paragraph", "page" ] } } }
o34759
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/video-block/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "css_class": { "type": "string", "pattern": "^[\\w\\s-]+$", "description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.", "pbj": { "type": "string", "rule": "single" } }, "updated_date": { "type": "string", "format": "date-time", "description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.", "pbj": { "type": "date-time", "rule": "single" } }, "aside": { "type": "boolean", "description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.", "pbj": { "type": "boolean", "rule": "single" } }, "node_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "description": "An optional override for the title of the node.", "pbj": { "type": "string", "rule": "single" } }, "autoplay": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "launch_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "muted": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "start_at": { "type": "integer", "default": 0, "minimum": 0, "maximum": 65535, "pbj": { "type": "small-int", "rule": "single" } }, "show_more_videos": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "poster_image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "A reference to an image asset to use as the poster that will override what is provided by the target video.", "pbj": { "type": "identifier", "rule": "single" } } }, "required": [ "node_ref" ], "additionalProperties": true }
o82708
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "CMOA Provenance Standard Record", "description": "A description of the history of transfers of ownership and custody of artwork, using the CMOA Provenance Standard.", "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "$ref": "#/definitions/period" }, "definitions": { "period": { "type": "object", "properties": { "period_certainty": { "title": "Period Certainty", "description": "Are you certain that this period is correct in its entirety?", "type": "boolean", "default": "true" }, "acquisition_method": { "title": "Acquisition Method", "description": "A URI referencing a method from a controlled vocabulary describing the way in which the work changed hands.", "example": "acq:sale", "$ref": "#/definitions/uri" }, "owner": { "title": "Owner", "description": "The acquiring party.", "$ref": "#/definitions/person" }, "event": { "title": "Named Event", "description": "An explicit reference to the event in which this work changed hands", "example": "acq:sale", "$ref": "#/definitions/name" }, "sellers_agent": { "title": "Seller's Agent", "description": "A party who assisted the party who was relinquishing the object.", "$ref": "#/definitions/person" }, "purchasing_agent": { "title": "Purchasing Agent", "description": "A party who assisted the party who was acquiring the object.", "$ref": "#/definitions/person" }, "transfer_location": { "title": "Location of Transfer", "description": "The explicit place where the transfer event took place.", "properties": { "place": { "$ref": "#/definitions/place" } }, "additionalProperties": false }, "timespan": { "title": "Transfer Dates", "description": "The dates when the transfer event took place, and optionally the dates when the acquiring party relinquished the object.", "properties": { "botb": { "title": "Begin of the Begin", "description": "The earliest possible moment the acquisition event could have taken place.", "$ref": "#/definitions/edtf" }, "eotb": { "title": "End of the Begin", "description": "The latest possible moment when the acquisition event could have taken place.", "$ref": "#/definitions/edtf" }, "bote": { "title": "Begin of the End", "description": "The earliest possible moment when the relinquishing event could have taken place.", "$ref": "#/definitions/edtf" }, "eote": { "title": "End of the End", "description": "The latest possible moment when the relinquishing event could have taken place.", "$ref": "#/definitions/edtf" }, "in": { "title": "On this Date", "description": "Used for single-day events, when the BOTB and EOTE are the same date.", "$ref": "#/definitions/edtf" }, "begin": { "title": "Begin Date", "description": "The date the acquisition event took place\u2014used when the BOTB and EOTB are the same date.", "$ref": "#/definitions/edtf" }, "end": { "title": "End Date", "description": "The date the relinquishing event took place\u2014used when the EOTB and EOTE are the same date.", "$ref": "#/definitions/edtf" } }, "additionalProperties": false }, "stock_number": { "title": "Stock or Lot Number", "description": "A identification number given to the object as part of the transaction", "type": "string" }, "purchase": { "oneOf": [ { "properties": { "value": { "title": "Purchase Value", "description": "The numeric value of the transaction", "type": "string" }, "currency_symbol": { "title": "Currency Unit", "description": "The symbol used to indicate the currency the transaction was denominated in", "type": "string" } }, "additionalProperties": false }, { "properties": { "string": { "title": "Currency Text", "description": "The abount of the purchase price as text", "type": "string" } }, "additionalProperties": false } ] }, "footnote": { "title": "Footnote", "description": "An free text field with additional information about the transaction", "type": "string" }, "citations": { "type": "array", "items": { "title": "Citation", "description": "A bibliographical reference to a primary source that documents the transaction", "type": "string" } }, "direct_transfer": { "title": "Direct Tranfer?", "description": "Did the transaction directly pass to the acquiring party from the previous period?", "type": "boolean", "default": "false" }, "text": { "title": "Provenance Text", "description": "The original, unparsed textual representation of this period", "type": "string" } }, "required": [ "period_certainty", "acquisition_method", "timespan", "direct_transfer", "text" ], "additionalProperties": false }, "uri": { "oneOf": [ { "type": "string", "pattern": "^\\S+:\\S+$" } ] }, "edtf": { "type": "string", "pattern": "^\\d{2}[\\d\\?ux]{2}[\\?|~]?(?:-[01\\?ux][\\d\\?ux][\\?|~]?(?:-[0123\\?ux][\\d\\?ux][\\?|~]?)?)?$", "default": "uuuu-uu-uu" }, "person": { "properties": { "name": { "$ref": "#/definitions/name" }, "place": { "$ref": "#/definitions/place" }, "birth": { "title": "Birth or Founding Year", "description": "The first year the party was in existance", "$ref": "#/definitions/edtf" }, "death": { "title": "Death or Dissolusion Year", "description": "The last year the party was in existance", "$ref": "#/definitions/edtf" }, "relationship": { "title": "Familial Relationship", "description": "A party related to the named party. (Note that the relationship type describes the relationship from the point of view of the this party. So 'son' means that this party was the father of the named party. ", "properties": { "name": { "$ref": "#/definitions/name" }, "type": { "type": "string", "enum": [ "brother", "sister", "sibling", "mother", "father", "parent", "son", "daughter", "child", "grandchild", "grandparent", "nephew", "niece", "uncle", "aunt", "husband", "wife", "spouse", "relative" ] } }, "required": [ "name", "type" ], "additionalProperties": false }, "clause": { "enum": [ "the artist" ] } }, "additionalProperties": false }, "place": { "$ref": "#/definitions/name" }, "name": { "properties": { "token": { "title": "ID Token", "description": "(For internal use only)", "type": "string", "pattern": "^\\$\\w+$" }, "string": { "title": "Name Value", "description": "The textual representation of this name", "type": "string" }, "uri": { "title": "Linked Data URI", "description": "an explicit link to a URI in an authority file for this name", "oneOf": [ { "$ref": "#/definitions/uri" }, { "type": "null" } ] }, "certainty": { "title": "Certainty", "description": "Is this named certain?", "type": "boolean", "default": true } }, "required": [ "string", "certainty", "uri" ], "additionalProperties": false } } }
o23555
{ "title": "Image upgrade strategy input", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "properties": { "fabric_uuid": { "type": "string", "description": "Fabric UUID" }, "upgrade_mode": { "enum": [ "test_run", "dry_run", "upgrade" ], "description": "Mode in which to run workflow" }, "image_devices": { "type": "array", "items": { "title": "Image Devices", "type": "object", "description": "List of images and corresponding devices to upgrade", "additionalProperties": false, "properties": { "image_uuid": { "type": "string" }, "device_list": { "type": "array", "description": "List of device UUIDs to be upgraded with this image", "items": { "title": "device uuid", "type": "string", "format": "uuid" } } }, "required": [ "image_uuid", "device_list" ] } }, "advanced_parameters": { "title": "Advanced parameters", "description": "Optional parameters used to override defaults", "type": "object", "additionalProperties": false, "default": {}, "properties": { "bulk_device_upgrade_count": { "type": "integer", "description": "Maximum number of devices to upgrade simultaneously", "default": 4 }, "health_check_abort": { "type": "boolean", "description": "Enable/disable abort upon health check failures", "default": true }, "Juniper": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "bgp": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "bgp_flap_count": { "type": "integer", "description": "Number of flaps allowed for BGP neighbors", "default": 4 }, "bgp_flap_count_check": { "type": "boolean", "description": "Enable/disable bgp_flap_count check", "default": true }, "bgp_down_peer_count": { "type": "integer", "description": "Number of down peers allowed", "default": 0 }, "bgp_down_peer_count_check": { "type": "boolean", "description": "Enable/disable bgp_down_peer_count check", "default": true }, "bgp_peer_state_check": { "type": "boolean", "description": "Enable/disable bgp peer state check", "default": true } } }, "alarm": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "system_alarm_check": { "type": "boolean", "description": "Enable/disable system alarm check", "default": true }, "chassis_alarm_check": { "type": "boolean", "description": "Enable/disable chassis alarm check", "default": true } } }, "interface": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "interface_error_check": { "type": "boolean", "description": "Enable/disable interface error check", "default": true }, "interface_drop_count_check": { "type": "boolean", "description": "Enable/disable interface drop check", "default": true }, "interface_carrier_transition_count_check": { "type": "boolean", "description": "Enable/disable interface carrier transition check", "default": true } } }, "routing_engine": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "routing_engine_cpu_idle": { "type": "integer", "description": "Routing engine CPU idle time", "default": 60 }, "routing_engine_cpu_idle_check": { "type": "boolean", "description": "Enable/disable routing engine CLU idle time check", "default": true } } }, "fpc": { "type": "object", "additionalProperties": false, "default": {}, "properties": { "fpc_cpu_5min_avg": { "type": "integer", "description": "FPC CPU 5 minute average utilization", "default": 50 }, "fpc_cpu_5min_avg_check": { "type": "boolean", "description": "Enable/disable FPC CPU 5 minute average utilizationcheck", "default": true }, "fpc_memory_heap_util": { "type": "integer", "description": "FPC memory heap utilization", "default": 45 }, "fpc_memory_heap_util_check": { "type": "boolean", "description": "Enable/disable FPC memory heap utilization check", "default": true } } }, "active_route_count_check": { "type": "boolean", "description": "Enable/disable active route count check", "default": true }, "l2_total_mac_count_check": { "type": "boolean", "description": "Enable/disable l2 total mac count check", "default": true }, "storm_control_flag_check": { "type": "boolean", "description": "Enable/disable storm control flag check", "default": true } } } } } } }
o71307
{ "description": "ContainerStateWaiting is a waiting state of a container.", "properties": { "message": { "description": "Message regarding why the container is not yet running.", "type": [ "string", "null" ] }, "reason": { "description": "(brief) reason the container is not yet running.", "type": [ "string", "null" ] } }, "type": "object" }
kb_131_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "EMT order list schema for AMTweaker", "type": "array", "items": { "type": "object", "properties": { "request": { "description": "Requested item. Either an ore dictionary tag or an item in the form modid:item:damage", "type": "string", "oneOf": [ { "pattern": "^[^:]+$" }, { "pattern": "^[^:]+:[^:]+:[0-9]+$" } ] }, "amount": { "description": "Amount of items necessary to fulfill the order.", "type": "integer", "minimum": 1 }, "reward": { "description": "MP reward for fulfilling the order.", "type": "integer", "minimum": 1 }, "type": { "description": "Order type. single (1 day), ", "enum": [ "single", "short", "middle", "long" ] }, "name": { "description": "Display name for the order. Can be a translation tag defined as a resource (realm assts.economical.lang)", "type": "string" }, "season": { "description": "Order season. none (default), spring, summer, autumn or winter.", "enum": [ "none", "spring", "summer", "autumn", "winter" ] }, "biome": { "description": "Order biome category. none (default), plane, cold, arid, damp or hell.", "enum": [ "none", "plane", "cold", "arid", "damp", "hell" ] } }, "required": [ "request", "amount", "reward", "type", "name" ], "additionalProperties": false } }
o2109
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }
wp_36_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://mkvtoolnix.download/doc/mkvmerge-identification-output-schema-v2.json", "title": "mkvmerge identification output", "description": "The JSON output produced by mkvmerge's file identification mode", "type": "object", "properties": { "attachments": { "description": "an array describing the attachments found if any", "type": "array", "items": { "type": "object", "properties": { "content_type": { "type": "string", "minLength": 1 }, "description": { "type": "string" }, "file_name": { "type": "string" }, "id": { "type": "integer", "minimum": 0 }, "size": { "type": "integer", "minimum": 0 }, "properties": { "type": "object", "properties": { "uid": { "type": "integer", "minimum": 0 } }, "additionalProperties": false }, "type": { "type": "string" } }, "additionalProperties": false, "required": [ "file_name", "id", "properties", "size" ] } }, "chapters": { "type": "array", "items": { "type": "object", "properties": { "num_entries": { "type": "integer" } }, "additionalProperties": false, "required": [ "num_entries" ] } }, "container": { "description": "information about the identified container", "type": "object", "properties": { "properties": { "description": "additional properties for the container varying by container format", "type": "object", "properties": { "container_type": { "description": "A unique number identifying the container type that's supposed to stay constant over all future releases of MKVToolNix", "type": "integer", "minLength": 1 }, "duration": { "description": "The file's/segment's duration in nanoseconds", "type": "integer", "minimum": 0 }, "is_providing_timecodes": { "description": "States whether or not the container has timestamps for the packets (e.g. Matroska, MP4) or not (e.g. SRT, MP3)", "type": "boolean" }, "segment_uid": { "description": "A hexadecimal string of the segment's UID (only for Matroska files)", "type": "string", "minLength": 32, "maxLength": 32 }, "next_segment_uid": { "description": "A hexadecimal string of the next segment's UID (only for Matroska files)", "type": "string", "minLength": 32, "maxLength": 32 }, "previous_segment_uid": { "description": "A hexadecimal string of the previous segment's UID (only for Matroska files)", "type": "string", "minLength": 32, "maxLength": 32 }, "other_file": { "description": "The file name of an additional file processed as well", "type": "string", "minLength": 1 }, "playlist": { "description": "States whether or not the identified file is a playlist (e.g. MPLS) referring to several other files", "type": "boolean" }, "playlist_chapters": { "description": "The number of chapters in a playlist if it is a one", "type": "integer", "minimum": 0 }, "playlist_duration": { "description": "The total duration in nanoseconds of all files referenced by the playlist if it is a one", "type": "integer", "minimum": 0 }, "playlist_size": { "description": "The total size in bytes of all files referenced by the playlist if it is a one", "type": "integer", "minimum": 0 }, "title": { "type": "string" } }, "additionalProperties": false }, "recognized": { "description": "States whether or not mkvmerge knows about the format", "type": "boolean" }, "supported": { "description": "States whether or not mkvmerge can read the format", "type": "boolean" }, "type": { "description": "A human-readable description/name for the container format", "type": "string", "minLength": 1 } }, "additionalProperties": false, "required": [ "recognized", "supported" ] }, "errors": { "type": "array", "items": { "type": "string" } }, "file_name": { "description": "the identified file's name", "type": "string", "minLength": 1 }, "global_tags": { "type": "array", "items": {} }, "identification_format_version": { "description": "The output format's version", "type": "integer", "minimum": 1 }, "track_tags": { "type": "array", "items": { "type": "object", "properties": { "num_entries": { "type": "integer" }, "track_id": { "type": "integer" } }, "additionalProperties": false, "required": [ "num_entries", "track_id" ] } }, "tracks": { "type": "array", "items": { "type": "object", "properties": { "codec": { "type": "string", "minLength": 1 }, "id": { "type": "integer", "minLength": 0 }, "type": { "type": "string" }, "properties": { "type": "object", "properties": { "aac_is_sbr": { "type": "string", "enum": [ "true", "false", "unknown" ] }, "audio_bits_per_sample": { "type": "integer", "minimum": 0 }, "audio_channels": { "type": "integer", "minimum": 0 }, "audio_sampling_frequency": { "type": "integer", "minimum": 0 }, "codec_id": { "type": "string" }, "codec_private_data": { "type": "string" }, "codec_private_length": { "type": "integer", "minimum": 0 }, "content_encoding_algorithms": { "type": "string", "minLength": 1 }, "default_duration": { "type": "integer", "minimum": 0 }, "default_track": { "type": "boolean" }, "display_dimensions": { "type": "string", "pattern": "^[0-9]+x[0-9]+$" }, "enabled_track": { "type": "boolean" }, "forced_track": { "type": "boolean" }, "language": { "type": "string" }, "number": { "type": "integer", "minimum": 0 }, "packetizer": { "type": "string", "minLength": 1 }, "pixel_dimensions": { "type": "string", "pattern": "^[0-9]+x[0-9]+$" }, "stereo_mode": { "type": "integer", "minimum": 0 }, "stream_id": { "type": "string", "pattern": "^[0-9a-f]{2}$" }, "sub_stream_id": { "type": "string", "pattern": "^[0-9a-f]{2}$" }, "tag_artist": { "type": "string" }, "tag_bitsps": { "type": "string" }, "tag_bps": { "type": "string" }, "tag_fps": { "type": "string" }, "tag_title": { "type": "string" }, "text_subtitles": { "type": "boolean" }, "track_name": { "type": "string" }, "ts_pid": { "type": "integer", "minimum": 0 }, "uid": { "type": "integer", "minimum": 0 } }, "additionalProperties": false } }, "additionalProperties": false, "required": [ "codec", "id", "type" ] } }, "warnings": { "type": "array", "items": { "type": "string" } } } }
o81129
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "race env map file", "definitions": { "point": { "type": "array", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 } }, "type": "object", "properties": { "size": { "type": "array", "items": { "type": "integer" }, "minItems": 2, "maxItems": 2 }, "max_time": { "type": "number" }, "cars": { "type": "array", "items": { "type": "array", "items": { "type": "number" }, "minItems": 3, "maxItems": 3 } }, "walls": { "type": "array", "items": { "type": "array", "items": { "$ref": "#/definitions/point" } } }, "headline": { "type": "array", "items": { "$ref": "#/definitions/point" } }, "finish": { "type": "array", "items": { "$ref": "#/definitions/point" }, "minItems": 2, "maxItems": 2 } }, "required": [ "walls", "headline", "finish", "max_time", "size", "cars" ] }
o1191
{ "properties": { "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "type": { "enum": [ "System internal", "User defined" ], "readonly": true, "type": "string" }, "value": { "type": "string" }, "variable": { "type": "string" } }, "title": "filterhtmlinjectionvariable", "type": "object" }
o30452
{ "properties": { "Interface": { "type": "string" }, "action": { "enum": [ "ALLOW", "DENY" ], "type": "string" }, "curstate": { "readonly": true, "type": "integer" }, "data": { "readonly": true, "type": "boolean" }, "destipop": { "enum": [ "=", "!=", "EQ", "NEQ" ], "type": "string" }, "destipv6": { "type": "boolean" }, "destipv6val": { "type": "string" }, "destport": { "type": "boolean" }, "destportop": { "enum": [ "=", "!=", "EQ", "NEQ" ], "type": "string" }, "destportval": { "type": "string" }, "detail": { "type": "boolean" }, "failedprobes": { "readonly": true, "type": "integer" }, "hits": { "readonly": true, "type": "integer" }, "kernelstate": { "enum": [ "APPLIED", "NOTAPPLIED", "RE-APPLY", "SFAPPLIED", "SFNOTAPPLIED" ], "readonly": true, "type": "string" }, "monitor": { "type": "string" }, "monstatcode": { "readonly": true, "type": "integer" }, "monstatparam1": { "readonly": true, "type": "integer" }, "monstatparam2": { "readonly": true, "type": "integer" }, "monstatparam3": { "readonly": true, "type": "integer" }, "msr": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "name": { "type": "string" }, "nexthop": { "type": "boolean" }, "nexthopval": { "type": "string" }, "nexthopvlan": { "type": "integer" }, "priority": { "type": "integer" }, "protocol": { "enum": [ "ICMPV6", "TCP", "UDP" ], "type": "string" }, "protocolnumber": { "type": "integer" }, "srcipop": { "enum": [ "=", "!=", "EQ", "NEQ" ], "type": "string" }, "srcipv6": { "type": "boolean" }, "srcipv6val": { "type": "string" }, "srcmac": { "type": "string" }, "srcport": { "type": "boolean" }, "srcportop": { "enum": [ "=", "!=", "EQ", "NEQ" ], "type": "string" }, "srcportval": { "type": "string" }, "state": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "td": { "type": "integer" }, "totalfailedprobes": { "readonly": true, "type": "integer" }, "totalprobes": { "readonly": true, "type": "integer" }, "vlan": { "type": "integer" } }, "title": "nspbr6", "type": "object" }
o32026
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "openTemplate": { "type": "string", "minLength": 1 }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "leftPanelEnabled", "limitLocales", "minWidthBreakPoint", "openTemplate", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "mediaelementCenterPanel": { "type": "object", "properties": { "defaultHeight": { "type": "number" }, "defaultWidth": { "type": "number" }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "defaultHeight", "defaultWidth", "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "displayOrder": { "type": "string" }, "exclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" } }, "required": [ "displayOrder", "exclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title" ] } }, "required": [ "options", "content" ] }, "treeViewLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 } }, "required": [ "login" ] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] } }, "required": [ "embedDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "mediaelementCenterPanel", "moreInfoRightPanel", "treeViewLeftPanel", "dialogue", "downloadDialogue", "loginDialogue", "settingsDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 } }, "required": [ "degradedResourceMessage", "degradedResourceLogin" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o58761
{ "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "graph": { "additionalProperties": false, "properties": { "directed": { "default": true, "type": [ "boolean", "null" ] }, "edges": { "items": { "additionalProperties": false, "properties": { "directed": { "default": true, "type": [ "boolean", "null" ] }, "id": { "type": "string" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] }, "relation": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "string" } }, "required": [ "source", "target" ], "type": "object" }, "type": [ "array", "null" ] }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] }, "nodes": { "items": { "additionalProperties": false, "properties": { "id": { "type": "string" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] } }, "required": [ "id" ], "type": "object" }, "type": [ "array", "null" ] }, "type": { "type": "string" } }, "type": "object" } }, "oneOf": [ { "additionalProperties": false, "properties": { "graph": { "$ref": "#/definitions/graph" } }, "required": [ "graph" ], "type": "object" }, { "additionalProperties": false, "properties": { "graphs": { "items": { "$ref": "#/definitions/graph" }, "type": "array" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] }, "type": { "type": "string" } }, "type": "object" } ] }
o53109
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Git LFS HTTPS Batch API Request", "type": "object", "properties": { "transfers": { "type": "array", "items": { "type": "string" } }, "operation": { "type": "string" }, "objects": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "size": { "type": "number", "minimum": 0 }, "authenticated": { "type": "boolean" } }, "required": [ "oid", "size" ], "additionalProperties": false } } }, "required": [ "objects", "operation" ] }
o43297
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ClientIPConfig": { "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", "properties": { "timeoutSeconds": { "_format": "int32", "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress": { "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", "properties": { "hostname": { "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", "type": "string" }, "ip": { "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus": { "description": "LoadBalancerStatus represents the status of a load-balancer.", "properties": { "ingress": { "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Service": { "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "Service" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceSpec", "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceStatus", "description": "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Service", "version": "v1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServicePort": { "description": "ServicePort contains information on service's port.", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. Field can be enabled with ServiceAppProtocol feature gate.", "type": "string" }, "name": { "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.", "type": "string" }, "nodePort": { "_format": "int32", "description": "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport", "type": "integer" }, "port": { "_format": "int32", "description": "The port that will be exposed by this service.", "type": "integer" }, "protocol": { "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.", "type": "string" }, "targetPort": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceSpec": { "description": "ServiceSpec describes the attributes that a user creates on a service.", "properties": { "clusterIP": { "description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "type": "string" }, "externalIPs": { "description": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.", "items": { "type": "string" }, "type": "array" }, "externalName": { "description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.", "type": "string" }, "externalTrafficPolicy": { "description": "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.", "type": "string" }, "healthCheckNodePort": { "_format": "int32", "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.", "type": "integer" }, "ipFamily": { "description": "ipFamily specifies whether this Service has a preference for a particular IP family (e.g. IPv4 vs. IPv6). If a specific IP family is requested, the clusterIP field will be allocated from that family, if it is available in the cluster. If no IP family is requested, the cluster's primary IP family will be used. Other IP fields (loadBalancerIP, loadBalancerSourceRanges, externalIPs) and controllers which allocate external load-balancers should use the same IP family. Endpoints for this Service will be of this family. This field is immutable after creation. Assigning a ServiceIPFamily not available in the cluster (e.g. IPv6 in IPv4 only cluster) is an error condition and will fail during clusterIP assignment.", "type": "string" }, "loadBalancerIP": { "description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", "type": "string" }, "loadBalancerSourceRanges": { "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/", "items": { "type": "string" }, "type": "array" }, "ports": { "description": "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServicePort" }, "type": "array", "x-kubernetes-list-map-keys": [ "port", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "port", "x-kubernetes-patch-strategy": "merge" }, "publishNotReadyAddresses": { "description": "publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery.", "type": "boolean" }, "selector": { "additionalProperties": { "type": "string" }, "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/", "type": "object" }, "sessionAffinity": { "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SessionAffinityConfig", "description": "sessionAffinityConfig contains the configurations of session affinity." }, "topologyKeys": { "description": "topologyKeys is a preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local. Topology keys must be valid label keys and at most 16 keys may be specified. Endpoints are chosen based on the first topology key with available backends. If this field is specified and all entries have no backends that match the topology of the client, the service has no backends for that client and connections should fail. The special value \"*\" may be used to mean \"any topology\". This catch-all value, if used, only makes sense as the last value in the list. If this is not specified or empty, no topology constraints will be applied.", "items": { "type": "string" }, "type": "array" }, "type": { "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceStatus": { "description": "ServiceStatus represents the current status of a service.", "properties": { "loadBalancer": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus", "description": "LoadBalancer contains the current status of the load-balancer, if one is present." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SessionAffinityConfig": { "description": "SessionAffinityConfig represents the configurations of session affinity.", "properties": { "clientIP": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ClientIPConfig", "description": "clientIP contains the configurations of Client IP based session affinity." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "ServiceList holds a list of services.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "items": { "description": "List of services", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Service" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "ServiceList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ServiceList", "version": "v1" } ] }
kb_979_Normalized
{ "$id": "http://example.com/MTA/.mtaext", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "hooks": { "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of the existing hook that will be modified by this extension.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "parameters": { "description": "Configuration parameters that are used when executing the hook to the target runtime environment.", "type": "object" }, "requires": { "description": "List of the existing required dependencies that will be modified by this extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of the existing required dependencies that will be modified.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "parameters": { "description": "Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the hook at runtime. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" } } } } } } } }, "description": "MTA extension descriptor schema v3.3", "properties": { "_schema-version": { "description": "Used to indicate to an MTA processing tool (e.g. a deployer), which schema version was taken as the base when authoring a descriptor.", "type": "string", "pattern": "^[1-9]\\d*(\\.\\d+){0,2}$", "default": "3.3.0" }, "ID": { "description": "A globally unique ID of this MTA extension descriptor. Unlimited string of unicode characters.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "extends": { "description": "A globally unique ID of the MTA or the MTA extension which shall be extended by this descriptor.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "description": { "description": "A non-translatable description of this MTA extension. This is not a text for application users.", "type": "string" }, "provider": { "description": "The provider or vendor.", "type": "string" }, "parameters": { "description": "Global parameters that will be added to the application.", "type": "object" }, "hooks": { "description": "A list of the existing hooks that will be modified by the extension.", "$ref": "#/definitions/hooks" }, "modules": { "description": "List of the existing modules that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The module name which must match an existing module defined by the deployment descriptor.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "A collection of key-value pairs that are available to the module at runtime.", "type": "object" }, "parameters": { "description": "Configuration parameters that are used when deploying the module to the target runtime environment.", "type": "object" }, "hooks": { "description": "A list of the existing hooks that will be modified by the extension.", "$ref": "#/definitions/hooks" }, "requires": { "description": "List of the existing required dependencies that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The dependency name which must match an existing required dependency defined by the deployment descriptor.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "Required properties can be mapped from provided properties. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" }, "parameters": { "description": "Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the module at runtime. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" } } } }, "provides": { "description": "List of the existing provided dependencies that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The dependency name which must match an existing provided dependency defined by the deployment descriptor.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "Property names and values make up the configuration data which is to be provided to requiring modules at runtime", "type": "object" }, "parameters": { "description": "Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the module at runtime. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" } } } } } } }, "resources": { "description": "List of the existing resources that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The resource name which must match an existing resource defined by the deployment descriptor.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "active": { "description": "If a resource is declared to be active, it is allocated and bound according to declared requirements. Default value is true.", "type": "boolean" }, "properties": { "description": "Property names and values make up the configuration data which is to be provided to requiring modules at runtime.", "type": "object" }, "parameters": { "description": "Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to requiring modules at runtime. Untyped resources cannot have parameters.", "type": "object" }, "hooks": { "description": "List of existing hooks that will be modified by the extension.", "$ref": "#/definitions/hooks" }, "requires": { "description": "List of the existing required dependencies that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of the existing required dependency that will be modified.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "Required properties can be mapped from provided properties. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" }, "parameters": { "description": "Parameters can be used to influence the behavior of tools which interpret this descriptor. Parameters are not made available to the resource at runtime. Provided property values can be accessed by \"~{<provided-property-name>}\". Such expressions can be part of an arbitrary string", "type": "object" } } } } } } }, "module-types": { "description": "A list of existing module type definitions that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of the existing module type that will be modified.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "A collection of key-value pairs that will be inherited by all modules of this type.", "type": "object" }, "parameters": { "description": "Configuration parameters that will be inherited in all modules of this type.", "type": "object" } } } }, "resource-types": { "description": "A list of existing resource type definitions that will be modified by the extension.", "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "description": "The name of the existing resource type that will be modified.", "type": "string", "pattern": "^[A-Za-z0-9_\\-\\.]+$" }, "properties": { "description": "A collection of key-value pairs that will be inherited by all modules of this type.", "type": "object" }, "parameters": { "description": "Configuration parameters that will be inherited in all resources of this type.", "type": "object" } } } } }, "required": ["_schema-version", "ID", "extends"], "title": ".mtaext v3.3", "type": "object" }
mtaext
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The value returned by PUT /{db}", "oneOf": [ { "properties": { "error": { "type": "string" }, "reason": { "type": "string" } }, "required": [ "error", "reason" ] }, { "properties": { "ok": { "type": "boolean" } }, "required": [ "ok" ] } ], "title": "CouchDB database creation", "type": "object" }
o60145
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "engine": { "description": "CFML engine the package supports", "type": "object", "properties": { "type": { "title": "Engine Type", "description": "The name of the engine", "type": "string", "enum": [ "railo", "lucee", "adobe" ] }, "version": { "title": "Engine Version", "description": "The semantic version of the engine that is supported", "type": "string", "default": "" } } }, "dependency": { "title": "Dependency", "description": "Dependencies are specified with a package name/slug to version range, local file path, URL, or Git/SVN endpoint. The version range is a string which has one or more space-separated descriptors.", "type": "object", "additionalProperties": { "type": "string" } }, "person": { "description": "A person who has been involved in creating or maintaining this package", "type": [ "object", "string" ], "required": [ "name" ], "properties": { "name": { "description": "Name of the person", "type": "string" }, "url": { "description": "URL for the person", "type": "string", "format": "uri" }, "email": { "description": "Email address of the person", "type": "string", "format": "email" } } } }, "title": "Package Manifest", "description": "Configuration file for a CFML package", "type": "object", "properties": { "name": { "title": "Name", "description": "The name of the package", "type": "string", "default": "" }, "slug": { "title": "Slug", "description": "ForgeBox unique slug", "type": "string", "pattern": "^[\\w@-]*$", "maxLength": 250, "default": "" }, "version": { "title": "Version", "description": "Semantic version of your package", "type": "string", "default": "" }, "author": { "title": "Author", "description": "Author of this package", "type": "string", "default": "" }, "location": { "title": "Location", "description": "Location of where to download the package. Overrides ForgeBox location", "type": "string", "default": "" }, "directory": { "title": "Directory", "description": "Install directory where this package should be placed once installed. If not defined, it installs were the CommandBox command was executed.", "type": "string", "default": "" }, "createPackageDirectory": { "title": "Create Package Directory", "description": "This determines if the container directory will contain a sub-directory according to the package slug name. The default is true", "type": "boolean", "default": true }, "packageDirectory": { "title": "Package Directory", "description": "This name will be used for the package sub-directory instead of the slug name", "type": "string", "default": "" }, "homepage": { "title": "Homepage", "description": "Project homepage URL", "type": "string", "format": "uri" }, "documentation": { "title": "Documentation", "description": "Documentation URL", "type": "string", "format": "uri" }, "repository": { "title": "Repository", "description": "Source repository", "type": "object", "properties": { "type": { "title": "Repository Type", "description": "The version control system. Popular examples are git, svn, or mercurial", "type": "string", "default": "" }, "url": { "title": "Repository URL", "description": "The URL at which the repository resides", "type": "string", "format": "uri" } } }, "bugs": { "title": "Bugs", "description": "Bug issue management URL", "type": "string", "format": "uri" }, "shortDescription": { "title": "Short Description", "description": "ForgeBox short description", "type": "string", "default": "" }, "description": { "title": "Description", "description": "ForgeBox big description. If not set, it can be taken from a Readme.md, Readme, or Readme.txt", "type": "string", "default": "" }, "instructions": { "title": "Instructions", "description": "Install instructions. If not set, it can be taken from a instructions.md, instructions, or instructions.txt", "type": "string", "default": "" }, "changelog": { "title": "Change Log", "description": "Change log. If not set, it can be taken from a changelog.md, changelog, or changelog.txt", "type": "string", "default": "" }, "type": { "title": "Type", "description": "ForgeBox contribution type", "type": "string", "enum": [ "caching", "cf-engines", "cfbuilder-extensions", "cfwheels-plugins", "cms", "commandbox-commands", "commandbox-modules", "commandbox-recipes", "contentbox-modules", "contentbox-themes", "contentbox-widgets", "demos", "di", "interceptors", "logging", "lucee-extensions", "messaging-queues", "modules", "mvc", "nosql", "plugins", "preside-extensions", "preside-skeletons", "projects", "testing", "wirebox-aspects", "wirebox-listeners" ] }, "keywords": { "title": "Keywords", "description": "ForgeBox keywords", "type": [ "array", "string" ], "items": { "title": "Keyword", "description": "ForgeBox keyword", "type": "string" }, "default": [] }, "private": { "title": "Private", "description": "Designates the package as a private ForgeBox package. Private packages are not publicly accessible, but still offer all the benefits of ForgeBox.", "type": "boolean", "default": false }, "engines": { "title": "Engines", "description": "CFML engines the package supports", "type": "array", "items": { "$ref": "#/definitions/engine" }, "default": [] }, "defaultEngine": { "description": "The name of the default CFML engine for the `start` command to use.", "type": "string" }, "defaultPort": { "description": "Deprecated. The HTTP port the server will be started on when you use the start command. Use `port` in `server.json` instead.", "type": "number" }, "projectURL": { "title": "Project URL", "description": "Default project URL if not using CommandBox start server commands", "type": "string", "format": "uri" }, "license": { "title": "Licenses", "description": "List of licenses the package can have", "type": "array", "items": { "title": "License", "description": "A license the package can have", "type": "object", "properties": { "type": { "title": "License Type", "description": "The license type. For example, MIT.", "type": "string", "default": "" }, "url": { "title": "License URL", "description": "The URL at which the license resides", "type": "string", "format": "uri" } } }, "default": [] }, "contributors": { "title": "Contributors", "description": "Contributors to the package", "type": "array", "items": { "$ref": "#/definitions/person" }, "default": [] }, "dependencies": { "$ref": "#/definitions/dependency" }, "devDependencies": { "$ref": "#/definitions/dependency" }, "installPaths": { "title": "Install Paths", "description": "Tracks install locations so uninstall can work. The key is the package name/slug and the value is the path", "type": "object", "additionalProperties": { "type": "string" }, "default": {} }, "scripts": { "title": "Scripts", "description": "Set of script commands that correspond to the interception points in CommandBox or arbitrary names that can be run with the `run-script` command", "type": "object", "properties": { "preInstall": { "description": "Run BEFORE the package is installed", "type": "string" }, "onInstall": { "description": "Run WHILE the package is installed", "type": "string" }, "postInstall": { "description": "Run AFTER the package is installed", "type": "string" }, "preUninstall": { "description": "Run BEFORE the package is uninstalled", "type": "string" }, "postUninstall": { "description": "Run AFTER the package is uninstalled", "type": "string" }, "preVersion": { "description": "Run BEFORE bump the package version", "type": "string" }, "postVersion": { "description": "Run AFTER bump the package version, but BEFORE Git repo is tagged", "type": "string" }, "onRelease": { "description": "Run AFTER bump the package version and AFTER Git repo is tagged", "type": "string" }, "prePublish": { "description": "Run BEFORE the package is published", "type": "string" }, "postPublish": { "description": "Run AFTER the package is published", "type": "string" } }, "additionalProperties": { "type": "string" }, "default": {} }, "ignore": { "title": "Ignore", "description": "List of file globs to ignore when installing the package similar to .gitignore patterns", "type": "array", "items": { "description": "Ignore glob pattern", "type": "string" }, "default": [] }, "testbox": { "title": "TestBox", "description": "TestBox integration", "type": "object", "properties": { "runner": { "title": "TestBox Runner", "description": "The URI location of the test runner for an app or several with slug names", "type": [ "string", "array" ], "items": { "description": "The runner URIs mapped to slug names", "type": "object", "additionalProperties": { "type": "string", "format": "uri" } }, "format": "uri" }, "labels": { "title": "Labels List", "description": "A list of labels to only include when running the tests", "type": [ "string", "array" ], "items": { "description": "A label a spec must have to be ran", "type": "string" } }, "excludes": { "title": "Exclude List", "description": "A list of labels to exclude when running the tests", "type": [ "string", "array" ], "items": { "description": "A label to be excluded from the test run", "type": "string" } } } }, "cfmigrations": { "title": "CF Migrations", "description": "Configuration object for CF Migration database settings.", "type": "object", "properties": { "migrationsDirectory": { "title": "Migrations Directory", "description": "Location of generated migration files that migration commands will use.", "type": "string" }, "schema": { "title": "Database Schema", "type": "string" }, "connectionInfo": { "title": "Migrations Directory", "description": "Location of generated migration files that migration commands will use.", "type": "object", "properties": { "password": { "title": "Database Password", "type": "string" }, "connectionString": { "title": "Database Connection String", "type": "string" }, "class": { "title": "Database class", "type": "string" }, "username": { "title": "Database Username", "type": "string" } } }, "defaultGrammar": { "title": "Default Grammar", "description": "Name of the qb service to use for grammar.", "type": "string", "enum": [ "AutoDiscover@qb", "BaseGrammar@qb", "MySQLGrammar@qb", "OracleGrammar@qb", "PostgresGrammar@qb", "SqlServerGrammar@qb" ] } } } } }
box
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "description": { "description": "The item description", "type": "string" }, "price": { "description": "The price per unit", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "description", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
create_invoice_3c3e89cd
{ "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "properties": { "warning_banner": { "$id": "/properties/warning_banner", "title": "This GDO gathers multicast statistics from the whole fabric and it might take a few minutes to complete.", "type": "object", "properties": { "warning_banner_2": { "$id": "/properties/warning_banner_2", "title": "It is assumed that:", "type": "object", "properties": { "warning_banner_3": { "$id": "/properties/warning_banner_3", "title": "(1) the traffic is coming from outside of the fabric (through device(s) with CRB-MCAST-Gateway role);", "type": "object", "properties": { "warning_banner_4": { "$id": "/properties/warning_banner_4", "title": "(2) the traffic is going to devices attached to server leaves (physical_router_role == 'leaf');", "type": "object", "properties": { "warning_banner_5": { "$id": "/properties/warning_banner_5", "title": "(3) PIM is enabled in the fabric.", "type": "object", "properties": {} } } } } } } } } }, "source": { "$id": "/properties/source", "title": "Source", "type": "string", "default": "" }, "group": { "$id": "/properties/group", "title": "Group", "type": "string", "default": "" } }, "required": [ "source", "group" ] }
o8448
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "dcm2niix_input" ], "type": "object", "properties": { "dcm2niix_input": { "type": "object", "properties": { "type": { "enum": [ "dicom", "parrec" ] } } } } }, "config": { "required": [ "3Dvol", "single_file_mode", "merge2d", "philips_scaling", "anonymize_bids", "bids_sidecar", "text_notes_private", "crop", "filename", "compress_nifti", "decompress_dicoms", "ignore_derived" ], "type": "object", "properties": { "compress_nifti": { "default": "y", "type": "string", "id": "-z" }, "merge2d": { "default": "n", "type": "string", "id": "-m" }, "philips_scaling": { "default": "y", "type": "string", "id": "-p" }, "anonymize_bids": { "default": "n", "type": "string", "id": "-ba" }, "bids_sidecar": { "default": "n", "type": "string", "id": "-b" }, "3Dvol": { "default": false, "type": "boolean" }, "crop": { "default": "n", "type": "string", "id": "-x" }, "text_notes_private": { "default": "n", "type": "string", "id": "-t" }, "single_file_mode": { "default": "n", "type": "string", "id": "-s" }, "decompress_dicoms": { "default": false, "type": "boolean" }, "ignore_derived": { "default": "n", "type": "string", "id": "-i" }, "filename": { "default": "%f", "type": "string", "id": "-f" } } } }, "title": "Invocation manifest for DCM2NIIX: v1.0.20170821" }
o41418
{ "title": "PointCloud FixedSize Algorithm", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "Render points with fixed real world or screen space size.", "properties": { "size": { "type": "number", "description": "Symbol size in real world units or display unit" }, "type": { "type": "string", "enum": [ "pointCloudFixedSizeAlgorithm" ] }, "useRealWorldSymbolSizes": { "type": "boolean", "description": " If true symbol size is in meters, display unit (pt) otherwise" } }, "required": [ "size", "type" ], "additionalProperties": false }
o90260
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://api.guildwars2.com/v2/continents", "type": "array", "minItems": 2, "description": "List of available continent IDs", "name": "continentIds", "items": { "id": "https://api.guildwars2.com/v2/continent/id", "type": "integer", "minimum": 1, "default": 1, "description": "The unique identifier for a continent" } }
o15726
{ "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "string", "null" ] }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": [ "boolean", "null" ] } }, "required": [ "endpoints", "path" ], "type": "object" }
kb_379_Normalized
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the item in centimeters", "type": "number" }, "length": { "description": "The length of the item in centimeters", "type": "number" }, "width": { "description": "The width of the item in centimeters", "type": "number" } }, "required": [ "length", "width", "height" ], "type": "object" }, "weight": { "description": "The weight of the item in kilograms", "type": "number" } }, "required": [ "weight", "dimensions" ], "type": "object" }
calculate_shipping_cost_5a0cd546
{ "additionalProperties": false, "description": "Snowplow Redshift storage configuration", "properties": { "compRows": { "description": "Number of rows to be used as the sample size for compression analysis", "maximum": 1000000000, "minimum": 1000, "type": "integer" }, "database": { "description": "Redshift database name", "maxLength": 64, "minLength": 1, "type": "string" }, "host": { "anyOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "description": "Redshift cluster host ('localhost' for enabled SSH Tunnel)", "type": "string" }, "id": { "_format": "uuid", "description": "Machine-readable unique identificator", "type": "string" }, "jdbc": { "additionalProperties": false, "properties": { "BlockingRowsMode": { "description": "The number of rows to hold in memory", "minimum": 0, "type": "integer" }, "DSILogLevel": { "description": "Amount of detail included in log file", "maximum": 6, "minimum": 0, "type": "integer" }, "DisableIsValidQuery": { "description": "Disable detection JDBC driver no longer holding a valid database connection", "type": "boolean" }, "FilterLevel": { "description": "The minimum severity level of a message that the client processes", "enum": [ "DEBUG", "INFO", "NOTICE", "WARNING", "LOG", "ERROR" ] }, "TCPKeepAliveMinutes": { "description": "The threshold for minutes of inactivity before initiating a TCP keepalive transmission", "minimum": 0, "type": "integer" }, "loginTimeout": { "description": "The number of seconds to wait before timing out when connecting to the server", "minimum": 0, "type": "integer" }, "loglevel": { "description": "The amount of logging information output by the driver", "maximum": 2, "minimum": 0, "type": [ "integer", "null" ] }, "socketTimeout": { "description": "The number of seconds to wait during socket read operations before timing out", "minimum": 0, "type": "integer" }, "ssl": { "description": "Whether to use an SSL connection", "type": "boolean" }, "sslMode": { "description": "Determines how to handle server certificate verification", "enum": [ "verify-ca", "verify-full" ], "type": [ "string", "null" ] }, "sslRootCert": { "description": "The full path of a .pem or .crt file containing the trust root Certificate Authority", "maxLength": 1024, "type": [ "string", "null" ] }, "tcpKeepAlive": { "description": "A value that determines whether TCP keepalives are enabled", "type": "boolean" } }, "type": "object" }, "maxError": { "description": "Amount of allowed errors before aborting load", "maximum": 100000, "minimum": 0, "type": "integer" }, "name": { "description": "Human-readable storage target name, used only for logging", "maxLength": 255, "type": "string" }, "password": { "description": "Redshift password, either plain-text or encrypted key for EC2 Parameter Storage", "properties": { "ec2ParameterStore": { "description": "EC2 Parameter Storage configuration", "properties": { "parameterName": { "description": "EC2 Parameter with encrypted password", "maxLength": 2048, "type": "string" } }, "required": [ "parameterName" ], "type": "object" } }, "required": [ "ec2ParameterStore" ], "type": [ "string", "object" ] }, "port": { "description": "Redshift database port", "maximum": 65535, "minimum": 1, "type": "integer" }, "processingManifest": { "description": "Optional processing manifest to maintain pipeline state", "properties": { "amazonDynamoDb": { "description": "Configuration for processing manifest on top of DynamoDB - single available implementation", "properties": { "tableName": { "description": "DynamoDB table name", "maxLength": 255, "minLength": 3, "type": "string" } }, "required": [ "tableName" ], "type": "object" } }, "required": [ "amazonDynamoDb" ], "type": [ "object", "null" ] }, "purpose": { "description": "Kind of data stored in this instance", "enum": [ "ENRICHED_EVENTS" ] }, "roleArn": { "description": "IAM Role ARN used to load data from S3", "minLength": 20, "type": "string" }, "schema": { "description": "Redshift database schema (e.g. 'atomic')", "maxLength": 128, "type": "string" }, "sshTunnel": { "description": "Optional SSH Tunnel configuration", "properties": { "bastion": { "description": "Bastion host configuration", "properties": { "host": { "anyOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "description": "Bastion SSH host", "type": "string" }, "key": { "description": "SSH-key stored in EC2 Parameter Storage", "properties": { "ec2ParameterStore": { "properties": { "parameterName": { "maxLength": 2048, "type": "string" } }, "required": [ "parameterName" ], "type": "object" } }, "required": [ "ec2ParameterStore" ], "type": [ "object", "null" ] }, "passphrase": { "description": "Plain-text SSH user's passphrase", "maxLength": 2048, "type": [ "string", "null" ] }, "port": { "description": "Bastion SSH port", "maximum": 65535, "minimum": 1, "type": "integer" }, "user": { "description": "SSH user", "maxLength": 32, "type": "string" } }, "required": [ "host", "port", "user", "passphrase", "key" ], "type": "object" }, "destination": { "description": "Database socket inside private network", "properties": { "host": { "anyOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "description": "Redshift host inside private network (root-level host should be changed to 'localhost')", "type": "string" }, "port": { "description": "Redshift port inside private network (root-level 'port' should be changed to be identical to 'localPort')", "maximum": 65535, "minimum": 1, "type": "integer" } }, "required": [ "host", "port" ], "type": "object" }, "localPort": { "description": "Arbitrary port on node, running Loader (shoul be identical to root-level 'port')", "maximum": 65535, "minimum": 1, "type": "integer" } }, "required": [ "bastion", "destination", "localPort" ], "type": [ "object", "null" ] }, "username": { "description": "Redshift user", "maxLength": 128, "type": "string" } }, "required": [ "name", "id", "host", "database", "port", "username", "password", "schema", "sshTunnel", "processingManifest", "roleArn", "maxError", "compRows", "jdbc", "purpose" ], "self": { "format": "jsonschema", "name": "redshift_config", "vendor": "com.snowplowanalytics.snowplow.storage", "version": "3-0-0" }, "type": "object" }
sp_371_Normalized
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "openTemplate": { "type": "string", "minLength": 1 }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "leftPanelEnabled", "limitLocales", "openTemplate", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "downloadEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "downloadEnabled", "feedbackEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "canvasExclude": { "type": "string" }, "displayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" } }, "required": [ "canvasExclude", "displayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title" ] } }, "required": [ "options", "content" ] }, "contentLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "virtexCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "showStats": { "type": "boolean" }, "trimAttributionCount": { "type": "number" } }, "required": [ "showStats", "trimAttributionCount" ] }, "content": { "type": "object", "properties": { "acknowledgements": { "type": "string", "minLength": 1 }, "zoomIn": { "type": "string", "minLength": 1 }, "zoomOut": { "type": "string", "minLength": 1 } }, "required": [ "acknowledgements", "zoomIn", "zoomOut" ] } }, "required": [ "options", "content" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 }, "cancel": { "type": "string", "minLength": 1 } }, "required": [ "login", "cancel" ] } }, "required": [ "content" ] }, "mediaelementCenterPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] } }, "required": [ "embedDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "moreInfoRightPanel", "contentLeftPanel", "virtexCenterPanel", "dialogue", "downloadDialogue", "loginDialogue", "mediaelementCenterPanel", "settingsDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "authorisationFailedMessage": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o66717
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "fossa-deps", "description": "fossa-deps for dependency specification for FOSSA CLI", "$defs": { "os": { "enum": [ "alpine", "centos", "debian", "redhat", "ubuntu", "oraclelinux", "busybox", "sles", "fedora" ], "description": "Name of the distribution OS." }, "referenced-app-dependency": { "properties": { "name": { "type": "string", "minLength": 1, "description": "Name of the dependency. This name will be used to search for dependency in relevant registries." }, "type": { "enum": [ "bower", "cargo", "carthage", "composer", "cpan", "renv", "gem", "git", "go", "hackage", "hex", "maven", "npm", "nuget", "paket", "pub", "pypi", "cocoapods", "swift", "url" ], "description": "Type of the dependency. It informs FOSSA which relevant registries to search for dependency's distribution." }, "version": { "type": "string", "description": "Version of the dependency. It informs FOSSA which version of the dependency to scan. If not provided, latest version will be used." } }, "required": [ "name", "type" ], "additionalProperties": false }, "referenced-apk-deb-dependency": { "properties": { "name": { "type": "string", "minLength": 1, "description": "Name of the dependency. This name will be used to search for dependency in relevant registries." }, "type": { "enum": [ "apk", "deb" ], "description": "Type of the dependency. It informs FOSSA which relevant registries to search for dependency's distribution." }, "version": { "type": "string", "description": "Version of the dependency. It informs FOSSA which version of the dependency to scan. If not provided, latest version will be used." }, "arch": { "type": "string", "minLength": 1, "description": "Architecture associated with this package" }, "os": { "$ref": "#/$defs/os" }, "osVersion": { "type": "string", "minLength": 1, "description": "Version of the distribution OS." } }, "required": [ "name", "type", "arch", "os", "osVersion" ], "additionalProperties": false }, "referenced-rpm-dependency": { "properties": { "name": { "type": "string", "minLength": 1, "description": "Name of the dependency. This name will be used to search for dependency in relevant registries." }, "type": { "enum": [ "rpm-generic" ], "description": "Type of the dependency. It informs FOSSA which relevant registries to search for dependency's distribution." }, "version": { "type": "string", "description": "Version of the dependency. It informs FOSSA which version of the dependency to scan. If not provided, latest version will be used." }, "arch": { "type": "string", "minLength": 1, "description": "Architecture associated with this package" }, "epoch": { "type": "string", "minLength": 1, "description": "Epoch associated with version (if any)." }, "os": { "$ref": "#/$defs/os" }, "osVersion": { "type": "string", "minLength": 1, "description": "Version of the distribution OS." } }, "required": [ "name", "type", "arch", "os", "osVersion" ], "additionalProperties": false }, "referenced-dependency": { "oneOf": [ { "$ref": "#/$defs/referenced-app-dependency" }, { "$ref": "#/$defs/referenced-apk-deb-dependency" }, { "$ref": "#/$defs/referenced-rpm-dependency" } ] }, "custom-dependency": { "properties": { "name": { "type": "string", "description": "Name of the dependency. This will be the name used in FOSSA's dashboard.", "minLength": 1 }, "version": { "type": "string", "description": "Version of the dependency. This will be the version used in FOSSA's dashboard.", "minLength": 1 }, "license": { "type": "string", "description": "License of the dependency. This string will be used to infer license type.", "minLength": 1 }, "metadata": { "type": "object", "properties": { "description": { "type": "string", "description": "Description of the dependency (if any)" }, "homepage": { "type": "string", "description": "Homepage of the dependency. This should be web address." } } } }, "required": [ "name", "version", "license" ], "additionalProperties": false }, "vendored-dependency": { "properties": { "name": { "type": "string", "description": "Name of the dependency. This will be the name associated with this vendored dependency in FOSSA's dashboard", "minLength": 1 }, "path": { "type": "string", "description": "Path to directory, which will be archived and upload to provided endpoint for license scanning.", "minLength": 1 }, "version": { "type": "string", "description": "Version of the dependency. This will be the version associated with this vendored dependency in FOSSA's dashboard" } }, "required": [ "name", "path" ], "additionalProperties": false }, "remote-dependency": { "properties": { "name": { "type": "string", "description": "Name of the dependency. This will be the version used in FOSSA's dashboard.", "minLength": 1 }, "url": { "type": "string", "description": "Url of the dependency's source code. This will be the downloaded by FOSSA for scanning with the analysis.", "minLength": 1 }, "version": { "type": "string", "description": "Version of the dependency." }, "metadata": { "type": "object", "properties": { "description": { "type": "string", "description": "Description of the dependency (if any)" }, "homepage": { "type": "string", "description": "Homepage of the dependency. This should be web address." } } } }, "required": [ "name", "url", "version" ], "additionalProperties": false } }, "type": "object", "properties": { "version": { "type": "integer" }, "referenced-dependencies": { "type": "array", "description": "Reference dependency to locate from registry and include it project's dependency and license scanning.", "items": { "$ref": "#/$defs/referenced-dependency" } }, "custom-dependencies": { "type": "array", "description": "Custom dependency and their license for project", "items": { "$ref": "#/$defs/custom-dependency" } }, "vendored-dependencies": { "type": "array", "description": "Local dependencies upload to server for license scanning", "items": { "$ref": "#/$defs/vendored-dependency" } }, "remote-dependencies": { "type": "array", "description": "Remote dependencies to license scanning", "items": { "$ref": "#/$defs/remote-dependency" } } }, "required": [] }
fossa-deps
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "data": { "additionalProperties": { "format": "byte", "type": [ "string", "null" ] }, "description": "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4", "type": [ "object", "null" ] }, "immutable": { "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is an alpha field enabled by ImmutableEphemeralVolumes feature gate.", "type": [ "boolean", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "Secret" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "stringData": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.", "type": [ "object", "null" ] }, "type": { "description": "Used to facilitate programmatic handling of secret data.", "type": [ "string", "null" ] } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Secret", "version": "v1" } ] }
kb_934_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/Requirements", "definitions": { "AutoUpdateConfig": { "properties": { "autoMerge": { "type": "boolean" }, "enabled": { "type": "boolean" }, "schedule": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "AzureClusterNodesConfig": { "properties": { "clientID": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "AzureConfig": { "properties": { "clusterNodes": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/AzureClusterNodesConfig" }, "dns": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/AzureDNSConfig" }, "registrySubscription": { "type": "string" }, "secretStorage": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/AzureSecretConfig" }, "storage": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/AzureStorageConfig" } }, "additionalProperties": false, "type": "object" }, "AzureDNSConfig": { "properties": { "resourceGroup": { "type": "string" }, "subscriptionId": { "type": "string" }, "tenantId": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "AzureSecretConfig": { "properties": { "keyVaultName": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "AzureStorageConfig": { "properties": { "storageAccountName": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "ClusterConfig": { "properties": { "azure": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/AzureConfig" }, "chartKind": { "type": "string" }, "chartRepository": { "type": "string" }, "chartSecret": { "type": "string" }, "clusterName": { "type": "string" }, "devEnvApprovers": { "items": { "type": "string" }, "type": "array" }, "dockerRegistryOrg": { "type": "string" }, "environmentGitOwner": { "type": "string" }, "environmentGitPublic": { "type": "boolean" }, "externalDNSSAName": { "type": "string" }, "gitKind": { "type": "string" }, "gitName": { "type": "string" }, "gitPublic": { "type": "boolean" }, "gitServer": { "type": "string" }, "gke": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/GKEConfig" }, "issueProvider": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/IssueTracker" }, "kanikoFlags": { "type": "string" }, "kanikoSAName": { "type": "string" }, "project": { "type": "string" }, "provider": { "type": "string" }, "region": { "type": "string" }, "registry": { "type": "string" }, "zone": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "EnvironmentConfig": { "properties": { "gitKind": { "type": "string" }, "gitServer": { "type": "string" }, "gitUrl": { "type": "string" }, "ingress": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/IngressConfig" }, "key": { "type": "string" }, "namespace": { "type": "string" }, "owner": { "type": "string" }, "promotionStrategy": { "type": "string" }, "remoteCluster": { "type": "boolean" }, "repository": { "type": "string" }, "reusePullRequest": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "GKEConfig": { "properties": { "projectNumber": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "IngressConfig": { "properties": { "annotations": { "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "apiVersion": { "type": "string" }, "cloud_dns_secret_name": { "type": "string" }, "domain": { "type": "string" }, "externalDNS": { "type": "boolean" }, "ignoreLoadBalancer": { "type": "boolean" }, "kind": { "type": "string" }, "namespaceSubDomain": { "type": "string" }, "tls": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/TLSConfig" } }, "additionalProperties": false, "type": "object" }, "IssueTracker": { "properties": { "jira": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/JiraTracker" } }, "additionalProperties": false, "type": "object" }, "JiraTracker": { "properties": { "project": { "type": "string" }, "serverUrl": { "type": "string" }, "userName": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "MavenRepositoryConfig": { "properties": { "releaseUrl": { "type": "string" }, "snapshotUrl": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "RepositoryConfig": { "properties": { "maven": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/MavenRepositoryConfig" } }, "additionalProperties": false, "type": "object" }, "Requirements": { "properties": { "apiVersion": { "type": "string" }, "kind": { "type": "string" }, "spec": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/RequirementsConfig" } }, "additionalProperties": false, "type": "object" }, "RequirementsConfig": { "properties": { "autoUpdate": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/AutoUpdateConfig" }, "cluster": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/ClusterConfig" }, "environments": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/EnvironmentConfig" }, "type": "array" }, "extraDomains": { "items": { "$ref": "#/definitions/IngressConfig" }, "type": "array" }, "ingress": { "$ref": "#/definitions/IngressConfig" }, "kuberhealthy": { "type": "boolean" }, "pipelineUser": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/UserNameEmailConfig" }, "repositories": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/RepositoryConfig" }, "repository": { "type": "string" }, "secretStorage": { "type": "string" }, "storage": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/StorageConfig" }, "type": "array" }, "terraform": { "type": "boolean" }, "terraformVault": { "type": "boolean" }, "vault": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/VaultConfig" }, "webhook": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "StorageConfig": { "properties": { "name": { "type": "string" }, "url": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "TLSConfig": { "properties": { "email": { "type": "string" }, "enabled": { "type": "boolean" }, "production": { "type": "boolean" }, "secretName": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "UserNameEmailConfig": { "properties": { "email": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "VaultAWSConfig": { "properties": { "autoCreate": { "type": "boolean" }, "dynamoDBRegion": { "type": "string" }, "dynamoDBTable": { "type": "string" }, "iamUserName": { "type": "string" }, "kmsKeyId": { "type": "string" }, "kmsRegion": { "type": "string" }, "s3Bucket": { "type": "string" }, "s3Prefix": { "type": "string" }, "s3Region": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "VaultAzureConfig": { "properties": { "containerName": { "type": "string" }, "keyName": { "type": "string" }, "storageAccountName": { "type": "string" }, "tenantId": { "type": "string" }, "vaultName": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "VaultConfig": { "properties": { "aws": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/VaultAWSConfig" }, "azure": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/VaultAzureConfig" }, "bucket": { "type": "string" }, "disableURLDiscovery": { "type": "boolean" }, "key": { "type": "string" }, "keyring": { "type": "string" }, "kubernetesAuthPath": { "type": "string" }, "name": { "type": "string" }, "namespace": { "type": "string" }, "recreateBucket": { "type": "boolean" }, "secretEngineMountPoint": { "type": "string" }, "serviceAccount": { "type": "string" }, "url": { "type": "string" } }, "additionalProperties": false, "type": "object" } } }
jx-requirements
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": [ "object", "null" ] }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": [ "string", "null" ] }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": [ "string", "null" ] }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": [ "string", "null" ] }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" }
kb_678_Normalized
{ "type": "object", "title": "Artist schema", "$schema": "http://json-schema.org/draft-04/schema", "properties": { "id": { "type": "string", "args": { "primary_key": true } }, "name": { "type": "string" }, "description": { "type": "string" }, "tracks": { "type": "object", "args": { "document": "Track", "ondelete": "NULLIFY", "backref_name": "artist", "backref_ondelete": "NULLIFY" } }, "events": { "type": "object", "args": { "document": "Event", "ondelete": "NULLIFY", "backref_name": "artist", "backref_ondelete": "NULLIFY" } } }, "required": [ "id", "name" ] }
o14025
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "openrtb-v2_3-schema-bid_request", "description": "json schema for an openrtb v2.3 bid request", "type": "object", "required": [ "id", "imp" ], "not": { "allOf": [ { "required": [ "site" ] }, { "required": [ "app" ] } ] }, "additionalProperties": false, "properties": { "id": { "type": "string" }, "imp": { "type": "array", "items": { "$ref": "#/definitions/imp" } }, "site": { "$ref": "#/definitions/site" }, "app": { "$ref": "#/definitions/app" }, "device": { "$ref": "#/definitions/device" }, "user": { "$ref": "#/definitions/user" }, "test": { "$ref": "#/definitions/boolean_int" }, "at": { "type": "integer" }, "tmax": { "$ref": "#/definitions/positive_int" }, "wseat": { "type": "array", "items": { "type": "string" } }, "allimps": { "$ref": "#/definitions/boolean_int" }, "cur": { "type": "array", "items": { "$ref": "#/definitions/currency" } }, "bcat": { "type": "array", "items": { "$ref": "#/definitions/factual_content_category" } }, "badv": { "type": "array", "items": { "type": "string" } }, "regs": { "$ref": "#/definitions/regs" }, "ext": { "type": "object" } }, "definitions": { "imp": { "type": "object", "required": [ "id" ], "anyOf": [ { "required": [ "banner" ] }, { "required": [ "video" ] }, { "required": [ "native" ] } ], "additionalProperties": false, "properties": { "id": { "type": "string" }, "banner": { "$ref": "#/definitions/banner" }, "video": { "$ref": "#/definitions/video" }, "native": { "$ref": "#/definitions/native" }, "displaymanager": { "type": "string" }, "displaymanagerver": { "type": "string" }, "instl": { "$ref": "#/definitions/boolean_int" }, "tagid": { "type": "string" }, "bidfloor": { "type": "number", "minimum": 0 }, "bidfloorcur": { "$ref": "#/definitions/currency" }, "secure": { "$ref": "#/definitions/boolean_int" }, "iframebuster": { "type": "array", "items": { "type": "string" } }, "pmp": { "$ref": "#/definitions/pmp" }, "ext": { "type": "object" } } }, "banner": { "type": "object", "additionalProperties": false, "properties": { "w": { "$ref": "#/definitions/positive_int" }, "h": { "$ref": "#/definitions/positive_int" }, "wmax": { "$ref": "#/definitions/positive_int" }, "hmax": { "$ref": "#/definitions/positive_int" }, "wmin": { "$ref": "#/definitions/positive_int" }, "hmin": { "$ref": "#/definitions/positive_int" }, "id": { "type": "string" }, "btype": { "type": "array", "items": { "$ref": "#/definitions/banner_ad_type" } }, "battr": { "type": "array", "items": { "$ref": "#/definitions/creative_attribute" } }, "pos": { "$ref": "#/definitions/ad_position" }, "mimes": { "type": "array", "items": { "type": "string" } }, "topframe": { "$ref": "#/definitions/boolean_int" }, "expdir": { "type": "array", "items": { "$ref": "#/definitions/expandable_direction" } }, "api": { "type": "array", "items": { "$ref": "#/definitions/api_framework" } }, "ext": { "type": "object" } } }, "video": { "type": "object", "required": [ "mimes" ], "additionalProperties": false, "properties": { "mimes": { "type": "array", "items": { "type": "string" } }, "minduration": { "$ref": "#/definitions/positive_int" }, "maxduration": { "$ref": "#/definitions/positive_int" }, "protocol": { "$ref": "#/definitions/video_bid_response_protocol" }, "protocols": { "type": "array", "items": { "$ref": "#/definitions/video_bid_response_protocol" } }, "w": { "$ref": "#/definitions/positive_int" }, "h": { "$ref": "#/definitions/positive_int" }, "startdelay": { "$ref": "#/definitions/video_start_delay" }, "linearity": { "$ref": "#/definitions/video_linearity" }, "sequence": { "type": "integer" }, "battr": { "type": "array", "items": { "$ref": "#/definitions/creative_attribute" } }, "maxextended": { "type": "integer", "minimum": -1 }, "minbitrate": { "$ref": "#/definitions/positive_int" }, "maxbitrate": { "$ref": "#/definitions/positive_int" }, "boxingallowed": { "$ref": "#/definitions/boolean_int" }, "playbackmethod": { "type": "array", "items": { "$ref": "#/definitions/video_playback_method" } }, "delivery": { "type": "array", "items": { "$ref": "#/definitions/content_delivery_method" } }, "pos": { "$ref": "#/definitions/ad_position" }, "companionad": { "type": "array", "items": { "$ref": "#/definitions/banner" } }, "api": { "type": "array", "items": { "$ref": "#/definitions/api_framework" } }, "companiontype": { "type": "array", "items": { "$ref": "#/definitions/vast_companion_type" } }, "ext": { "type": "object" } } }, "native": { "type": "object", "required": [ "request" ], "additionalProperties": false, "properties": { "request": { "type": "string" }, "ver": { "type": "string" }, "api": { "type": "array", "items": { "$ref": "#/definitions/api_framework" } }, "battr": { "type": "array", "items": { "$ref": "#/definitions/creative_attribute" } }, "ext": { "type": "object" } } }, "site": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "domain": { "type": "string" }, "cat": { "type": "array", "items": { "$ref": "#/definitions/factual_content_category" } }, "sectioncat": { "type": "array", "items": { "$ref": "#/definitions/factual_content_category" } }, "pagecat": { "type": "array", "items": { "$ref": "#/definitions/factual_content_category" } }, "page": { "type": "string" }, "ref": { "type": "string" }, "search": { "type": "string" }, "mobile": { "$ref": "#/definitions/boolean_int" }, "privacypolicy": { "$ref": "#/definitions/boolean_int" }, "publisher": { "$ref": "#/definitions/publisher" }, "content": { "$ref": "#/definitions/content" }, "keywords": { "type": "string" }, "ext": { "type": "object" } } }, "app": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "bundle": { "type": "string" }, "domain": { "type": "string" }, "storeurl": { "type": "string" }, "cat": { "type": "array", "items": { "$ref": "#/definitions/content_category" } }, "sectioncat": { "type": "array", "items": { "$ref": "#/definitions/content_category" } }, "pagecat": { "type": "array", "items": { "$ref": "#/definitions/content_category" } }, "ver": { "type": "string" }, "privacypolicy": { "$ref": "#/definitions/boolean_int" }, "paid": { "$ref": "#/definitions/boolean_int" }, "publisher": { "$ref": "#/definitions/publisher" }, "content": { "$ref": "#/definitions/content" }, "keywords": { "type": "string" }, "ext": { "type": "object" } } }, "publisher": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "cat": { "type": "array", "items": { "$ref": "#/definitions/factual_content_category" } }, "domain": { "type": "string" }, "ext": { "type": "object" } } }, "content": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "episode": { "type": "integer" }, "title": { "type": "string" }, "series": { "type": "string" }, "season": { "type": "string" }, "producer": { "$ref": "#/definitions/producer" }, "url": { "type": "string" }, "cat": { "type": "array", "items": { "$ref": "#/definitions/content_category" } }, "videoquality": { "$ref": "#/definitions/video_quality" }, "context": { "$ref": "#/definitions/content_context" }, "contentrating": { "type": "string" }, "userrating": { "type": "string" }, "qagmediarating": { "$ref": "#/definitions/qag_media_rating" }, "keywords": { "type": "string" }, "livestream": { "$ref": "#/definitions/boolean_int" }, "sourcerelationship": { "$ref": "#/definitions/boolean_int" }, "len": { "$ref": "#/definitions/positive_int" }, "language": { "$ref": "#/definitions/language" }, "embeddable": { "$ref": "#/definitions/boolean_int" }, "ext": { "type": "object" } } }, "producer": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "cat": { "type": "array", "items": { "$ref": "#/definitions/content_category" } }, "domain": { "type": "string" }, "ext": { "type": "object" } } }, "device": { "type": "object", "additionalProperties": false, "properties": { "ua": { "type": "string" }, "geo": { "$ref": "#/definitions/geo" }, "dnt": { "$ref": "#/definitions/boolean_int" }, "lmt": { "$ref": "#/definitions/boolean_int" }, "ip": { "type": "string", "format": "ipv4" }, "ipv6": { "type": "string", "format": "ipv6" }, "devicetype": { "$ref": "#/definitions/device_type" }, "make": { "type": "string" }, "model": { "type": "string" }, "os": { "type": "string" }, "osv": { "type": "string" }, "hwv": { "type": "string" }, "h": { "$ref": "#/definitions/positive_int" }, "w": { "$ref": "#/definitions/positive_int" }, "ppi": { "$ref": "#/definitions/positive_int" }, "pxratio": { "type": "number" }, "js": { "$ref": "#/definitions/boolean_int" }, "flashver": { "type": "string" }, "language": { "$ref": "#/definitions/language" }, "carrier": { "type": "string" }, "connectiontype": { "$ref": "#/definitions/connection_type" }, "ifa": { "type": "string" }, "didsha1": { "type": "string" }, "didmd5": { "type": "string" }, "dpidsha1": { "type": "string" }, "dpidmd5": { "type": "string" }, "macsha1": { "type": "string" }, "macmd5": { "type": "string" }, "ext": { "type": "object" } } }, "geo": { "type": "object", "additionalProperties": false, "properties": { "lat": { "type": "number", "minimum": -90, "maximum": 90 }, "lon": { "type": "number", "minimum": -180, "maximum": 180 }, "type": { "$ref": "#/definitions/location_type" }, "country": { "type": "string", "minLength": 3, "maxLength": 3 }, "region": { "type": "string" }, "regionfips104": { "type": "string" }, "metro": { "type": "string" }, "city": { "type": "string" }, "zip": { "type": "string" }, "utcoffset": { "type": "integer" }, "ext": { "type": "object" } } }, "user": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "buyeruid": { "type": "string" }, "yob": { "type": "integer", "minimum": 1000, "maximum": 9999 }, "gender": { "type": "string", "enum": [ "M", "F", "O" ] }, "keywords": { "type": "string" }, "customdata": { "type": "string" }, "geo": { "$ref": "#/definitions/geo" }, "data": { "type": "array", "items": { "$ref": "#/definitions/data" } }, "ext": { "type": "object" } } }, "data": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "segment": { "type": "array", "items": { "$ref": "#/definitions/segment" } }, "ext": { "type": "object" } } }, "segment": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "value": { "type": "string" }, "ext": { "type": "object" } } }, "regs": { "type": "object", "additionalProperties": false, "properties": { "coppa": { "$ref": "#/definitions/boolean_int" }, "ext": { "type": "object" } } }, "pmp": { "type": "object", "additionalProperties": false, "properties": { "private_auction": { "$ref": "#/definitions/boolean_int" }, "deals": { "type": "array", "items": { "$ref": "#/definitions/deal" } }, "ext": { "type": "object" } } }, "deal": { "type": "object", "required": [ "id" ], "additionalProperties": false, "properties": { "id": { "type": "string" }, "bidfloor": { "type": "number", "minimum": 0 }, "bidfloorcur": { "$ref": "#/definitions/currency" }, "at": { "type": "integer" }, "wseat": { "type": "array", "items": { "type": "string" } }, "wadomain": { "type": "array", "items": { "type": "string" } }, "ext": { "type": "object" } } }, "content_category": { "type": "string", "enum": [ "IAB1", "IAB1-1", "IAB1-2", "IAB1-3", "IAB1-4", "IAB1-5", "IAB1-6", "IAB1-7", "IAB2", "IAB2-1", "IAB2-2", "IAB2-3", "IAB2-4", "IAB2-5", "IAB2-6", "IAB2-7", "IAB2-8", "IAB2-9", "IAB2-10", "IAB2-11", "IAB2-12", "IAB2-13", "IAB2-14", "IAB2-15", "IAB2-16", "IAB2-17", "IAB2-18", "IAB2-19", "IAB2-20", "IAB2-21", "IAB2-22", "IAB2-23", "IAB3", "IAB3-1", "IAB3-2", "IAB3-3", "IAB3-4", "IAB3-5", "IAB3-6", "IAB3-7", "IAB3-8", "IAB3-9", "IAB3-10", "IAB3-11", "IAB3-12", "IAB4", "IAB4-1", "IAB4-2", "IAB4-3", "IAB4-4", "IAB4-5", "IAB4-6", "IAB4-7", "IAB4-8", "IAB4-9", "IAB4-10", "IAB4-11", "IAB5", "IAB5-1", "IAB5-2", "IAB5-3", "IAB5-4", "IAB5-5", "IAB5-6", "IAB5-7", "IAB5-8", "IAB5-9", "IAB5-10", "IAB5-11", "IAB5-12", "IAB5-13", "IAB5-14", "IAB5-15", "IAB6", "IAB6-1", "IAB6-2", "IAB6-3", "IAB6-4", "IAB6-5", "IAB6-6", "IAB6-7", "IAB6-8", "IAB6-9", "IAB7", "IAB7-1", "IAB7-2", "IAB7-3", "IAB7-4", "IAB7-5", "IAB7-6", "IAB7-7", "IAB7-8", "IAB7-9", "IAB7-10", "IAB7-11", "IAB7-12", "IAB7-13", "IAB7-14", "IAB7-15", "IAB7-16", "IAB7-17", "IAB7-18", "IAB7-19", "IAB7-20", "IAB7-21", "IAB7-22", "IAB7-23", "IAB7-24", "IAB7-25", "IAB7-26", "IAB7-27", "IAB7-28", "IAB7-29", "IAB7-30", "IAB7-31", "IAB7-32", "IAB7-33", "IAB7-34", "IAB7-35", "IAB7-36", "IAB7-37", "IAB7-38", "IAB7-39", "IAB7-40", "IAB7-41", "IAB7-42", "IAB7-43", "IAB7-44", "IAB7-45", "IAB8", "IAB8-1", "IAB8-2", "IAB8-3", "IAB8-4", "IAB8-5", "IAB8-6", "IAB8-7", "IAB8-8", "IAB8-9", "IAB8-10", "IAB8-11", "IAB8-12", "IAB8-13", "IAB8-14", "IAB8-15", "IAB8-16", "IAB8-17", "IAB8-18", "IAB9", "IAB9-1", "IAB9-2", "IAB9-3", "IAB9-4", "IAB9-5", "IAB9-6", "IAB9-7", "IAB9-8", "IAB9-9", "IAB9-10", "IAB9-11", "IAB9-12", "IAB9-13", "IAB9-14", "IAB9-15", "IAB9-16", "IAB9-17", "IAB9-18", "IAB9-19", "IAB9-20", "IAB9-21", "IAB9-22", "IAB9-23", "IAB9-24", "IAB9-25", "IAB9-26", "IAB9-27", "IAB9-28", "IAB9-29", "IAB9-30", "IAB9-31", "IAB10", "IAB10-1", "IAB10-2", "IAB10-3", "IAB10-4", "IAB10-5", "IAB10-6", "IAB10-7", "IAB10-8", "IAB10-9", "IAB11", "IAB11-1", "IAB11-2", "IAB11-3", "IAB11-4", "IAB11-5", "IAB12", "IAB12-1", "IAB12-2", "IAB12-3", "IAB13", "IAB13-1", "IAB13-2", "IAB13-3", "IAB13-4", "IAB13-5", "IAB13-6", "IAB13-7", "IAB13-8", "IAB13-9", "IAB13-10", "IAB13-11", "IAB13-12", "IAB14", "IAB14-1", "IAB14-2", "IAB14-3", "IAB14-4", "IAB14-5", "IAB14-6", "IAB14-7", "IAB14-8", "IAB15", "IAB15-1", "IAB15-2", "IAB15-3", "IAB15-4", "IAB15-5", "IAB15-6", "IAB15-7", "IAB15-8", "IAB15-9", "IAB15-10", "IAB16", "IAB16-1", "IAB16-2", "IAB16-3", "IAB16-4", "IAB16-5", "IAB16-6", "IAB16-7", "IAB17", "IAB17-1", "IAB17-2", "IAB17-3", "IAB17-4", "IAB17-5", "IAB17-6", "IAB17-7", "IAB17-8", "IAB17-9", "IAB17-10", "IAB17-11", "IAB17-12", "IAB17-13", "IAB17-14", "IAB17-15", "IAB17-16", "IAB17-17", "IAB17-18", "IAB17-19", "IAB17-20", "IAB17-21", "IAB17-22", "IAB17-23", "IAB17-24", "IAB17-25", "IAB17-26", "IAB17-27", "IAB17-28", "IAB17-29", "IAB17-30", "IAB17-31", "IAB17-32", "IAB17-33", "IAB17-34", "IAB17-35", "IAB17-36", "IAB17-37", "IAB17-38", "IAB17-39", "IAB17-40", "IAB17-41", "IAB17-42", "IAB17-43", "IAB17-44", "IAB18", "IAB18-1", "IAB18-2", "IAB18-3", "IAB18-4", "IAB18-5", "IAB18-6", "IAB19", "IAB19-1", "IAB19-2", "IAB19-3", "IAB19-4", "IAB19-5", "IAB19-6", "IAB19-7", "IAB19-8", "IAB19-9", "IAB19-10", "IAB19-11", "IAB19-12", "IAB19-13", "IAB19-14", "IAB19-15", "IAB19-16", "IAB19-17", "IAB19-18", "IAB19-19", "IAB19-20", "IAB19-21", "IAB19-22", "IAB19-23", "IAB19-24", "IAB19-25", "IAB19-26", "IAB19-27", "IAB19-28", "IAB19-29", "IAB19-30", "IAB19-31", "IAB19-32", "IAB19-33", "IAB19-34", "IAB19-35", "IAB19-36", "IAB20", "IAB20-1", "IAB20-2", "IAB20-3", "IAB20-4", "IAB20-5", "IAB20-6", "IAB20-7", "IAB20-8", "IAB20-9", "IAB20-10", "IAB20-11", "IAB20-12", "IAB20-13", "IAB20-14", "IAB20-15", "IAB20-16", "IAB20-17", "IAB20-18", "IAB20-19", "IAB20-20", "IAB20-21", "IAB20-22", "IAB20-23", "IAB20-24", "IAB20-25", "IAB20-26", "IAB20-27", "IAB21", "IAB21-1", "IAB21-2", "IAB21-3", "IAB22", "IAB22-1", "IAB22-2", "IAB22-3", "IAB22-4", "IAB23", "IAB23-1", "IAB23-2", "IAB23-3", "IAB23-4", "IAB23-5", "IAB23-6", "IAB23-7", "IAB23-8", "IAB23-9", "IAB23-10", "IAB24", "IAB25", "IAB25-1", "IAB25-2", "IAB25-3", "IAB25-4", "IAB25-5", "IAB25-6", "IAB25-7", "IAB26", "IAB26-1", "IAB26-2", "IAB26-3", "IAB26-4" ] }, "factual_content_category": { "type": "string", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "100", "101", "102", "103", "104", "105", "106", "107", "108", "109", "110", "111", "112", "113", "114", "115", "116", "117", "118", "119", "120", "121", "122", "123", "124", "125", "126", "127", "128", "129", "130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "140", "141", "142", "143", "144", "145", "146", "147", "148", "149", "150", "151", "152", "153", "154", "155", "156", "157", "158", "159", "160", "161", "162", "163", "164", "165", "166", "167", "168", "169", "170", "171", "172", "173", "174", "175", "176", "177", "178", "179", "180", "181", "182", "183", "184", "185", "186", "187", "188", "189", "190", "191", "192", "193", "194", "195", "196", "197", "198", "199", "200", "201", "202", "203", "204", "205", "206", "207", "208", "209", "210", "211", "212", "213", "214", "215", "216", "217", "218", "219", "220", "221", "222", "223", "224", "225", "226", "227", "228", "229", "230", "231", "232", "233", "234", "235", "236", "237", "238", "239", "240", "241", "242", "243", "244", "245", "246", "247", "248", "249", "250", "251", "252", "253", "254", "255", "256", "257", "258", "259", "260", "261", "262", "263", "264", "265", "266", "267", "268", "269", "270", "271", "272", "273", "274", "275", "276", "277", "278", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "300", "301", "302", "303", "304", "305", "306", "307", "308", "309", "310", "311", "312", "313", "314", "315", "316", "317", "318", "319", "320", "321", "322", "323", "324", "325", "326", "327", "328", "329", "330", "331", "332", "333", "334", "335", "336", "337", "338", "339", "340", "341", "342", "343", "344", "345", "346", "347", "348", "349", "350", "351", "352", "353", "354", "355", "356", "357", "358", "359", "360", "361", "362", "363", "364", "365", "366", "367", "368", "369", "370", "371", "372", "373", "374", "375", "376", "377", "378", "379", "380", "381", "382", "383", "384", "385", "386", "387", "388", "389", "390", "391", "392", "393", "394", "395", "396", "397", "398", "399", "400", "401", "402", "403", "404", "405", "406", "407", "408", "409", "410", "411", "412", "413", "414", "415", "416", "417", "418", "419", "420", "421", "422", "423", "424", "425", "426", "427", "428", "429", "430", "431", "432", "433", "434", "435", "436", "437", "438", "439", "440", "441", "442", "443", "444", "445", "446", "447", "448", "449", "450", "451", "452", "453", "454", "455", "456", "457", "458", "459", "460", "461", "462", "463", "464", "465", "466" ] }, "banner_ad_type": { "type": "integer", "minimum": 1, "maximum": 4 }, "creative_attribute": { "type": "integer", "minimum": 1, "maximum": 16 }, "ad_position": { "type": "integer", "minimum": 0, "maximum": 7 }, "expandable_direction": { "type": "integer", "minimum": 1, "maximum": 5 }, "api_framework": { "type": "integer", "minimum": 1, "maximum": 5 }, "video_linearity": { "type": "integer", "minimum": 1, "maximum": 2 }, "video_bid_response_protocol": { "type": "integer", "minimum": 1, "maximum": 6 }, "video_playback_method": { "type": "integer", "minimum": 1, "maximum": 4 }, "video_start_delay": { "type": "integer", "minimum": -2 }, "video_quality": { "type": "integer", "minimum": 0, "maximum": 3 }, "vast_companion_type": { "type": "integer", "minimum": 1, "maximum": 3 }, "content_delivery_method": { "type": "integer", "minimum": 1, "maximum": 2 }, "content_context": { "type": "integer", "minimum": 1, "maximum": 7 }, "qag_media_rating": { "type": "integer", "minimum": 1, "maximum": 3 }, "location_type": { "type": "integer", "minimum": 1, "maximum": 3 }, "device_type": { "type": "integer", "minimum": 1, "maximum": 7 }, "connection_type": { "type": "integer", "minimum": 0, "maximum": 6 }, "boolean_int": { "type": "integer", "minimum": 0, "maximum": 1 }, "positive_int": { "type": "integer", "minimum": 0 }, "currency": { "type": "string", "minLength": 3, "maxLength": 3, "pattern": "[a-zA-Z]{3}" }, "language": { "type": "string", "minLength": 2, "maxLength": 2 } } }
o18644
{ "additionalProperties": false, "properties": { "_comments": { "description": "Optional comments about the clinical concept", "type": "string" }, "codeString": { "description": "The code (ex: LOINC, RxNorm) for this clinical concept.", "type": "string" }, "displayBounds": { "properties": { "lower": { "description": "Lower display bound for this concept. If unset, will be calculated based on data.", "type": "number" }, "upper": { "description": "Upper display bound for this concept. If unset, will be calculated based on data.", "type": "number" } }, "required": [ "lower", "upper" ], "type": "object" }, "displayName": { "description": "The display name for this clinical concept, as returned by the FHIR server.", "type": "string" }, "forceDisplayBounds": { "description": "Whether the display bounds should be forced even if the data is outside of them. No effect if displayBounds are unset. False if this is unset.", "type": "boolean" }, "groupName": { "description": "If set, this clinical concept will appear grouped with the same groupName. If unset, it will appear independently.", "type": "string" }, "innerComponentOnly": { "description": "If set, the ResourceCode for this component will be created, but it will not be displayed unless it is an inner component of another Resource.", "type": "boolean" }, "showByDefault": { "description": "Whether this clinical concept should be displayed by default. False if unset.", "type": "boolean" } }, "required": [ "codeString", "displayName" ], "title": "Clinical Concept", "type": "object" }
o83938
{ "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", "properties": { "apiGroups": { "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", "type": [ "string", "null" ] } }, "type": "object" }
kb_888_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "integer", "minimum": 1 }, "parentId": { "oneOf": [ { "type": "null" }, { "type": "integer", "minimum": 1 } ] }, "name": { "type": "string", "faker": { "fake": "{{company.bsBuzz}} {{company.bsAdjective}} {{company.bsNoun}}" } }, "createdAt": { "type": "string", "faker": "date.past" }, "updatedAt": { "type": "string", "faker": "date.past" } }, "required": [ "id", "parentId", "name", "createdAt", "updatedAt" ] }
o88584
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Fibaro Home Center Smoke Sensor JSON Schema", "name": "smoke_sensor", "type": "object", "properties": { "id": { "description": "Fibaro Home Center device ID", "type": "integer", "minimum": 2 }, "name": { "description": "Device name", "type": "string", "maxLength": 20 }, "roomID": { "description": "Room ID defined in Home Center GUI", "type": "integer", "minimum": 0 }, "type": { "description": "Zwave device type", "enum": [ "smoke_sensor" ] }, "remoteGatewayId": { "description": "Remote Gateway ID", "type": "integer", "minimum": 0 }, "remoteDeviceID": { "description": "Remote Device ID", "type": "integer", "minimum": 0 }, "properties": { "type": "object", "properties": { "UIMessageSendTime": { "type": "string" }, "alarmDelay": { "type": "string" }, "alarmExclude": { "type": "string" }, "alarmTimeTimestamp": { "type": "string" }, "armConditions": { "type": "string" }, "armConfig": { "type": "string" }, "armDelay": { "type": "string" }, "armError": { "type": "string" }, "armTimeTimestamp": { "type": "string" }, "armed": { "enum": [ "0", "1" ] }, "batteryLevel": { "type": "string" }, "batteryLowNotification": { "enum": [ "0", "1" ] }, "classConfigure": { "type": "string" }, "classGeneric": { "type": "string" }, "classSupport": { "type": "string" }, "classVersion": { "type": "string" }, "dead": { "type": "string" }, "deviceControlType": { "type": "string" }, "deviceIcon": { "type": "string" }, "disabled": { "type": "string" }, "emailNotificationID": { "type": "string" }, "emailNotificationType": { "type": "string" }, "endPoint": { "type": "string" }, "fibaroAlarm": { "enum": [ "0", "1" ] }, "isBatteryOperated": { "enum": [ "0", "1" ] }, "lastBreached": { "type": "string" }, "log": { "type": "string" }, "logTemp": { "type": "string" }, "needConfigure": { "type": "string" }, "nodeID": { "type": "string" }, "parametersTemplate": { "type": "string" }, "parentID": { "type": "string" }, "pollingRetryError": { "type": "string" }, "pollingTime": { "type": "string" }, "pollingTimeNext": { "type": "string" }, "pollingTimeSec": { "type": "string" }, "productInfo": { "type": "string" }, "pushNotificationID": { "type": "string" }, "pushNotificationType": { "type": "string" }, "requestNodeNeighborState": { "type": "string" }, "requestNodeNeighborStateTimeStemp": { "type": "string" }, "saveLogs": { "enum": [ "0", "1" ] }, "sensorSupport": { "type": "string" }, "showChildren": { "enum": [ "0", "1" ] }, "smsNotificationID": { "type": "string" }, "smsNotificationType": { "type": "string" }, "sortOrder": { "type": "string" }, "tamperAlarm": { "type": "string" }, "tamperNotificationID": { "type": "string" }, "tamperNotificationType": { "type": "string" }, "tamperState": { "type": "string" }, "tamperTimestamp": { "type": "string" }, "unit": { "type": "string" }, "unitSensor": { "type": "string" }, "useTemplate": { "enum": [ "0", "1" ] }, "userDescription": { "type": "string" }, "value": { "type": "string" }, "valueSensor": { "type": "string" }, "wakeUpTime": { "type": "string" }, "zwaveCompany": { "type": "string" }, "zwaveInfo": { "type": "string" }, "zwaveVersion": { "type": "string" }, "parameters": { "type": "array", "minItems": 0, "items": { "type": "object", "properties": { "id": { "type": "number" }, "size": { "type": "number" }, "value": { "type": "number" }, "lastSetValue": { "type": "number" } } }, "_uniqueItems": false }, "associationView": { "type": "array", "minItems": 0, "maxItems": 3, "items": { "$ref": "#/definitions/associationItem" } }, "associationSet": { "type": "array", "minItems": 0, "maxItems": 3, "items": { "$ref": "#/definitions/associationItem" } } }, "required": [ "UIMessageSendTime", "alarmExclude", "alarmTimeTimestamp", "armConditions", "armConfig", "armError", "armTimeTimestamp", "armed", "classConfigure", "classGeneric", "classSupport", "classVersion", "dead", "deviceControlType", "deviceIcon", "disabled", "emailNotificationID", "emailNotificationType", "endPoint", "fibaroAlarm", "isBatteryOperated", "lastBreached", "log", "logTemp", "needConfigure", "parametersTemplate", "parentID", "pollingRetryError", "pollingTime", "pollingTimeNext", "pollingTimeSec", "productInfo", "pushNotificationID", "pushNotificationType", "requestNodeNeighborState", "requestNodeNeighborStateTimeStemp", "saveLogs", "showChildren", "smsNotificationID", "smsNotificationType", "sortOrder", "tamperAlarm", "tamperNotificationID", "tamperNotificationType", "tamperState", "tamperTimestamp", "unit", "useTemplate", "userDescription", "value", "zwaveCompany", "zwaveInfo", "zwaveVersion" ], "additionalProperties": false }, "actions": { "type": "object", "properties": { "armed": { "type": "integer", "minimum": 1, "maximum": 1 }, "firmwareUpdate": { "type": "integer", "minimum": 1, "maximum": 1 }, "pollingTimeSec": { "type": "integer", "minimum": 1, "maximum": 1 }, "requestNodeNeighborUpdate": { "type": "integer", "minimum": 0, "maximum": 0 }, "wakeUpTime": { "type": "integer", "minimum": 1, "maximum": 1 } }, "required": [ "armed", "pollingTimeSec", "requestNodeNeighborUpdate" ], "additionalProperties": false }, "created": { "type": "number" }, "modified": { "type": "number" }, "sortOrder": { "type": "number" } }, "definitions": { "associationItem": { "properties": { "groupID": { "type": "number" }, "devices": { "type": "array", "minItems": 1, "maxItems": 254, "items": { "type": "number", "minimum": 1, "maximum": 254 } } } } }, "additionalProperties": false }
o56016
{ "properties": { "configurations": { "description": "Kong configuration properties.", "properties": { "cassandra": { "description": "Cassandra connection properties.", "properties": { "contact-points": { "default": "node.cassandra.l4lb.thisdcos.directory", "description": "A comma-separated list of contact points.", "type": "string" }, "keyspace": { "default": "kong", "description": "Cassandra keyspace.", "type": "string" }, "port": { "default": 9042, "description": "The port on which cassandra nodes are listening on.", "type": "integer" } }, "type": "object" }, "custom-envs": { "description": "A space-separated list Kong configurations. Please avoid updating properties which already being set through other properties above.", "pattern": "^(KONG_\\w+=\\S+)*(\\sKONG_\\w+=\\S+)*$", "type": "string" }, "database": { "description": "Database properties.", "properties": { "migrations": { "default": true, "description": "Enable or disable Kong migrations. Recommended if Kong being run with clean backing datastore.", "title": "Run Kong migrations", "type": "boolean" }, "use-cassandra": { "default": false, "description": "If true, Cassandra is used as Kong backing datastore.", "title": "Use Cassandra as Kong backing datastore?", "type": "boolean" }, "use-postgres": { "default": true, "description": "If true, Postgres is used as Kong backing datastore.", "title": "Use Postgres as Kong backing datastore?", "type": "boolean" } }, "type": "object" }, "log-level": { "default": "notice", "description": "Log level of the Kong server.", "type": "string" }, "postgres": { "description": "Postgres connection properties.", "properties": { "database": { "default": "kong", "description": "Postgres database name.", "type": "string" }, "host": { "default": "postgresql.marathon.l4lb.thisdcos.directory", "description": "Postgres host address.", "type": "string" }, "password": { "default": "kong", "description": "Postgres password.", "type": "string" }, "port": { "default": 5432, "description": "Postgres port.", "type": "integer" }, "user": { "default": "kong", "description": "Postgres user.", "type": "string" } }, "type": "object" } }, "type": "object" }, "networking": { "description": "Marathon-LB service configuration properties.", "properties": { "admin": { "description": "Kong's Admin port configuration.", "properties": { "external-access": { "default": false, "description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.", "title": "Allow external access", "type": "boolean" }, "https-redirect": { "default": false, "description": "Whether Marathon-lb should redirect HTTP traffic to HTTPS. This requires 'virtual-host' to be set.", "type": "boolean" }, "service-port": { "default": 10202, "description": "Port number to be used for external traffic to cluster through Marathon-LB load balancer.", "type": "integer" }, "vip-port": { "default": 8001, "description": "Port number to be used for communication internally to the cluster. Default is 8001.", "type": "number" }, "vip-port-ssl": { "default": 8444, "description": "Port number to be used for secure communication internally to the cluster. Default is 8444.", "type": "number" }, "virtual-host": { "description": "The virtual host address to integrate Kong proxy port with Marathon-lb.", "type": "string" } }, "type": "object" }, "proxy": { "description": "Kong's Proxy port configuration.", "properties": { "external-access": { "default": true, "description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.", "title": "Allow external access", "type": "boolean" }, "https-redirect": { "default": false, "description": "Whether Marathon-lb should redirect HTTP traffic to HTTPS. This requires 'virtual-host' to be set.", "type": "boolean" }, "service-port": { "default": 10201, "description": "Port number to be used for external traffic to cluster through Marathon-LB load balancer.", "type": "integer" }, "vip-port": { "default": 8000, "description": "Port number to be used for communication internally to the cluster. Default is 8000.", "type": "number" }, "vip-port-ssl": { "default": 8443, "description": "Port number to be used for secure communication internally to the cluster. Default is 8443.", "type": "number" }, "virtual-host": { "description": "The virtual host address to integrate Kong proxy port with Marathon-lb.", "type": "string" } }, "type": "object" } }, "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "cpus": { "default": 1, "description": "CPU shares to allocate to each instance.", "minimum": 1, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "mem": { "default": 512, "description": "Memory (MB) to allocate to each task.", "minimum": 512, "type": "number" }, "name": { "default": "kong", "description": "The name of this Kong instance.", "type": "string" }, "role": { "default": "*", "description": "Deploy Kong only on nodes with this role.", "type": "string" } }, "required": [ "name", "instances", "cpus", "mem", "role" ], "type": "object" } }, "type": "object" }
o60309
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "fieldOptions": { "title": "Field options", "description": "Field-level configuration options", "type": "object", "properties": { "label": { "title": "Field label", "description": "Field labels are auto-generated from field names. This option allows to control the label", "type": "string", "minLength": 1 }, "default": { "title": "Default value", "description": "Default value for the field", "anyOf": [ { "type": "boolean" }, { "type": "integer" }, { "type": "number" }, { "type": "string" } ] }, "renderAs": { "title": "Render value", "description": "Non-default rendering of the field value", "type": "string" }, "orderBy": { "title": "Order by field", "description": "Field name to use for ordering", "type": "string" }, "orderDir": { "title": "Order by direction", "description": "Direction to use for ordering", "type": "string", "enum": [ "desc", "asc" ] }, "format": { "title": "Date/time format", "description": "Date time format for time stamp fields", "type": "string" }, "precision": { "title": "Numeric precision", "description": "How many digits to render after the floating point", "type": "integer" }, "linkTo": { "title": "Link value to URL", "description": "URL to use for linking rendered values (use %s as placeholder)", "type": "string" }, "linkTarget": { "title": "Link target for value URL", "description": "Target for link value URL (_blank, _self, _parent, _top, framename)", "type": "string" }, "limit": { "title": "Limit of field entity outputs", "description": "Used for aggregate fields, like file uploads", "type": "integer" }, "translatable": { "title": "Translatable button", "description": "Allow Render translatable button", "type": "boolean" }, "auto-increment": { "title": "Auto-increment flag", "description": "Auto-increment flag", "type": "boolean" }, "min": { "title": "Minimal value", "description": "Define a minimal value for field", "type": "integer" }, "placeholder": { "title": "Placeholder attribute used in HTML tags", "description": "Define placeholder attr for input/textarea tags", "type": "string" }, "timeIncrement": { "title": "Datetime Picker Minutes increment", "description": "Define time increment for minutes dropdown", "type": "integer" }, "showMonthYearSelect": { "title": "Show year month dropdowns", "description": "Show year and month select boxes above calendars to jump to a specific month and year", "type": "boolean" }, "timePicker": { "title": "Adding time handlers into popup", "description": "Adds select boxes to choose times in addition to dates", "type": "boolean" }, "max": { "title": "Maximal value", "description": "Define a maximal value for field", "type": "integer" }, "step": { "title": "Step value", "description": "Define a step value to increase/decrease numeric field", "type": "integer" }, "fileUploadAdapter": { "title": "Upload Adapter", "description": "Define Upload Adapter for FileStorage plugin", "type": "string", "enum": [ "Local", "AwsS3", "Dropbox", "AzureBlobStorage", "GoogleCloudStorage" ] }, "personal": { "title": "Personal Identifiable Information (PII)", "description": "Define PPI (US term), personal data (EU term) and sensitive data (EU term)", "type": "boolean", "default": false }, "help": { "title": "Help tooltip", "description": "Add help tooltip next to the label of the field", "type": "string" } }, "additionalProperties": false } }, "title": "Fields configuration", "description": "Fields configuration options", "type": "object", "properties": {}, "additionalProperties": { "allOf": [ { "$ref": "#/definitions/fieldOptions" } ] } }
o13134
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "quantity": { "description": "The quantity of the item", "type": "integer" }, "unit_price": { "description": "The unit price of the item", "type": "number" } }, "required": [ "name", "quantity", "unit_price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
generate_invoice_eac11f93
{ "additionalProperties": false, "description": "Context Schema for a Roku video event (reflects the Video node: https://developer.roku.com/en-gb/docs/references/scenegraph/media-playback-nodes/video.md)", "properties": { "contentId": { "description": "ID of video provided in content metadata.", "maxLength": 255, "type": [ "string", "null" ] }, "contentTitle": { "description": "Title of video provided in content metadata.", "maxLength": 65535, "type": [ "string", "null" ] }, "contentType": { "description": "Category of video (e.g., movie, season, series) provided in content metadata.", "maxLength": 255, "type": [ "string", "null" ] }, "contentUrl": { "_format": "uri", "description": "URL of video provided in content metadata.", "maxLength": 65535, "type": [ "string", "null" ] }, "errorStr": { "description": "A diagnostic message indicating a video play error. Refer to the Roku Video documentation for the format of the string.", "maxLength": 65535, "type": [ "string", "null" ] }, "height": { "description": "Height of the video play window in pixels. 0 if the play window is set to the height of the entire display screen.", "maximum": 65535, "minimum": 0, "type": "integer" }, "isResumed": { "description": "Indicates whether the playback was resumed after trickplay.", "type": [ "boolean", "null" ] }, "isUnderrun": { "description": "Indicates whether the stream was downloaded due to an underrun.", "type": [ "boolean", "null" ] }, "measuredBitrate": { "description": "Measured bitrate (bps) of the network when the stream was selected.", "maximum": 2147483647, "minimum": 0, "type": [ "integer", "null" ] }, "streamBitrate": { "description": "Current bitrate of the stream.", "maximum": 2147483647, "minimum": 0, "type": [ "integer", "null" ] }, "streamFormat": { "description": "Container format of video (e.g., mp4, wma, mkv) provided in content metadata.", "maxLength": 255, "type": [ "string", "null" ] }, "streamUrl": { "_format": "uri", "description": "URL of the current stream.", "maxLength": 65535, "type": [ "string", "null" ] }, "timeToStartStreaming": { "description": "Time in seconds from playback being started until the video actually began playing.", "maximum": 9007199254740991, "minimum": 0, "type": [ "number", "null" ] }, "videoFormat": { "description": "Video codec of the currently playing video stream (e.g., hevc, mpeg2, mpeg4_15).", "maxLength": 255, "type": [ "string", "null" ] }, "videoId": { "description": "ID generated when video tracking of the video node was initialized.", "maxLength": 255, "type": "string" }, "width": { "description": "Width of the video play window in pixels. 0 if the play window is set to the width of the entire display screen.", "maximum": 65535, "minimum": 0, "type": "integer" } }, "required": [ "videoId", "width", "height" ], "self": { "format": "jsonschema", "name": "video", "vendor": "com.roku", "version": "1-0-0" }, "type": "object" }
sp_170_Normalized
{ "properties": { "measurements": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (if applicable)", "type": "number" }, "width": { "description": "The width of the shape (if applicable)", "type": "number" } }, "required": [ "length" ], "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "type": "string" } }, "required": [ "shape", "measurements" ], "type": "object" }
calculate_area_6efa49a2
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://dcc.icgc.org/mutation-centric", "type": "object", "properties": { "_mutation_id": { "id": "https://dcc.icgc.org/mutation-centric/_mutation_id", "type": "string" }, "_summary": { "id": "https://dcc.icgc.org/mutation-centric/_summary", "type": "object", "properties": { "_affected_donor_count": { "id": "https://dcc.icgc.org/mutation-centric/_summary/_affected_donor_count", "type": "integer" }, "_affected_project_count": { "id": "https://dcc.icgc.org/mutation-centric/_summary/_affected_project_count", "type": "integer" }, "_affected_project_id": { "id": "https://dcc.icgc.org/mutation-centric/_summary/_affected_project_id", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/_summary/_affected_project_id/0", "type": "string" }, "additionalItems": false }, "_tested_donor_count": { "id": "https://dcc.icgc.org/mutation-centric/_summary/_tested_donor_count", "type": "integer" } }, "additionalProperties": false }, "assembly_version": { "id": "https://dcc.icgc.org/mutation-centric/assembly_version", "type": "string" }, "chromosome": { "id": "https://dcc.icgc.org/mutation-centric/chromosome", "type": "string" }, "chromosome_end": { "id": "https://dcc.icgc.org/mutation-centric/chromosome_end", "type": "integer" }, "chromosome_start": { "id": "https://dcc.icgc.org/mutation-centric/chromosome_start", "type": "integer" }, "consequence_type": { "id": "https://dcc.icgc.org/mutation-centric/consequence_type", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/consequence_type/2", "type": "string" }, "additionalItems": false }, "functional_impact_prediction_summary": { "id": "https://dcc.icgc.org/mutation-centric/functional_impact_prediction_summary", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/functional_impact_prediction_summary/0", "type": "string" }, "additionalItems": false }, "mutation": { "id": "https://dcc.icgc.org/mutation-centric/mutation", "type": "string" }, "mutation_type": { "id": "https://dcc.icgc.org/mutation-centric/mutation_type", "type": "string" }, "platform": { "id": "https://dcc.icgc.org/mutation-centric/platform", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/platform/0", "type": "string" }, "additionalItems": false }, "reference_genome_allele": { "id": "https://dcc.icgc.org/mutation-centric/reference_genome_allele", "type": "string" }, "sequencing_strategy": { "id": "https://dcc.icgc.org/mutation-centric/sequencing_strategy", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/sequencing_strategy/0", "type": "string" }, "additionalItems": false }, "ssm_occurrence": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0", "type": "object", "properties": { "donor": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor", "type": "object", "properties": { "_donor_id": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_donor_id", "type": "string" }, "_summary": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary", "type": "object", "properties": { "_age_at_diagnosis_group": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/_age_at_diagnosis_group", "type": "string" }, "_available_data_type": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/_available_data_type", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/_available_data_type/10", "type": "string" }, "additionalItems": false }, "_state": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/_state", "type": "string" }, "_studies": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/_studies", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/_studies/1", "type": "string" }, "additionalItems": false }, "experimental_analysis_performed": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/experimental_analysis_performed", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/_summary/experimental_analysis_performed/4", "type": "string" }, "additionalItems": false } }, "additionalProperties": false }, "disease_status_last_followup": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/disease_status_last_followup", "type": "string" }, "donor_relapse_type": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/donor_relapse_type", "type": "string" }, "donor_sex": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/donor_sex", "type": "string" }, "donor_tumour_stage_at_diagnosis": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/donor_tumour_stage_at_diagnosis", "type": "string" }, "donor_vital_status": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/donor/donor_vital_status", "type": "string" } }, "additionalProperties": false }, "observation": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/observation", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/observation/0", "type": "object", "properties": { "platform": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/observation/0/platform", "type": "string" }, "sequencing_strategy": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/observation/0/sequencing_strategy", "type": "string" }, "verification_status": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/observation/0/verification_status", "type": "string" } }, "additionalProperties": false }, "additionalItems": false }, "project": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/project", "type": "object", "properties": { "_project_id": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/project/_project_id", "type": "string" }, "primary_site": { "id": "https://dcc.icgc.org/mutation-centric/ssm_occurrence/0/project/primary_site", "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false }, "additionalItems": false }, "transcript": { "id": "https://dcc.icgc.org/mutation-centric/transcript", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0", "type": "object", "properties": { "consequence": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/consequence", "type": "object", "properties": { "_gene_id": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/consequence/_gene_id", "type": "string" }, "_transcript_id": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/consequence/_transcript_id", "type": "string" }, "aa_mutation": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/consequence/aa_mutation", "type": "string" }, "consequence_type": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/consequence/consequence_type", "type": "string" }, "gene_affected": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/consequence/gene_affected", "type": "string" } }, "additionalProperties": false }, "fake": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/fake", "type": "boolean" }, "functional_impact_prediction_summary": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/functional_impact_prediction_summary", "type": "string" }, "gene": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene", "type": "object", "properties": { "_gene_id": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/_gene_id", "type": "string" }, "biotype": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/biotype", "type": "string" }, "chromosome": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/chromosome", "type": "string" }, "end": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/end", "type": "integer" }, "drug": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/drug", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/drug/0", "type": "string" }, "additionalItems": false }, "external_db_ids": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/external_db_ids", "type": "object", "properties": { "uniprotkb_swissprot": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/external_db_ids/uniprotkb_swissprot", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/external_db_ids/uniprotkb_swissprot/0", "type": "string" } } }, "additionalProperties": false }, "start": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/start", "type": "integer" }, "symbol": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/symbol", "type": "string" }, "pathway": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/pathway", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/pathway/3", "type": "string" }, "additionalItems": false }, "go_term": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term", "type": "object", "properties": { "biological_process": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term/biological_process", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term/biological_process/0", "type": "string" }, "additionalItems": false }, "cellular_component": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term/cellular_component", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term/cellular_component/0", "type": "string" }, "additionalItems": false }, "molecular_function": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term/molecular_function", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/gene/go_term/molecular_function/0", "type": "string" }, "additionalItems": false } }, "additionalProperties": false } }, "additionalProperties": false }, "id": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/id", "type": "string" }, "name": { "id": "https://dcc.icgc.org/mutation-centric/transcript/0/name", "type": "string" } }, "additionalProperties": false }, "additionalItems": false }, "validation_status": { "id": "https://dcc.icgc.org/mutation-centric/validation_status", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/validation_status/0", "type": "string" }, "additionalItems": false }, "verification_status": { "id": "https://dcc.icgc.org/mutation-centric/verification_status", "type": "array", "items": { "id": "https://dcc.icgc.org/mutation-centric/verification_status/0", "type": "string" }, "additionalItems": false } }, "additionalProperties": false }
o47100
{ "additionalProperties": false, "description": "Top-level schema for the validation process (Iglu-only)", "properties": { "data": {}, "schema": { "pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/[0-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "schema", "data" ], "self": { "format": "jsonschema", "name": "instance-iglu-only", "vendor": "com.snowplowanalytics.self-desc", "version": "1-0-0" }, "type": "object" }
sp_248_Normalized
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The side length of the square", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_305a8573
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "symbolInfo": { "properties": { "isHidden": { "anyOf": [ { "type": "boolean" }, { "pattern": "^(true|false)$" } ] }, "longName": { "type": "string" }, "shortName": { "type": "string" } } } }, "id": "https://json.schemastore.org/dotnetcli.host.json", "properties": { "symbolInfo": { "type": "object", "additionalProperties": { "$ref": "#/definitions/symbolInfo" } }, "usageExamples": { "type": "array", "items": { "type": "string" } } }, "title": "JSON schema for .NET CLI template host files", "type": "object" }
dotnetcli
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The shape, e.g. triangle, rectangle, circle", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_53304aa2
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Signal subscription configuration", "properties": { "name": { "propertyOrder": 10, "title": "Name", "type": "string" }, "signalClass": { "propertyOrder": 35, "title": "Signal class", "type": "string" }, "signalSubclass": { "propertyOrder": 36, "title": "Signal subclass", "type": "string" }, "level": { "propertyOrder": 38, "title": "Signal level", "type": "string", "enum": [ "Very low", "Low", "Medium", "High", "Very high", "Maximum" ] }, "conflate": { "propertyOrder": 50, "title": "Conflate", "default": true, "type": "boolean" }, "autoClose": { "propertyOrder": 60, "title": "Auto-close (sec)", "default": 3, "type": "number" } }, "additionalProperties": false }
o47921
{ "additionalProperties": false, "properties": { "flat": { "default": true, "description": "Flag to indicate if a dir is created.", "type": "boolean" }, "name": { "$default": { "$source": "argv", "index": 0 }, "description": "The name of the service.", "type": "string" }, "path": { "description": "The path to create the service.", "format": "path", "type": "string", "visible": false }, "project": { "$default": { "$source": "projectName" }, "description": "The name of the project.", "type": "string" }, "spec": { "default": true, "description": "Specifies if a spec file is generated.", "type": "boolean" } }, "required": [], "title": "Angular Service Options Schema", "type": "object" }
o45409
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "access_limited": { "additionalProperties": false, "properties": { "auth_bypass_ids": { "$ref": "#/definitions/guid_list", "description": "Deprecated: auth_bypass_ids should be sent as a separate field" }, "organisations": { "$ref": "#/definitions/guid_list", "description": "A list of organisation content ids permitted access to this item" }, "users": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body_html_and_govspeak": { "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ], "description": "The main content provided as HTML with the govspeak markdown it's rendered from" }, "country": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "slug": { "type": "string" }, "synonyms": { "items": { "type": "string" }, "type": "array" } }, "required": [ "slug", "name" ], "type": "object" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "alert_status": { "items": { "type": "string" }, "type": "array" }, "change_description": { "type": "string" }, "country": { "$ref": "#/definitions/country" }, "document": { "$ref": "#/definitions/file_attachment_asset" }, "email_signup_link": { "$ref": "#/definitions/email_signup_link" }, "image": { "$ref": "#/definitions/image_asset" }, "max_cache_time": { "$ref": "#/definitions/max_cache_time" }, "parts": { "$ref": "#/definitions/parts" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "reviewed_at": { "_format": "date-time", "type": "string" }, "summary": { "$ref": "#/definitions/multiple_content_types" }, "updated_at": { "_format": "date-time", "type": "string" } }, "required": [ "summary", "country", "updated_at", "reviewed_at", "change_description", "alert_status", "email_signup_link", "parts" ], "type": "object" }, "email_signup_link": { "_format": "uri", "description": "Path to email signup form. TODO: Check if can be switched to use links instead", "type": "string" }, "file_attachment_asset": { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "image_asset": { "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "type": "string" }, "content_type": { "type": "string" }, "credit": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "content_type", "url" ], "type": "object" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "max_cache_time": { "description": "The maximum length of time the content should be cached, in seconds", "type": "integer" }, "multiple_content_types": { "items": { "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } }, "required": [ "content_type", "content" ], "type": "object" }, "type": "array" }, "parts": { "items": { "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "slug": { "_format": "uri", "type": "string" }, "title": { "type": "string" } }, "required": [ "title", "slug", "body" ], "type": "object" }, "type": "array" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } }, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "$ref": "#/definitions/guid_list", "description": "A list of ids that will allow access to this item for non-authenticated users" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "travel_advice" ], "type": "string" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "_format": "date-time", "description": "Last time when the content received a major or minor update.", "type": "string" }, "links": { "additionalProperties": false, "properties": { "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "travel_advice" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "type": "object" }
o21418
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://gitlab.com/.gitlab-ci.yml", "markdownDescription": "Gitlab has a built-in solution for doing CI called Gitlab CI. It is configured by supplying a file called `.gitlab-ci.yml`, which will list all the jobs that are going to run for the project. A full list of all options can be found [here](https://docs.gitlab.com/ee/ci/yaml). [Learn More](https://docs.gitlab.com/ee/ci/index.html).", "type": "object", "properties": { "$schema": { "type": "string", "format": "uri" }, "image": { "$ref": "#/definitions/image" }, "services": { "$ref": "#/definitions/services" }, "before_script": { "$ref": "#/definitions/before_script" }, "after_script": { "$ref": "#/definitions/after_script" }, "variables": { "$ref": "#/definitions/globalVariables" }, "cache": { "$ref": "#/definitions/cache" }, "!reference": { "$ref": "#/definitions/!reference" }, "default": { "type": "object", "properties": { "after_script": { "$ref": "#/definitions/after_script" }, "artifacts": { "$ref": "#/definitions/artifacts" }, "before_script": { "$ref": "#/definitions/before_script" }, "hooks": { "$ref": "#/definitions/hooks" }, "cache": { "$ref": "#/definitions/cache" }, "image": { "$ref": "#/definitions/image" }, "interruptible": { "$ref": "#/definitions/interruptible" }, "retry": { "$ref": "#/definitions/retry" }, "services": { "$ref": "#/definitions/services" }, "tags": { "$ref": "#/definitions/tags" }, "timeout": { "$ref": "#/definitions/timeout" }, "!reference": { "$ref": "#/definitions/!reference" } }, "additionalProperties": false }, "stages": { "type": "array", "markdownDescription": "Groups jobs into stages. All jobs in one stage must complete before next stage is executed. Defaults to ['build', 'test', 'deploy']. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#stages).", "default": [ "build", "test", "deploy" ], "items": { "type": "string" }, "uniqueItems": true, "minItems": 1 }, "include": { "markdownDescription": "Can be `IncludeItem` or `IncludeItem[]`. Each `IncludeItem` will be a string, or an object with properties for the method if including external YAML file. The external content will be fetched, included and evaluated along the `.gitlab-ci.yml`. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#include).", "oneOf": [ { "$ref": "#/definitions/include_item" }, { "type": "array", "items": { "$ref": "#/definitions/include_item" } } ] }, "pages": { "$ref": "#/definitions/job", "markdownDescription": "A special job used to upload static sites to Gitlab pages. Requires a `public/` directory with `artifacts.path` pointing to it. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#pages)." }, "workflow": { "type": "object", "properties": { "name": { "$ref": "#/definitions/workflowName" }, "rules": { "type": "array", "items": { "anyOf": [ { "type": "object" }, { "type": "array", "minLength": 1, "items": { "type": "string" } } ], "properties": { "if": { "$ref": "#/definitions/if" }, "changes": { "$ref": "#/definitions/changes" }, "exists": { "$ref": "#/definitions/exists" }, "variables": { "$ref": "#/definitions/rulesVariables" }, "when": { "type": "string", "enum": [ "always", "never" ] } }, "additionalProperties": false } } } } }, "patternProperties": { "^[.]": { "description": "Hidden keys.", "anyOf": [ { "$ref": "#/definitions/job_template" }, { "description": "Arbitrary YAML anchor." } ] } }, "additionalProperties": { "$ref": "#/definitions/job" }, "definitions": { "artifacts": { "type": "object", "markdownDescription": "Used to specify a list of files and directories that should be attached to the job if it succeeds. Artifacts are sent to Gitlab where they can be downloaded. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifacts).", "additionalProperties": false, "properties": { "paths": { "type": "array", "markdownDescription": "A list of paths to files/folders that should be included in the artifact. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactspaths).", "items": { "type": "string" }, "minItems": 1 }, "exclude": { "type": "array", "markdownDescription": "A list of paths to files/folders that should be excluded in the artifact. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsexclude).", "items": { "type": "string" }, "minItems": 1 }, "expose_as": { "type": "string", "markdownDescription": "Can be used to expose job artifacts in the merge request UI. GitLab will add a link <expose_as> to the relevant merge request that points to the artifact. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsexpose_as)." }, "name": { "type": "string", "markdownDescription": "Name for the archive created on job success. Can use variables in the name, e.g. '$CI_JOB_NAME' [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsname)." }, "untracked": { "type": "boolean", "markdownDescription": "Whether to add all untracked files (along with 'artifacts.paths') to the artifact. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsuntracked).", "default": false }, "when": { "markdownDescription": "Configure when artifacts are uploaded depended on job status. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactswhen).", "default": "on_success", "type": "string", "enum": [ "on_success", "on_failure", "always" ] }, "expire_in": { "type": "string", "markdownDescription": "How long artifacts should be kept. They are saved 30 days by default. Artifacts that have expired are removed periodically via cron job. Supports a wide variety of formats, e.g. '1 week', '3 mins 4 sec', '2 hrs 20 min', '2h20min', '6 mos 1 day', '47 yrs 6 mos and 4d', '3 weeks and 2 days'. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsexpire_in).", "default": "30 days" }, "reports": { "type": "object", "markdownDescription": "Reports will be uploaded as artifacts, and often displayed in the Gitlab UI, such as in Merge Requests. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsreports).", "additionalProperties": false, "properties": { "junit": { "description": "Path for file(s) that should be parsed as JUnit XML result", "oneOf": [ { "type": "string", "description": "Path to a single XML file" }, { "type": "array", "description": "A list of paths to XML files that will automatically be concatenated into a single file", "items": { "type": "string" }, "minItems": 1 } ] }, "browser_performance": { "type": "string", "description": "Path to a single file with browser performance metric report(s)." }, "coverage_report": { "type": [ "object", "null" ], "description": "Used to collect coverage reports from the job.", "properties": { "coverage_format": { "description": "Code coverage format used by the test framework.", "enum": [ "cobertura" ] }, "path": { "description": "Path to the coverage report file that should be parsed.", "type": "string", "minLength": 1 } } }, "codequality": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with code quality report(s) (such as Code Climate)." }, "dotenv": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files containing runtime-created variables for this job." }, "lsif": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files containing code intelligence (Language Server Index Format)." }, "sast": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with SAST vulnerabilities report(s)." }, "dependency_scanning": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with Dependency scanning vulnerabilities report(s)." }, "container_scanning": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with Container scanning vulnerabilities report(s)." }, "dast": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with DAST vulnerabilities report(s)." }, "license_management": { "$ref": "#/definitions/string_file_list", "description": "Deprecated in 12.8: Path to file or list of files with license report(s)." }, "license_scanning": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with license report(s)." }, "requirements": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with requirements report(s)." }, "secret_detection": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with secret detection report(s)." }, "metrics": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with custom metrics report(s)." }, "terraform": { "$ref": "#/definitions/string_file_list", "description": "Path to file or list of files with terraform plan(s)." }, "cyclonedx": { "$ref": "#/definitions/string_file_list", "markdownDescription": "Path to file or list of files with cyclonedx report(s). [Learn More](https://docs.gitlab.com/ee/ci/yaml/artifacts_reports.html#artifactsreportscyclonedx)." }, "load_performance": { "$ref": "#/definitions/string_file_list", "markdownDescription": "Path to file or list of files with load performance testing report(s). [Learn More](https://docs.gitlab.com/ee/ci/yaml/artifacts_reports.html#artifactsreportsload_performance)." } } } } }, "string_file_list": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "include_item": { "oneOf": [ { "description": "Will infer the method based on the value. E.g. `https://...` strings will be of type `include:remote`, and `/templates/...` or `templates/...` will be of type `include:local`.", "type": "string", "format": "uri-reference", "pattern": "^(https?://|/?.?-?(?!\\w+://)\\w).+\\.ya?ml$" }, { "type": "object", "additionalProperties": false, "properties": { "local": { "description": "Relative path from local repository root (`/`) to the `yaml`/`yml` file template. The file must be on the same branch, and does not work across git submodules.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" }, "rules": { "$ref": "#/definitions/includeRules" }, "inputs": { "$ref": "#/definitions/inputs" } }, "required": [ "local" ] }, { "type": "object", "additionalProperties": false, "properties": { "project": { "description": "Path to the project, e.g. `group/project`, or `group/sub-group/project` [Learn more](https://docs.gitlab.com/ee/ci/yaml/index.html#includefile).", "type": "string", "pattern": "(?:\\S/\\S|\\$\\S+)" }, "ref": { "description": "Branch/Tag/Commit-hash for the target project.", "type": "string" }, "file": { "oneOf": [ { "description": "Relative path from project root (`/`) to the `yaml`/`yml` file template.", "type": "string", "pattern": "\\.ya?ml$" }, { "description": "List of files by relative path from project root (`/`) to the `yaml`/`yml` file template.", "type": "array", "items": { "type": "string", "pattern": "\\.ya?ml$" } } ] }, "rules": { "$ref": "#/definitions/includeRules" }, "inputs": { "$ref": "#/definitions/inputs" } }, "required": [ "project", "file" ] }, { "type": "object", "additionalProperties": false, "properties": { "template": { "description": "Use a `.gitlab-ci.yml` template as a base, e.g. `Nodejs.gitlab-ci.yml`.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" }, "rules": { "$ref": "#/definitions/includeRules" }, "inputs": { "$ref": "#/definitions/inputs" } }, "required": [ "template" ] }, { "type": "object", "additionalProperties": false, "properties": { "component": { "description": "Local path to component directory or full path to external component directory.", "type": "string", "format": "uri-reference" }, "rules": { "$ref": "#/definitions/includeRules" }, "inputs": { "$ref": "#/definitions/inputs" } }, "required": [ "component" ] }, { "type": "object", "additionalProperties": false, "properties": { "remote": { "description": "URL to a `yaml`/`yml` template file using HTTP/HTTPS.", "type": "string", "format": "uri-reference", "pattern": "^https?://.+\\.ya?ml$" }, "rules": { "$ref": "#/definitions/includeRules" }, "inputs": { "$ref": "#/definitions/inputs" } }, "required": [ "remote" ] } ] }, "!reference": { "type": "array", "items": { "type": "string", "minLength": 1 } }, "image": { "oneOf": [ { "type": "string", "minLength": 1, "description": "Full name of the image that should be used. It should contain the Registry part if needed." }, { "type": "object", "description": "Specifies the docker image to use for the job or globally for all jobs. Job configuration takes precedence over global setting. Requires a certain kind of Gitlab runner executor.", "additionalProperties": false, "properties": { "name": { "type": "string", "minLength": 1, "description": "Full name of the image that should be used. It should contain the Registry part if needed." }, "entrypoint": { "type": "array", "description": "Command or script that should be executed as the container's entrypoint. It will be translated to Docker's --entrypoint option while creating the container. The syntax is similar to Dockerfile's ENTRYPOINT directive, where each shell token is a separate string in the array.", "minItems": 1 }, "pull_policy": { "markdownDescription": "Specifies how to pull the image in Runner. It can be one of `always`, `never` or `if-not-present`. The default value is `always`. [Learn more](https://docs.gitlab.com/ee/ci/yaml/#imagepull_policy).", "default": "always", "oneOf": [ { "type": "string", "enum": [ "always", "never", "if-not-present" ] }, { "type": "array", "items": { "type": "string", "enum": [ "always", "never", "if-not-present" ] }, "minItems": 1, "uniqueItems": true } ] } }, "required": [ "name" ] }, { "type": "array", "minLength": 1, "items": { "type": "string" } } ], "markdownDescription": "Specifies the docker image to use for the job or globally for all jobs. Job configuration takes precedence over global setting. Requires a certain kind of Gitlab runner executor. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#image)." }, "services": { "type": "array", "markdownDescription": "Similar to `image` property, but will link the specified services to the `image` container. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#services).", "items": { "oneOf": [ { "type": "string", "minLength": 1, "description": "Full name of the image that should be used. It should contain the Registry part if needed." }, { "type": "object", "description": "", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Full name of the image that should be used. It should contain the Registry part if needed.", "minLength": 1 }, "entrypoint": { "type": "array", "markdownDescription": "Command or script that should be executed as the container's entrypoint. It will be translated to Docker's --entrypoint option while creating the container. The syntax is similar to Dockerfile's ENTRYPOINT directive, where each shell token is a separate string in the array. [Learn More](https://docs.gitlab.com/ee/ci/services/index.html#available-settings-for-services)", "minItems": 1, "items": { "type": "string" } }, "pull_policy": { "markdownDescription": "Specifies how to pull the image in Runner. It can be one of `always`, `never` or `if-not-present`. The default value is `always`. [Learn more](https://docs.gitlab.com/ee/ci/yaml/#servicepull_policy).", "default": "always", "oneOf": [ { "type": "string", "enum": [ "always", "never", "if-not-present" ] }, { "type": "array", "items": { "type": "string", "enum": [ "always", "never", "if-not-present" ] }, "minItems": 1, "uniqueItems": true } ] }, "command": { "type": "array", "markdownDescription": "Command or script that should be used as the container's command. It will be translated to arguments passed to Docker after the image's name. The syntax is similar to Dockerfile's CMD directive, where each shell token is a separate string in the array. [Learn More](https://docs.gitlab.com/ee/ci/services/index.html#available-settings-for-services)", "minItems": 1, "items": { "type": "string" } }, "alias": { "type": "string", "markdownDescription": "Additional alias that can be used to access the service from the job's container. Read Accessing the services for more information. [Learn More](https://docs.gitlab.com/ee/ci/services/index.html#available-settings-for-services)", "minLength": 1 }, "variables": { "$ref": "#/definitions/jobVariables", "markdownDescription": "Additional environment variables that are passed exclusively to the service. Service variables cannot reference themselves. [Learn More](https://docs.gitlab.com/ee/ci/services/index.html#available-settings-for-services)" } }, "required": [ "name" ] } ] } }, "id_tokens": { "type": "object", "markdownDescription": "Defines JWTs to be injected as environment variables.", "patternProperties": { ".*": { "type": "object", "properties": { "aud": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" }, "minItems": 1, "uniqueItems": true } ] } }, "required": [ "aud" ], "additionalProperties": false } } }, "secrets": { "type": "object", "markdownDescription": "Defines secrets to be injected as environment variables. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#secrets).", "patternProperties": { ".*": { "type": "object", "properties": { "vault": { "oneOf": [ { "type": "string", "markdownDescription": "The secret to be fetched from Vault (e.g. 'production/db/password@ops' translates to secret 'ops/data/production/db', field `password`). [Learn More](https://docs.gitlab.com/ee/ci/yaml/#secretsvault)" }, { "type": "object", "properties": { "engine": { "type": "object", "properties": { "name": { "type": "string" }, "path": { "type": "string" } }, "required": [ "name", "path" ] }, "path": { "type": "string" }, "field": { "type": "string" } }, "required": [ "engine", "path", "field" ], "additionalProperties": false } ] }, "azure_key_vault": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": [ "name" ], "additionalProperties": false }, "file": { "type": "boolean", "default": true, "markdownDescription": "Configures the secret to be stored as either a file or variable type CI/CD variable. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#secretsfile)" }, "token": { "type": "string", "description": "Specifies the JWT variable that should be used to authenticate with Hashicorp Vault." } }, "anyOf": [ { "required": [ "vault" ] }, { "required": [ "azure_key_vault" ] } ], "additionalProperties": false } } }, "before_script": { "type": "array", "markdownDescription": "Defines scripts that should run *before* the job. Can be set globally or per job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#before_script).", "items": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } }, "after_script": { "type": "array", "markdownDescription": "Defines scripts that should run *after* the job. Can be set globally or per job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#after_script).", "items": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } }, "rules": { "type": [ "array", "null" ], "markdownDescription": "Rules allows for an array of individual rule objects to be evaluated in order, until one matches and dynamically provides attributes to the job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#rules).", "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "properties": { "if": { "$ref": "#/definitions/if" }, "changes": { "$ref": "#/definitions/changes" }, "exists": { "$ref": "#/definitions/exists" }, "variables": { "$ref": "#/definitions/rulesVariables" }, "when": { "$ref": "#/definitions/when" }, "start_in": { "$ref": "#/definitions/start_in" }, "allow_failure": { "$ref": "#/definitions/allow_failure" }, "needs": { "$ref": "#/definitions/rulesNeeds" } } }, { "type": "string", "minLength": 1 }, { "type": "array", "minLength": 1, "items": { "type": "string" } } ] } }, "includeRules": { "type": [ "array", "null" ], "markdownDescription": "You can use rules to conditionally include other configuration files. [Learn More](https://docs.gitlab.com/ee/ci/yaml/includes.html#use-rules-with-include).", "items": { "anyOf": [ { "type": "object", "additionalProperties": false, "properties": { "if": { "$ref": "#/definitions/if" }, "exists": { "$ref": "#/definitions/exists" }, "when": { "markdownDescription": "Use `when: never` to exclude the configuration file if the condition matches. [Learn More](https://docs.gitlab.com/ee/ci/yaml/includes.html#include-with-rulesif).", "oneOf": [ { "type": "string", "enum": [ "never", "always" ] }, { "type": "null" } ] } } }, { "type": "string", "minLength": 1 }, { "type": "array", "minLength": 1, "items": { "type": "string" } } ] } }, "workflowName": { "type": "string", "markdownDescription": "Defines the pipeline name. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#workflowname).", "minLength": 1, "maxLength": 255 }, "globalVariables": { "markdownDescription": "Defines default variables for all jobs. Job level property overrides global variables. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variables).", "type": "object", "patternProperties": { ".*": { "oneOf": [ { "type": [ "string", "number" ] }, { "type": "object", "properties": { "value": { "type": "string", "markdownDescription": "Default value of the variable. If used with `options`, `value` must be included in the array. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variablesvalue)" }, "options": { "type": "array", "items": { "type": "string" }, "minItems": 1, "uniqueItems": true, "markdownDescription": "A list of predefined values that users can select from in the **Run pipeline** page when running a pipeline manually. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variablesoptions)" }, "description": { "type": "string", "markdownDescription": "Explains what the variable is used for, what the acceptable values are. Variables with `description` are prefilled when running a pipeline manually. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variablesdescription)." }, "expand": { "type": "boolean", "markdownDescription": "If the variable is expandable or not. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variablesexpand)." } }, "additionalProperties": false } ] }, "additionalProperties": false } }, "jobVariables": { "markdownDescription": "Defines variables for a job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variables).", "type": "object", "patternProperties": { ".*": { "oneOf": [ { "type": [ "string", "number" ] }, { "type": "object", "properties": { "value": { "type": "string" }, "expand": { "type": "boolean", "markdownDescription": "Defines if the variable is expandable or not. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#variablesexpand)." } }, "additionalProperties": false } ] }, "additionalProperties": false } }, "rulesVariables": { "markdownDescription": "Defines variables for a rule result. [Learn More](https://docs.gitlab.com/ee/ci/yaml/index.html#rulesvariables).", "type": "object", "patternProperties": { ".*": { "type": [ "string", "number" ] }, "additionalProperties": false } }, "if": { "type": "string", "markdownDescription": "Expression to evaluate whether additional attributes should be provided to the job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#rulesif)." }, "changes": { "markdownDescription": "Additional attributes will be provided to job if any of the provided paths matches a modified file. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#ruleschanges).", "anyOf": [ { "type": "object", "additionalProperties": false, "required": [ "paths" ], "properties": { "paths": { "type": "array", "description": "List of file paths.", "items": { "type": "string" } }, "compare_to": { "type": "string", "description": "Ref for comparing changes." } } }, { "type": "array", "items": { "type": "string" } } ] }, "exists": { "type": "array", "markdownDescription": "Additional attributes will be provided to job if any of the provided paths matches an existing file in the repository. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#rulesexists).", "items": { "type": "string" } }, "timeout": { "type": "string", "markdownDescription": "Allows you to configure a timeout for a specific job (e.g. `1 minute`, `1h 30m 12s`). [Learn More](https://docs.gitlab.com/ee/ci/yaml/index.html#timeout).", "minLength": 1 }, "start_in": { "type": "string", "markdownDescription": "Used in conjunction with 'when: delayed' to set how long to delay before starting a job. e.g. '5', 5 seconds, 30 minutes, 1 week, etc. [Learn More](https://docs.gitlab.com/ee/ci/jobs/job_control.html#run-a-job-after-a-delay).", "minLength": 1 }, "rulesNeeds": { "markdownDescription": "Use needs in rules to update job needs for specific conditions. When a condition matches a rule, the job's needs configuration is completely replaced with the needs in the rule. [Learn More](https://docs.gitlab.com/ee/ci/yaml/index.html#rulesneeds).", "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "object", "additionalProperties": false, "properties": { "job": { "type": "string", "minLength": 1, "description": "Name of a job that is defined in the pipeline." }, "artifacts": { "type": "boolean", "description": "Download artifacts of the job in needs." }, "optional": { "type": "boolean", "description": "Whether the job needs to be present in the pipeline to run ahead of the current job." } }, "required": [ "job" ] } ] } }, "allow_failure": { "markdownDescription": "Allow job to fail. A failed job does not cause the pipeline to fail. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#allow_failure).", "oneOf": [ { "description": "Setting this option to true will allow the job to fail while still letting the pipeline pass.", "type": "boolean", "default": false }, { "description": "Exit code that are not considered failure. The job fails for any other exit code.", "type": "object", "additionalProperties": false, "required": [ "exit_codes" ], "properties": { "exit_codes": { "type": "integer" } } }, { "description": "You can list which exit codes are not considered failures. The job fails for any other exit code.", "type": "object", "additionalProperties": false, "required": [ "exit_codes" ], "properties": { "exit_codes": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "integer" } } } } ] }, "parallel": { "description": "Splits up a single job into multiple that run in parallel. Provides `CI_NODE_INDEX` and `CI_NODE_TOTAL` environment variables to the jobs.", "oneOf": [ { "type": "integer", "description": "Creates N instances of the job that run in parallel.", "default": 0, "minimum": 2, "maximum": 200 }, { "type": "object", "properties": { "matrix": { "type": "array", "description": "Defines different variables for jobs that are running in parallel.", "items": { "type": "object", "description": "Defines the variables for a specific job.", "additionalProperties": { "type": [ "string", "number", "array" ] } }, "maxItems": 200 } }, "additionalProperties": false, "required": [ "matrix" ] } ] }, "parallel_matrix": { "description": "Use the `needs:parallel:matrix` keyword to specify parallelized jobs needed to be completed for the job to run. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#needsparallelmatrix)", "oneOf": [ { "type": "object", "properties": { "matrix": { "type": "array", "description": "Defines different variables for jobs that are running in parallel.", "items": { "type": "object", "description": "Defines the variables for a specific job.", "additionalProperties": { "type": [ "string", "number", "array" ] } }, "maxItems": 200 } }, "additionalProperties": false, "required": [ "matrix" ] } ] }, "when": { "markdownDescription": "Describes the conditions for when to run the job. Defaults to 'on_success'. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#when).", "default": "on_success", "type": "string", "enum": [ "on_success", "on_failure", "always", "never", "manual", "delayed" ] }, "cache": { "markdownDescription": "Use `cache` to specify a list of files and directories to cache between jobs. You can only use paths that are in the local working copy. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cache)", "properties": { "key": { "markdownDescription": "Use the `cache:key` keyword to give each cache a unique identifying key. All jobs that use the same cache key use the same cache, including in different pipelines. Must be used with `cache:path`, or nothing is cached. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cachekey).", "oneOf": [ { "type": "string", "pattern": "^(?!.*\\/)^(.*[^.]+.*)$" }, { "type": "object", "properties": { "files": { "markdownDescription": "Use the `cache:key:files` keyword to generate a new key when one or two specific files change. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cachekeyfiles)", "type": "array", "items": { "type": "string" }, "minItems": 1, "maxItems": 2 }, "prefix": { "markdownDescription": "Use `cache:key:prefix` to combine a prefix with the SHA computed for `cache:key:files`. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cachekeyprefix)", "type": "string" } } } ] }, "paths": { "type": "array", "markdownDescription": "Use the `cache:paths` keyword to choose which files or directories to cache. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cachepaths)", "items": { "type": "string" } }, "policy": { "type": "string", "markdownDescription": "Determines the strategy for downloading and updating the cache. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cachepolicy)", "default": "pull-push", "pattern": "pull-push|pull|push|\\$\\w{1,255}" }, "unprotect": { "type": "boolean", "markdownDescription": "Use `unprotect: true` to set a cache to be shared between protected and unprotected branches.", "default": false }, "untracked": { "type": "boolean", "markdownDescription": "Use `untracked: true` to cache all files that are untracked in your Git repository. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cacheuntracked)", "default": false }, "when": { "type": "string", "markdownDescription": "Defines when to save the cache, based on the status of the job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#cachewhen).", "default": "on_success", "enum": [ "on_success", "on_failure", "always" ] }, "fallback_keys": { "type": "array", "markdownDescription": "List of keys to download cache from if no cache hit occurred for key", "items": { "type": "string" }, "maxItems": 5 } } }, "filter_refs": { "type": "array", "description": "Filter job by different keywords that determine origin or state, or by supplying string/regex to check against branch/tag names.", "items": { "anyOf": [ { "oneOf": [ { "enum": [ "branches" ], "description": "When a branch is pushed." }, { "enum": [ "tags" ], "description": "When a tag is pushed." }, { "enum": [ "api" ], "description": "When a pipeline has been triggered by a second pipelines API (not triggers API)." }, { "enum": [ "external" ], "description": "When using CI services other than Gitlab" }, { "enum": [ "pipelines" ], "description": "For multi-project triggers, created using the API with 'CI_JOB_TOKEN'." }, { "enum": [ "pushes" ], "description": "Pipeline is triggered by a `git push` by the user" }, { "enum": [ "schedules" ], "description": "For scheduled pipelines." }, { "enum": [ "triggers" ], "description": "For pipelines created using a trigger token." }, { "enum": [ "web" ], "description": "For pipelines created using *Run pipeline* button in Gitlab UI (under your project's *Pipelines*)." } ] }, { "type": "string", "description": "String or regular expression to match against tag or branch names." } ] } }, "filter": { "oneOf": [ { "type": "null" }, { "$ref": "#/definitions/filter_refs" }, { "type": "object", "additionalProperties": false, "properties": { "refs": { "$ref": "#/definitions/filter_refs" }, "kubernetes": { "enum": [ "active" ], "description": "Filter job based on if Kubernetes integration is active." }, "variables": { "type": "array", "markdownDescription": "Filter job by checking comparing values of CI/CD variables. [Learn More](https://docs.gitlab.com/ee/ci/jobs/job_control.html#cicd-variable-expressions).", "items": { "type": "string" } }, "changes": { "type": "array", "description": "Filter job creation based on files that were modified in a git push.", "items": { "type": "string" } } } } ] }, "retry": { "markdownDescription": "Retry a job if it fails. Can be a simple integer or object definition. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#retry).", "oneOf": [ { "$ref": "#/definitions/retry_max" }, { "type": "object", "additionalProperties": false, "properties": { "max": { "$ref": "#/definitions/retry_max" }, "when": { "markdownDescription": "Either a single or array of error types to trigger job retry. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#retrywhen).", "oneOf": [ { "$ref": "#/definitions/retry_errors" }, { "type": "array", "items": { "$ref": "#/definitions/retry_errors" } } ] } } } ] }, "retry_max": { "type": "integer", "description": "The number of times the job will be retried if it fails. Defaults to 0 and can max be retried 2 times (3 times total).", "default": 0, "minimum": 0, "maximum": 2 }, "retry_errors": { "oneOf": [ { "const": "always", "description": "Retry on any failure (default)." }, { "const": "unknown_failure", "description": "Retry when the failure reason is unknown." }, { "const": "script_failure", "description": "Retry when the script failed." }, { "const": "api_failure", "description": "Retry on API failure." }, { "const": "stuck_or_timeout_failure", "description": "Retry when the job got stuck or timed out." }, { "const": "runner_system_failure", "description": "Retry if there is a runner system failure (for example, job setup failed)." }, { "const": "runner_unsupported", "description": "Retry if the runner is unsupported." }, { "const": "stale_schedule", "description": "Retry if a delayed job could not be executed." }, { "const": "job_execution_timeout", "description": "Retry if the script exceeded the maximum execution time set for the job." }, { "const": "archived_failure", "description": "Retry if the job is archived and can’t be run." }, { "const": "unmet_prerequisites", "description": "Retry if the job failed to complete prerequisite tasks." }, { "const": "scheduler_failure", "description": "Retry if the scheduler failed to assign the job to a runner." }, { "const": "data_integrity_failure", "description": "Retry if there is a structural integrity problem detected." } ] }, "interruptible": { "type": "boolean", "markdownDescription": "Interruptible is used to indicate that a job should be canceled if made redundant by a newer pipeline run. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#interruptible).", "default": false }, "inputs": { "markdownDescription": "Used to pass input values to included templates or components. [Learn More](https://docs.gitlab.com/ee/ci/yaml/includes.html#set-input-parameter-values-with-includeinputs).", "type": "object" }, "job": { "allOf": [ { "$ref": "#/definitions/job_template" } ] }, "job_template": { "type": "object", "additionalProperties": false, "properties": { "image": { "$ref": "#/definitions/image" }, "services": { "$ref": "#/definitions/services" }, "before_script": { "$ref": "#/definitions/before_script" }, "after_script": { "$ref": "#/definitions/after_script" }, "hooks": { "$ref": "#/definitions/hooks" }, "rules": { "$ref": "#/definitions/rules" }, "variables": { "$ref": "#/definitions/jobVariables" }, "cache": { "$ref": "#/definitions/cache" }, "id_tokens": { "$ref": "#/definitions/id_tokens" }, "secrets": { "$ref": "#/definitions/secrets" }, "script": { "markdownDescription": "Shell scripts executed by the Runner. The only required property of jobs. Be careful with special characters (e.g. `:`, `{`, `}`, `&`) and use single or double quotes to avoid issues. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#script)", "oneOf": [ { "type": "string", "minLength": 1 }, { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "minItems": 1 } ] }, "stage": { "description": "Define what stage the job will run in.", "anyOf": [ { "type": "string", "minLength": 1 }, { "type": "array", "minLength": 1, "items": { "type": "string" } } ] }, "only": { "$ref": "#/definitions/filter", "description": "Job will run *only* when these filtering options match." }, "extends": { "description": "The name of one or more jobs to inherit configuration from.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" }, "minItems": 1 } ] }, "needs": { "description": "The list of jobs in previous stages whose sole completion is needed to start the current job.", "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "object", "additionalProperties": false, "properties": { "job": { "type": "string" }, "artifacts": { "type": "boolean" }, "optional": { "type": "boolean" }, "parallel": { "$ref": "#/definitions/parallel_matrix" } }, "required": [ "job" ] }, { "type": "object", "additionalProperties": false, "properties": { "pipeline": { "type": "string" }, "job": { "type": "string" }, "artifacts": { "type": "boolean" }, "parallel": { "$ref": "#/definitions/parallel_matrix" } }, "required": [ "job", "pipeline" ] }, { "type": "object", "additionalProperties": false, "properties": { "job": { "type": "string" }, "project": { "type": "string" }, "ref": { "type": "string" }, "artifacts": { "type": "boolean" }, "parallel": { "$ref": "#/definitions/parallel_matrix" } }, "required": [ "job", "project", "ref" ] } ] } }, "except": { "$ref": "#/definitions/filter", "description": "Job will run *except* for when these filtering options match." }, "tags": { "$ref": "#/definitions/tags" }, "allow_failure": { "$ref": "#/definitions/allow_failure" }, "timeout": { "$ref": "#/definitions/timeout" }, "when": { "$ref": "#/definitions/when" }, "start_in": { "$ref": "#/definitions/start_in" }, "dependencies": { "type": "array", "description": "Specify a list of job names from earlier stages from which artifacts should be loaded. By default, all previous artifacts are passed. Use an empty array to skip downloading artifacts.", "items": { "type": "string" } }, "artifacts": { "$ref": "#/definitions/artifacts" }, "environment": { "description": "Used to associate environment metadata with a deploy. Environment can have a name and URL attached to it, and will be displayed under /environments under the project.", "oneOf": [ { "type": "string" }, { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the environment, e.g. 'qa', 'staging', 'production'.", "minLength": 1 }, "url": { "type": "string", "description": "When set, this will expose buttons in various places for the current environment in Gitlab, that will take you to the defined URL.", "format": "uri", "pattern": "^(https?://.+|\\$[A-Za-z]+)" }, "on_stop": { "type": "string", "description": "The name of a job to execute when the environment is about to be stopped." }, "action": { "enum": [ "start", "prepare", "stop", "verify", "access" ], "description": "Specifies what this job will do. 'start' (default) indicates the job will start the deployment. 'prepare'/'verify'/'access' indicates this will not affect the deployment. 'stop' indicates this will stop the deployment.", "default": "start" }, "auto_stop_in": { "type": "string", "description": "The amount of time it should take before Gitlab will automatically stop the environment. Supports a wide variety of formats, e.g. '1 week', '3 mins 4 sec', '2 hrs 20 min', '2h20min', '6 mos 1 day', '47 yrs 6 mos and 4d', '3 weeks and 2 days'." }, "kubernetes": { "type": "object", "description": "Used to configure the kubernetes deployment for this environment. This is currently not supported for kubernetes clusters that are managed by Gitlab.", "properties": { "namespace": { "type": "string", "description": "The kubernetes namespace where this environment should be deployed to.", "minLength": 1 } } }, "deployment_tier": { "type": "string", "description": "Explicitly specifies the tier of the deployment environment if non-standard environment name is used.", "enum": [ "production", "staging", "testing", "development", "other" ] } }, "required": [ "name" ] } ] }, "release": { "type": "object", "description": "Indicates that the job creates a Release.", "additionalProperties": false, "properties": { "tag_name": { "type": "string", "description": "The tag_name must be specified. It can refer to an existing Git tag or can be specified by the user.", "minLength": 1 }, "tag_message": { "type": "string", "description": "Message to use if creating a new annotated tag." }, "description": { "type": "string", "description": "Specifies the longer description of the Release.", "minLength": 1 }, "name": { "type": "string", "description": "The Release name. If omitted, it is populated with the value of release: tag_name." }, "ref": { "type": "string", "description": "If the release: tag_name doesn’t exist yet, the release is created from ref. ref can be a commit SHA, another tag name, or a branch name." }, "milestones": { "type": "array", "description": "The title of each milestone the release is associated with.", "items": { "type": "string" } }, "released_at": { "type": "string", "description": "The date and time when the release is ready. Defaults to the current date and time if not defined. Should be enclosed in quotes and expressed in ISO 8601 format.", "format": "date-time", "pattern": "^(?:[1-9]\\d{3}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1\\d|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[1-9]\\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-02-29)T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:Z|[+-][01]\\d:[0-5]\\d)$" }, "assets": { "type": "object", "additionalProperties": false, "properties": { "links": { "type": "array", "description": "Include asset links in the release.", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the link.", "minLength": 1 }, "url": { "type": "string", "description": "The URL to download a file.", "minLength": 1 }, "filepath": { "type": "string", "description": "The redirect link to the url." }, "link_type": { "type": "string", "description": "The content kind of what users can download via url.", "enum": [ "runbook", "package", "image", "other" ] } }, "required": [ "name", "url" ] }, "minItems": 1 } }, "required": [ "links" ] } }, "required": [ "tag_name", "description" ] }, "coverage": { "type": "string", "description": "Must be a regular expression, optionally but recommended to be quoted, and must be surrounded with '/'. Example: '/Code coverage: \\d+\\.\\d+/'", "format": "regex", "pattern": "^/.+/$" }, "retry": { "$ref": "#/definitions/retry" }, "parallel": { "$ref": "#/definitions/parallel" }, "interruptible": { "$ref": "#/definitions/interruptible" }, "resource_group": { "type": "string", "description": "Limit job concurrency. Can be used to ensure that the Runner will not run certain jobs simultaneously." }, "trigger": { "markdownDescription": "Trigger allows you to define downstream pipeline trigger. When a job created from trigger definition is started by GitLab, a downstream pipeline gets created. [Learn More](https://docs.gitlab.com/ee/ci/yaml/index.html#trigger).", "oneOf": [ { "type": "object", "markdownDescription": "Trigger a multi-project pipeline. [Learn More](https://docs.gitlab.com/ee/ci/pipelines/multi_project_pipelines.html#specify-a-downstream-pipeline-branch).", "additionalProperties": false, "properties": { "project": { "description": "Path to the project, e.g. `group/project`, or `group/sub-group/project`.", "type": "string", "pattern": "(?:\\S/\\S|\\$\\S+)" }, "branch": { "description": "The branch name that a downstream pipeline will use", "type": "string" }, "strategy": { "description": "You can mirror the pipeline status from the triggered pipeline to the source bridge job by using strategy: depend", "type": "string", "enum": [ "depend" ] }, "forward": { "description": "Specify what to forward to the downstream pipeline.", "type": "object", "additionalProperties": false, "properties": { "yaml_variables": { "type": "boolean", "description": "Variables defined in the trigger job are passed to downstream pipelines.", "default": true }, "pipeline_variables": { "type": "boolean", "description": "Variables added for manual pipeline runs and scheduled pipelines are passed to downstream pipelines.", "default": false } } } }, "required": [ "project" ], "dependencies": { "branch": [ "project" ] } }, { "type": "object", "description": "Trigger a child pipeline. [Learn More](https://docs.gitlab.com/ee/ci/pipelines/parent_child_pipelines.html).", "additionalProperties": false, "properties": { "include": { "oneOf": [ { "description": "Relative path from local repository root (`/`) to the local YAML file to define the pipeline configuration.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" }, { "type": "array", "description": "References a local file or an artifact from another job to define the pipeline configuration.", "maxItems": 3, "items": { "oneOf": [ { "type": "object", "additionalProperties": false, "properties": { "local": { "description": "Relative path from local repository root (`/`) to the local YAML file to define the pipeline configuration.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" } } }, { "type": "object", "additionalProperties": false, "properties": { "template": { "description": "Name of the template YAML file to use in the pipeline configuration.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" } } }, { "type": "object", "additionalProperties": false, "properties": { "artifact": { "description": "Relative path to the generated YAML file which is extracted from the artifacts and used as the configuration for triggering the child pipeline.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" }, "job": { "description": "Job name which generates the artifact", "type": "string" } }, "required": [ "artifact", "job" ] }, { "type": "object", "additionalProperties": false, "properties": { "project": { "description": "Path to another private project under the same GitLab instance, like `group/project` or `group/sub-group/project`.", "type": "string", "pattern": "(?:\\S/\\S|\\$\\S+)" }, "ref": { "description": "Branch/Tag/Commit hash for the target project.", "minLength": 1, "type": "string" }, "file": { "description": "Relative path from repository root (`/`) to the pipeline configuration YAML file.", "type": "string", "format": "uri-reference", "pattern": "\\.ya?ml$" } }, "required": [ "project", "file" ] } ] } } ] }, "strategy": { "description": "You can mirror the pipeline status from the triggered pipeline to the source bridge job by using strategy: depend", "type": "string", "enum": [ "depend" ] }, "forward": { "description": "Specify what to forward to the downstream pipeline.", "type": "object", "additionalProperties": false, "properties": { "yaml_variables": { "type": "boolean", "description": "Variables defined in the trigger job are passed to downstream pipelines.", "default": true }, "pipeline_variables": { "type": "boolean", "description": "Variables added for manual pipeline runs and scheduled pipelines are passed to downstream pipelines.", "default": false } } } } }, { "markdownDescription": "Path to the project, e.g. `group/project`, or `group/sub-group/project`. [Learn More](https://docs.gitlab.com/ee/ci/yaml/index.html#trigger).", "type": "string", "pattern": "(?:\\S/\\S|\\$\\S+)" } ] }, "inherit": { "type": "object", "markdownDescription": "Controls inheritance of globally-defined defaults and variables. Boolean values control inheritance of all default: or variables: keywords. To inherit only a subset of default: or variables: keywords, specify what you wish to inherit. Anything not listed is not inherited. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#inherit).", "properties": { "default": { "markdownDescription": "Whether to inherit all globally-defined defaults or not. Or subset of inherited defaults. [Learn more](https://docs.gitlab.com/ee/ci/yaml/#inheritdefault).", "oneOf": [ { "type": "boolean" }, { "type": "array", "items": { "type": "string", "enum": [ "after_script", "artifacts", "before_script", "cache", "image", "interruptible", "retry", "services", "tags", "timeout" ] } } ] }, "variables": { "markdownDescription": "Whether to inherit all globally-defined variables or not. Or subset of inherited variables. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#inheritvariables).", "oneOf": [ { "type": "boolean" }, { "type": "array", "items": { "type": "string" } } ] } }, "additionalProperties": false }, "publish": { "description": "A path to a directory that contains the files to be published with Pages", "type": "string" } }, "oneOf": [ { "properties": { "when": { "enum": [ "delayed" ] } }, "required": [ "when", "start_in" ] }, { "properties": { "when": { "not": { "enum": [ "delayed" ] } } } } ] }, "tags": { "type": "array", "minLength": 1, "markdownDescription": "Used to select runners from the list of available runners. A runner must have all tags listed here to run the job. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#tags).", "items": { "anyOf": [ { "type": "string", "minLength": 1 }, { "type": "array", "minLength": 1, "items": { "type": "string" } } ] } }, "hooks": { "type": "object", "markdownDescription": "Specifies lists of commands to execute on the runner at certain stages of job execution. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#hooks).", "properties": { "pre_get_sources_script": { "markdownDescription": "Specifies a list of commands to execute on the runner before updating the Git repository and any submodules. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#hookspre_get_sources_script).", "oneOf": [ { "type": "string", "minLength": 1 }, { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "minItems": 1 } ] } }, "additionalProperties": false } } }
ci
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "User configuration", "properties": { "name": { "propertyOrder": 10, "title": "Name", "type": "string" }, "password": { "propertyOrder": 20, "title": "Password", "type": "string" }, "passwordHash": { "propertyOrder": 21, "title": "Password hash", "type": "string" }, "roles": { "propertyOrder": 35, "title": "Roles, comma-separated", "type": "string" } }, "additionalProperties": false }
o47924
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "accepted": { "type": "boolean" }, "orgId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }
o9941
{ "description": "APIResource specifies the name of a resource and whether it is namespaced.", "properties": { "categories": { "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "group": { "description": "group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".", "type": [ "string", "null" ] }, "kind": { "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", "type": [ "string", "null" ] }, "name": { "description": "name is the plural name of the resource.", "type": [ "string", "null" ] }, "namespaced": { "description": "namespaced indicates if a resource is namespaced or not.", "type": [ "boolean", "null" ] }, "shortNames": { "description": "shortNames is a list of suggested short names of the resource.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "singularName": { "description": "singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.", "type": [ "string", "null" ] }, "storageVersionHash": { "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.", "type": [ "string", "null" ] }, "verbs": { "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "version": { "description": "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".", "type": [ "string", "null" ] } }, "required": [ "name", "singularName", "namespaced", "kind", "verbs" ], "type": "object" }
kb_21_Normalized
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "length": { "description": "The length of a rectangle", "type": "number" }, "radius": { "description": "The radius of a circle", "type": "number" }, "side_length": { "description": "The side length of a square", "type": "number" }, "width": { "description": "The width of a rectangle", "type": "number" } }, "required": [ "side_length" ], "type": "object" }, "shape": { "description": "The shape for which the area is to be calculated", "enum": [ "square", "rectangle", "circle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_c25c3534
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": [ "string", "null" ] }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": [ "string", "null" ] } }, "required": [ "resource" ], "type": "object" }
kb_828_Normalized
{ "properties": { "date": { "description": "The date of the event", "format": "date", "type": "string" }, "end_time": { "description": "The end time of the event", "format": "time", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event", "format": "time", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "date", "start_time", "end_time" ], "type": "object" }
create_calendar_event_bebc1b34
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "definitions": { "ContentSetting": { "type": "object", "properties": { "clear": { "instanceof": "function" }, "get": { "instanceof": "function" }, "getResourceIdentifiers": { "instanceof": "function" }, "set": { "instanceof": "function" } }, "required": [ "clear", "get", "getResourceIdentifiers", "set" ] }, "Event": { "type": "object", "properties": { "addListener": { "instanceof": "function" }, "addRules": { "instanceof": "function" }, "getRules": { "instanceof": "function" }, "hasListener": { "instanceof": "function" }, "hasListeners": { "instanceof": "function" }, "removeListener": { "instanceof": "function" }, "removeRules": { "instanceof": "function" } } }, "Setting": { "type": "object", "properties": { "clear": { "instanceof": "function" }, "get": { "instanceof": "function" }, "set": { "instanceof": "function" }, "onChange": { "$ref": "#/definitions/Event" } }, "required": [ "clear", "get", "set", "onChange" ] }, "StorageArea": { "type": "object", "properties": { "clear": { "instanceof": "function" }, "get": { "instanceof": "function" }, "getBytesInUse": { "instanceof": "function" }, "remove": { "instanceof": "function" }, "set": { "instanceof": "function" } }, "required": [ "clear", "get", "getBytesInUse", "remove", "set" ] } }, "type": "object", "properties": { "alarms": { "type": "object", "properties": { "clear": { "instanceof": "function" }, "clearAll": { "instanceof": "function" }, "create": { "instanceof": "function" }, "get": { "instanceof": "function" }, "getAll": { "instanceof": "function" } }, "required": [ "clear", "clearAll", "create", "get", "getAll" ] }, "browser": { "type": "object", "properties": { "openTab": { "instanceof": "function" } }, "required": [ "openTab" ] }, "bookmarks": { "type": "object", "properties": { "create": { "instanceof": "function" }, "get": { "instanceof": "function" }, "getChildren": { "instanceof": "function" }, "getRecent": { "instanceof": "function" }, "getSubTree": { "instanceof": "function" }, "getTree": { "instanceof": "function" }, "move": { "instanceof": "function" }, "remove": { "instanceof": "function" }, "removeTree": { "instanceof": "function" }, "search": { "instanceof": "function" }, "update": { "instanceof": "function" }, "onChanged": { "$ref": "#/definitions/Event" }, "onChildrenReordered": { "$ref": "#/definitions/Event" }, "onCreated": { "$ref": "#/definitions/Event" }, "onImportBegan": { "$ref": "#/definitions/Event" }, "onImportEnded": { "$ref": "#/definitions/Event" }, "onMoved": { "$ref": "#/definitions/Event" }, "onRemoved": { "$ref": "#/definitions/Event" } }, "required": [ "create", "get", "getChildren", "getRecent", "getSubTree", "getTree", "move", "remove", "removeTree", "search", "update", "onChanged", "onImportBegan", "onImportEnded", "onMoved", "onRemoved" ] }, "browserAction": { "type": "object", "properties": { "disable": { "instanceof": "function" }, "enable": { "instanceof": "function" }, "getBadgeBackgroundColor": { "instanceof": "function" }, "getPopup": { "instanceof": "function" }, "getTitle": { "instanceof": "function" }, "setIcon": { "instanceof": "function" }, "onClicked": { "$ref": "#/definitions/Event" } }, "required": [ "disable", "enable", "getBadgeBackgroundColor", "getPopup", "getTitle", "setIcon", "onClicked" ] }, "browsingData": { "type": "object", "properties": {}, "required": [] }, "contentSettings": { "type": "object", "properties": { "cookies": { "$ref": "#/definitions/ContentSetting" }, "images": { "$ref": "#/definitions/ContentSetting" }, "javascript": { "$ref": "#/definitions/ContentSetting" }, "notifications": { "$ref": "#/definitions/ContentSetting" }, "plugins": { "$ref": "#/definitions/ContentSetting" }, "popups": { "$ref": "#/definitions/ContentSetting" } }, "required": [ "cookies", "images", "javascript", "notifications", "plugins", "popups" ] }, "contextMenus": { "type": "object", "properties": { "create": { "instanceof": "function" }, "remove": { "instanceof": "function" }, "update": { "instanceof": "function" }, "onClicked": { "$ref": "#/definitions/Event" } }, "required": [ "create", "remove", "update", "onClicked" ] }, "cookies": { "type": "object", "properties": { "get": { "instanceof": "function" }, "getAll": { "instanceof": "function" }, "getAllCookieStores": { "instanceof": "function" }, "remove": { "instanceof": "function" }, "set": { "instanceof": "function" }, "onChanged": { "$ref": "#/definitions/Event" } }, "required": [ "get", "getAll", "getAllCookieStores", "remove", "set", "onChanged" ] }, "declarativeContent": { "type": "object", "properties": {}, "required": [] }, "desktopCapture": { "type": "object", "properties": {}, "required": [] }, "downloads": { "type": "object", "properties": { "acceptDanger": { "instanceof": "function" }, "cancel": { "instanceof": "function" }, "download": { "instanceof": "function" }, "drag": { "instanceof": "function" }, "erase": { "instanceof": "function" }, "getFileIcon": { "instanceof": "function" }, "open": { "instanceof": "function" }, "pause": { "instanceof": "function" }, "removeFile": { "instanceof": "function" }, "resume": { "instanceof": "function" }, "search": { "instanceof": "function" }, "setShelfEnabled": { "instanceof": "function" }, "show": { "instanceof": "function" }, "showDefaultFolder": { "instanceof": "function" }, "onChanged": { "$ref": "#/definitions/Event" }, "onCreated": { "$ref": "#/definitions/Event" }, "onErased": { "$ref": "#/definitions/Event" }, "onDeterminingFilename": { "$ref": "#/definitions/Event" } }, "required": [ "acceptDanger", "cancel", "download", "drag", "erase", "getFileIcon", "open", "pause", "removeFile", "resume", "search", "setShelfEnabled", "show", "showDefaultFolder", "onChanged", "onCreated", "onErased", "onDeterminingFilename" ] }, "extension": { "type": "object", "properties": { "getBackgroundPage": { "instanceof": "function" }, "getURL": { "instanceof": "function" }, "getViews": { "instanceof": "function" }, "isAllowedFileSchemeAccess": { "instanceof": "function" }, "isAllowedIncognitoAccess": { "instanceof": "function" }, "setUpdateUrlData": { "instanceof": "function" }, "sendRequest": { "instanceof": "function" }, "onRequest": { "$ref": "#/definitions/Event" }, "onRequestExternal": { "$ref": "#/definitions/Event" } }, "required": [ "getBackgroundPage", "getURL", "getViews", "isAllowedFileSchemeAccess", "isAllowedIncognitoAccess", "setUpdateUrlData" ] }, "fontSettings": { "type": "object", "properties": {}, "required": [] }, "gcm": { "type": "object", "properties": {}, "required": [] }, "history": { "type": "object", "properties": { "addUrl": { "instanceof": "function" }, "deleteAll": { "instanceof": "function" }, "deleteRange": { "instanceof": "function" }, "deleteUrl": { "instanceof": "function" }, "getVisits": { "instanceof": "function" }, "search": { "instanceof": "function" }, "onVisited": { "$ref": "#/definitions/Event" }, "onVisitRemoved": { "$ref": "#/definitions/Event" } }, "required": [ "addUrl", "deleteAll", "deleteRange", "deleteUrl", "getVisits", "search", "onVisited", "onVisitRemoved" ] }, "i18n": { "type": "object", "properties": {}, "required": [] }, "identity": { "type": "object", "properties": {}, "required": [] }, "idle": { "type": "object", "properties": {}, "required": [] }, "management": { "type": "object", "properties": {}, "required": [] }, "notifications": { "type": "object", "properties": { "clear": { "instanceof": "function" }, "create": { "instanceof": "function" }, "getAll": { "instanceof": "function" }, "getPermissionLevel": { "instanceof": "function" }, "update": { "instanceof": "function" }, "onClosed": { "$ref": "#/definitions/Event" }, "onClicked": { "$ref": "#/definitions/Event" }, "onButtonClicked": { "$ref": "#/definitions/Event" }, "onPermissionLevelChanged": { "$ref": "#/definitions/Event" }, "onShowSettings": { "$ref": "#/definitions/Event" } }, "required": [ "clear", "create", "getAll", "getPermissionLevel", "update", "onClosed", "onClicked", "onButtonClicked", "onPermissionLevelChanged", "onShowSettings" ] }, "omnibox": { "type": "object", "properties": {}, "required": [] }, "pageCapture": { "type": "object", "properties": {}, "required": [] }, "permissions": { "type": "object", "properties": { "contains": { "instanceof": "function" }, "getAll": { "instanceof": "function" }, "remove": { "instanceof": "function" }, "request": { "instanceof": "function" }, "onAdded": { "$ref": "#/definitions/Event" }, "onRemoved": { "$ref": "#/definitions/Event" } }, "required": [ "contains", "getAll", "remove", "request", "onAdded", "onRemoved" ] }, "power": { "type": "object", "properties": {}, "required": [] }, "privacy": { "type": "object", "properties": { "network": { "type": "object", "properties": { "networkPredictionEnabled": { "$ref": "#/definitions/Setting" } }, "required": [ "networkPredictionEnabled" ] }, "services": { "type": "object", "properties": { "alternateErrorPagesEnabled": { "$ref": "#/definitions/Setting" }, "autofillEnabled": { "$ref": "#/definitions/Setting" }, "safeBrowsingEnabled": { "$ref": "#/definitions/Setting" }, "searchSuggestEnabled": { "$ref": "#/definitions/Setting" }, "spellingServiceEnabled": { "$ref": "#/definitions/Setting" } }, "required": [ "alternateErrorPagesEnabled", "autofillEnabled", "safeBrowsingEnabled", "searchSuggestEnabled", "spellingServiceEnabled" ] }, "websites": { "type": "object", "properties": { "hyperlinkAuditingEnabled": { "$ref": "#/definitions/Setting" }, "referrersEnabled": { "$ref": "#/definitions/Setting" }, "thirdPartyCookiesAllowed": { "$ref": "#/definitions/Setting" } }, "required": [ "hyperlinkAuditingEnabled", "referrersEnabled", "thirdPartyCookiesAllowed" ] } }, "required": [ "network", "services", "websites" ] }, "proxy": { "type": "object", "properties": { "settings": { "$ref": "#/definitions/Setting" }, "onProxyError": { "$ref": "#/definitions/Event" } }, "required": [ "settings", "onProxyError" ] }, "runtime": { "type": "object", "properties": { "connect": { "instanceof": "function" }, "connectNative": { "instanceof": "function" }, "getBackgroundPage": { "instanceof": "function" }, "getManifest": { "instanceof": "function" }, "getPackageDirectoryEntry": { "instanceof": "function" }, "getPlatformInfo": { "instanceof": "function" }, "getURL": { "instanceof": "function" }, "id": { "type": "string" }, "reload": { "instanceof": "function" }, "requestUpdateCheck": { "instanceof": "function" }, "sendMessage": { "instanceof": "function" }, "sendNativeMessage": { "instanceof": "function" }, "onBrowserUpdateAvailable": { "$ref": "#/definitions/Event" }, "onConnect": { "$ref": "#/definitions/Event" }, "onConnectExternal": { "$ref": "#/definitions/Event" }, "onInstalled": { "$ref": "#/definitions/Event" }, "onMessage": { "$ref": "#/definitions/Event" }, "onMessageExternal": { "$ref": "#/definitions/Event" }, "onRestartRequired": { "$ref": "#/definitions/Event" }, "onStartup": { "$ref": "#/definitions/Event" }, "onSuspend": { "$ref": "#/definitions/Event" }, "onSuspendCanceled": { "$ref": "#/definitions/Event" }, "onUpdateAvailable": { "$ref": "#/definitions/Event" } }, "required": [ "connect", "connectNative", "getBackgroundPage", "getManifest", "getPackageDirectoryEntry", "getPlatformInfo", "getURL", "id", "reload", "requestUpdateCheck", "sendMessage", "sendNativeMessage", "onBrowserUpdateAvailable", "onConnect", "onConnectExternal", "onInstalled", "onStartup", "onSuspend", "onSuspendCanceled", "onUpdateAvailable" ] }, "sessions": { "type": "object", "properties": { "getDevices": { "instanceof": "function" }, "getRecentlyClosed": { "instanceof": "function" }, "restore": { "instanceof": "function" }, "onChanged": { "$ref": "#/definitions/Event" } }, "required": [ "getDevices", "getRecentlyClosed", "restore", "onChanged" ] }, "storage": { "type": "object", "properties": { "local": { "$ref": "#/definitions/StorageArea" }, "managed": { "$ref": "#/definitions/StorageArea" }, "sync": { "$ref": "#/definitions/StorageArea" } }, "required": [ "local", "managed", "sync" ] }, "tabCapture": { "type": "object", "properties": { "capture": { "instanceof": "function" }, "getCapturedTabs": { "instanceof": "function" }, "onStatusChanged": { "$ref": "#/definitions/Event" } }, "required": [ "capture", "getCapturedTabs", "onStatusChanged" ] }, "tabs": { "type": "object", "properties": { "captureVisibleTab": { "instanceof": "function" }, "connect": { "instanceof": "function" }, "create": { "instanceof": "function" }, "detectLanguage": { "instanceof": "function" }, "duplicate": { "instanceof": "function" }, "executeScript": { "instanceof": "function" }, "get": { "instanceof": "function" }, "getAllInWindow": { "instanceof": "function" }, "getCurrent": { "instanceof": "function" }, "getSelected": { "instanceof": "function" }, "highlight": { "instanceof": "function" }, "insertCSS": { "instanceof": "function" }, "move": { "instanceof": "function" }, "query": { "instanceof": "function" }, "remove": { "instanceof": "function" }, "reload": { "instanceof": "function" }, "sendMessage": { "instanceof": "function" }, "update": { "instanceof": "function" }, "onActivated": { "$ref": "#/definitions/Event" }, "onAttached": { "$ref": "#/definitions/Event" }, "onCreated": { "$ref": "#/definitions/Event" }, "onDetached": { "$ref": "#/definitions/Event" }, "onHighlighted": { "$ref": "#/definitions/Event" }, "onMoved": { "$ref": "#/definitions/Event" }, "onRemoved": { "$ref": "#/definitions/Event" }, "onUpdated": { "$ref": "#/definitions/Event" }, "onZoomChange": { "$ref": "#/definitions/Event" } }, "required": [ "captureVisibleTab", "connect", "create", "detectLanguage", "duplicate", "executeScript", "get", "getAllInWindow", "getCurrent", "getSelected", "highlight", "insertCSS", "move", "query", "remove", "reload", "sendMessage", "update", "onActivated", "onAttached", "onCreated", "onDetached", "onHighlighted", "onMoved", "onUpdated", "onZoomChange" ] }, "topSites": { "type": "object", "properties": {}, "required": [] }, "tts": { "type": "object", "properties": {}, "required": [] }, "ttsEngine": { "type": "object", "properties": {}, "required": [] }, "webNavigation": { "type": "object", "properties": {}, "required": [] }, "webRequest": { "type": "object", "properties": { "handlerBehaviorChanged": { "instanceof": "function" }, "onAuthRequired": { "$ref": "#/definitions/Event" }, "onBeforeRedirect": { "$ref": "#/definitions/Event" }, "onBeforeRequest": { "$ref": "#/definitions/Event" }, "onBeforeSendHeaders": { "$ref": "#/definitions/Event" }, "onCompleted": { "$ref": "#/definitions/Event" }, "onErrorOccurred": { "$ref": "#/definitions/Event" }, "onHeadersReceived": { "$ref": "#/definitions/Event" }, "onResponseStarted": { "$ref": "#/definitions/Event" }, "onSendHeaders": { "$ref": "#/definitions/Event" } }, "required": [ "handlerBehaviorChanged", "onAuthRequired", "onBeforeRedirect", "onBeforeRequest", "onBeforeSendHeaders", "onCompleted", "onErrorOccurred", "onHeadersReceived", "onResponseStarted", "onSendHeaders" ] }, "windows": { "type": "object", "properties": { "create": { "instanceof": "function" }, "get": { "instanceof": "function" }, "getAll": { "instanceof": "function" }, "getCurrent": { "instanceof": "function" }, "getLastFocused": { "instanceof": "function" }, "update": { "instanceof": "function" }, "onCreated": { "$ref": "#/definitions/Event" }, "onFocusChanged": { "$ref": "#/definitions/Event" }, "onRemoved": { "$ref": "#/definitions/Event" } }, "required": [ "create", "get", "getAll", "getCurrent", "getLastFocused", "update", "onCreated", "onFocusChanged", "onRemoved" ] } }, "required": [ "alarms", "bookmarks", "browserAction", "browsingData", "contentSettings", "contextMenus", "cookies", "declarativeContent", "desktopCapture", "downloads", "extension", "fontSettings", "gcm", "history", "i18n", "identity", "idle", "management", "notifications", "omnibox", "pageCapture", "permissions", "power", "privacy", "proxy", "runtime", "sessions", "storage", "tabCapture", "tabs", "topSites", "tts", "ttsEngine", "webNavigation", "webRequest", "windows" ] }
o80235
{ "additionalProperties": false, "definitions": { "backendType": { "additionalProperties": false, "properties": { "healthMonitors": { "items": { "$ref": "#/definitions/healthMonitorType" }, "type": "array" }, "serviceName": { "minLength": 1, "type": "string" }, "servicePort": { "$ref": "#/definitions/portType" } }, "required": [ "serviceName", "servicePort" ], "type": "object" }, "frontendIAppType": { "additionalProperties": false, "properties": { "iapp": { "minLength": 1, "type": "string" }, "iappOptions": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9_-]+$": { "minLength": 1, "type": "string" } }, "type": "object" }, "iappPoolMemberTable": { "additionalProperties": false, "properties": { "columns": { "items": { "oneOf": [ { "$ref": "#/definitions/iappAddressType" }, { "$ref": "#/definitions/iappPortType" }, { "$ref": "#/definitions/iappValueType" } ] }, "type": "array" }, "name": { "minLength": 1, "type": "string" } }, "required": [ "name", "columns" ], "type": "object" }, "iappTables": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9_-]+$": { "$ref": "#/definitions/iappTableType" } }, "type": "object" }, "iappVariables": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9_-]+$": { "minLength": 1, "type": "string" } }, "type": "object" }, "partition": { "minLength": 1, "type": "string" } }, "required": [ "partition", "iapp", "iappOptions", "iappVariables", "iappPoolMemberTable" ], "type": "object" }, "frontendVSType": { "additionalProperties": false, "properties": { "balance": { "enum": [ "dynamic-ratio-member", "dynamic-ratio-node", "fastest-app-response", "fastest-node", "least-connections-member", "least-connections-node", "least-sessions", "observed-member", "observed-node", "predictive-member", "predictive-node", "ratio-least-connections-member", "ratio-least-connections-node", "ratio-member", "ratio-node", "round-robin", "ratio-session", "weighted-least-connections-member", "weighted-least-connections-node" ], "type": "string" }, "mode": { "enum": [ "http", "tcp" ], "type": "string" }, "partition": { "minLength": 1, "type": "string" }, "sslProfile": { "$ref": "#/definitions/sslProfileType" }, "virtualAddress": { "$ref": "#/definitions/virtualAddressType" } }, "required": [ "partition", "virtualAddress" ], "type": "object" }, "healthMonitorType": { "additionalProperties": false, "properties": { "interval": { "maximum": 86400, "minimum": 1, "type": "integer" }, "protocol": { "enum": [ "http", "tcp" ], "type": "string" }, "send": { "minLength": 1, "type": "string" }, "timeout": { "maximum": 86400, "minimum": 1, "type": "integer" } }, "required": [ "protocol" ], "type": "object" }, "iappAddressType": { "additionalProperties": false, "properties": { "kind": { "enum": [ "IPAddress" ], "type": "string" }, "name": { "minLength": 1, "type": "string" } }, "required": [ "name", "kind" ], "type": "object" }, "iappPortType": { "additionalProperties": false, "properties": { "kind": { "enum": [ "Port" ], "type": "string" }, "name": { "minLength": 1, "type": "string" } }, "required": [ "name", "kind" ], "type": "object" }, "iappTableType": { "additionalProperties": false, "properties": { "columns": { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" }, "rows": { "items": { "items": { "type": "string" }, "type": "array" }, "type": "array" } }, "required": [ "columns", "rows" ], "type": "object" }, "iappValueType": { "additionalProperties": false, "properties": { "name": { "minLength": 1, "type": "string" }, "value": { "minLength": 1, "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "portType": { "maximum": 65535, "minimum": 1, "type": "integer" }, "sslProfileType": { "additionalProperties": false, "properties": { "f5ProfileName": { "minLength": 1, "type": "string" } }, "required": [ "f5ProfileName" ], "type": "object" }, "virtualAddressType": { "additionalProperties": false, "properties": { "bindAddr": { "anyOf": [ { "format": "ipv4" }, { "format": "ipv6" } ] }, "port": { "$ref": "#/definitions/portType" } }, "required": [ "bindAddr", "port" ], "type": "object" } }, "properties": { "virtualServer": { "additionalProperties": false, "properties": { "backend": { "$ref": "#/definitions/backendType" }, "frontend": { "oneOf": [ { "$ref": "#/definitions/frontendIAppType" }, { "$ref": "#/definitions/frontendVSType" } ] } }, "required": [ "backend", "frontend" ], "type": "object" } }, "required": [ "virtualServer" ], "type": "object" }
o76577
{ "additionalProperties": false, "description": "Options for Bazel Builder", "properties": { "bazelCommand": { "description": "Common commands supported by Bazel.", "enum": [ "run", "build", "test" ], "type": "string" }, "leaveBazelFilesOnDisk": { "default": false, "description": "If true, leave Bazel files on disk after running command.", "type": "boolean" }, "targetLabel": { "description": "Target to be executed under Bazel.", "type": "string" }, "watch": { "default": false, "description": "If true, watch the filesystem using ibazel.", "type": "boolean" } }, "required": [ "targetLabel", "bazelCommand" ], "title": "Bazel builder schema", "type": "object" }
o85086
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "sandbox_id": { "description": "A unique identifier for the sandbox.", "type": "string" }, "uri": { "description": "The URI of the sandbox.", "type": "string", "format": "uri" }, "checksums": { "description": "A hash where each key is one of the checksums that you are willing to upload", "patternProperties": { "[0-9a-f]{32}": { "type": "object", "properties": { "url": { "description": "The URL the file should be uploaded to. Only specified if needs_upload is true.", "type": "string", "format": "uri" }, "needs_upload": { "description": "true if the checksum is not already on the server; false if it is.", "type": "boolean" } }, "required": [ "needs_upload" ] } } } } }
o78130
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "type": "object", "properties": { "id": { "type": "string" }, "apps": { "type": "array", "items": { "type": "object", "properties": {} } }, "groups": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "apps": { "type": "array", "items": {} }, "groups": { "type": "array", "items": {} }, "dependencies": { "type": "array", "items": {} }, "version": { "type": "string" } } } }, "dependencies": { "type": "array", "items": {} }, "version": { "type": "string" } } }
o9187
{ "properties": { "end_time": { "description": "The end time of the event in YYYY-MM-DD HH:MM format", "type": "string" }, "event_title": { "description": "The title of the event", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event in YYYY-MM-DD HH:MM format", "type": "string" } }, "required": [ "event_title", "start_time", "end_time" ], "type": "object" }
create_calendar_event_a287ef57
{ "additionalProperties": true, "properties": { "category": { "items": { "type": "string" }, "type": [ "array", "string" ] }, "email": { "type": "string" }, "reason": { "type": "string" }, "sg_event_id": { "type": "string" }, "sg_message_id": { "type": "string" }, "smtp-id": { "type": "string" }, "status": { "type": "string" }, "timestamp": { "_format": "date-time", "type": "string" } }, "self": { "format": "jsonschema", "name": "dropped", "vendor": "com.sendgrid", "version": "1-0-0" }, "type": "object" }
sp_186_Normalized
{ "additionalProperties": false, "description": "Schema for a web page context", "properties": { "basisForProcessing": { "description": "GDPR basis for data collection & processing", "enum": [ "consent", "contract", "legal_obligation", "vital_interests", "public_task", "legitimate_interests" ], "type": "string" }, "documentDescription": { "description": "Description of document detailing basis for processing", "maxLength": 4096, "type": [ "string", "null" ] }, "documentId": { "description": "ID for document detailing basis for processing", "maxLength": 255, "type": [ "string", "null" ] }, "documentVersion": { "description": "Version of document detailing basis for processing", "maxLength": 16, "type": [ "string", "null" ] } }, "required": [ "basisForProcessing" ], "self": { "format": "jsonschema", "name": "gdpr", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_287_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "description": "Models a auxiliary used in targeting a piece of content.", "properties": { "_id": { "description": "The unique identifier for this auxiliary.", "type": "string" }, "name": { "description": "The general name for this auxiliary.", "type": "string" }, "uid": { "description": "A short identifier for this auxiliary. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "uid" ], "title": "Auxiliary", "type": "object" }
wp_106_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "default": { "navigationFallback": { "rewrite": "/index.html" } }, "definitions": { "route": { "type": "object", "required": ["route"], "properties": { "route": { "type": "string", "description": "Request route pattern to match. May contain valid wildcards. See documentation: https://aka.ms/swa/config-schema" }, "methods": { "type": "array", "description": "Request method(s) to match", "items": { "anyOf": [ { "type": "string", "enum": [ "GET", "HEAD", "POST", "PUT", "DELETE", "PATCH", "CONNECT", "OPTIONS", "TRACE" ] } ] } }, "allowedRoles": { "type": "array", "description": "Roles that are allowed to access this route. If not empty, only role(s) listed are authorized to access the route. Roles are only used for authorization; they are not used to evaluate whether the route matches the request.", "items": { "anyOf": [ { "type": "string", "examples": ["anonymous", "authenticated"] } ] } }, "headers": { "type": "object", "description": "Override any matching global headers", "additionalProperties": true }, "redirect": { "type": "string", "description": "Redirect to a relative or absolute path, or an external URI. Default status code is 302, override with 301." }, "statusCode": { "type": "integer", "description": "Status code override" }, "rewrite": { "type": "string", "description": "A path to rewrite the request route to" } }, "additionalProperties": false }, "auth": { "type": "object", "required": ["identityProviders"], "properties": { "rolesSource": { "type": "string", "description": "Route to API function for assigning roles. For example, \"/api/GetRoles\". See https://aka.ms/swa-roles-function" }, "identityProviders": { "type": "object", "properties": { "azureActiveDirectory": { "type": "object", "required": ["registration"], "properties": { "enabled": { "description": "<false> if the azureActiveDirectory provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": ["openIdIssuer", "clientSecretSettingName"], "properties": { "openIdIssuer": { "type": "string", "description": "The endpoint for the OpenID configuration of the AAD tenant" }, "clientIdSettingName": { "type": "string", "description": "The name of the application setting containing the Application (client) ID for the Azure AD app registration" }, "clientSecretSettingName": { "type": "string", "description": "The name of the application setting containing the client secret for the Azure AD app registration" } }, "additionalProperties": false }, "login": { "type": "object", "description": "", "properties": { "loginParameters": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "userDetailsClaim": { "type": "string", "description": "The name of the claim from which we should read user details" } }, "additionalProperties": false }, "apple": { "type": "object", "required": ["registration"], "properties": { "enabled": { "description": "<false> if the apple provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": ["clientSecretSettingName"], "properties": { "clientIdSettingName": { "type": "string", "description": "The name of the application setting containing the Client ID" }, "clientSecretSettingName": { "type": "string", "description": "The name of the application setting containing the Client Secret" } }, "additionalProperties": false }, "login": { "type": "object", "description": "", "properties": { "scopes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "userDetailsClaim": { "type": "string", "description": "The name of the claim from which we should read user details" } }, "additionalProperties": false }, "facebook": { "type": "object", "required": ["registration"], "properties": { "enabled": { "description": "<false> if the facebook provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": ["appSecretSettingName"], "properties": { "appIdSettingName": { "type": "string", "description": "The name of the application setting containing the App ID" }, "appSecretSettingName": { "type": "string", "description": "The name of the application setting containing the App Secret" } }, "additionalProperties": false }, "login": { "type": "object", "description": "", "properties": { "scopes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "userDetailsClaim": { "type": "string", "description": "The name of the claim from which we should read user details" } }, "additionalProperties": false }, "github": { "type": "object", "required": ["registration"], "properties": { "enabled": { "description": "<false> if the gitHub provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": ["clientSecretSettingName"], "properties": { "clientIdSettingName": { "type": "string", "description": "The name of the application setting containing the Client ID" }, "clientSecretSettingName": { "type": "string", "description": "The name of the application setting containing the Client Secret" } }, "additionalProperties": false }, "login": { "type": "object", "description": "", "properties": { "scopes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "userDetailsClaim": { "type": "string", "description": "The name of the claim from which we should read user details" } }, "additionalProperties": false }, "google": { "type": "object", "required": ["registration"], "properties": { "enabled": { "description": "<false> if the google provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": ["clientSecretSettingName"], "properties": { "clientIdSettingName": { "type": "string", "description": "The name of the application setting containing the Client ID" }, "clientSecretSettingName": { "type": "string", "description": "The name of the application setting containing the Client Secret" } }, "additionalProperties": false }, "login": { "type": "object", "description": "", "properties": { "scopes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "userDetailsClaim": { "type": "string", "description": "The name of the claim from which we should read user details" } }, "additionalProperties": false }, "twitter": { "type": "object", "required": ["registration"], "properties": { "enabled": { "description": "<false> if the twitter provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": ["consumerSecretSettingName"], "properties": { "consumerKeySettingName": { "type": "string", "description": "The name of the application setting containing the Consumer Key" }, "consumerSecretSettingName": { "type": "string", "description": "The name of the application setting containing the Consumer Secret" } }, "additionalProperties": false }, "userDetailsClaim": { "type": "string", "description": "The name of the claim from which we should read user details" } }, "additionalProperties": false }, "customOpenIdConnectProviders": { "type": "object", "patternProperties": { ".*": { "required": ["registration", "login"], "properties": { "enabled": { "description": "<false> if the custom OpenID Connect provider is not enabled, <true> otherwise", "type": "boolean", "default": true }, "registration": { "type": "object", "required": [ "clientCredential", "openIdConnectConfiguration" ], "properties": { "clientIdSettingName": { "type": "string", "description": "The name of the application setting containing the Client ID" }, "clientCredential": { "type": "object", "required": ["clientSecretSettingName"], "properties": { "clientSecretSettingName": { "type": "string", "description": "The name of the application setting containing the Client Secret" } } }, "openIdConnectConfiguration": { "type": "object", "properties": { "authorizationEndpoint": { "type": "string", "description": "The path to the authorization endpoint" }, "tokenEndpoint": { "type": "string", "description": "The path to the token endpoint" }, "issuer": { "type": "string", "description": "The path to the issuer endpoint" }, "certificationUri": { "type": "string", "description": "The path to the jwks uri" }, "wellKnownOpenIdConfiguration": { "type": "string", "description": "The path to the well known configuration endpoint" } } } }, "additionalProperties": false }, "login": { "type": "object", "description": "", "properties": { "nameClaimType": { "type": "string" }, "scopes": { "type": "array", "items": { "type": "string" } }, "loginParameterNames": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } }, "additionalProperties": false } } } }, "additionalProperties": false } }, "additionalProperties": false } }, "description": "Documentation: https://aka.ms/swa/config-schema", "id": "https://json.schemastore.org/staticwebapp.config.json", "properties": { "routes": { "type": "array", "description": "Route definitions to modify routing behavior", "default": [ { "route": "/example", "rewrite": "/example.html" } ], "items": { "examples": [ { "route": "/example", "rewrite": "/example.html" }, { "route": "/login", "redirect": "/.auth/login/github" } ], "anyOf": [ { "allOf": [ { "$ref": "#/definitions/route" } ] } ] } }, "navigationFallback": { "type": "object", "description": "A default file to return if the request does not match a resource", "default": { "rewrite": "/index.html" }, "required": ["rewrite"], "properties": { "rewrite": { "type": "string", "description": "The default file to return if the request does not match a resource", "default": "/index.html" }, "exclude": { "type": "array", "description": "Paths to exclude from the fallback route. May use valid wildcards. https://aka.ms/swa/config-schema", "examples": [["*.{jpg,gif,png}", "assets/*"]] } }, "additionalProperties": false }, "responseOverrides": { "type": "object", "description": "Custom error pages or redirects", "examples": [ { "404": { "rewrite": "/custom_404.html", "statusCode": 200 } } ], "propertyNames": { "pattern": "^\\d+$" }, "patternProperties": { ".*": { "oneOf": [ { "type": "object", "properties": { "redirect": { "type": "string", "description": "Redirect to a relative or absolute path, or an external URI. Default status code is 302, override with 301." }, "statusCode": { "type": "integer", "description": "Status code" }, "rewrite": { "type": "string", "description": "A path to rewrite the request route to" } } } ] } } }, "mimeTypes": { "type": "object", "description": "Custom mime types configuration", "default": {}, "examples": [ { ".config": "application/xml" } ], "patternProperties": { "^\\..+$": { "type": "string" } }, "additionalProperties": false }, "globalHeaders": { "type": "object", "description": "Default headers to set on all responses", "additionalProperties": true }, "auth": { "$ref": "#/definitions/auth" }, "networking": { "type": "object", "description": "Networking configuration", "properties": { "allowedIpRanges": { "type": "array", "description": "Restrict access to one or more IPv4 ranges. Supports CIDR notation (e.g., \"192.168.100.14/24\")", "items": { "type": "string" }, "examples": [["10.0.0.0/24", "192.1.1.1/10"]] } }, "additionalProperties": false }, "forwardingGateway": { "type": "object", "description": "Forwarding gateway configuration", "properties": { "allowedForwardedHosts": { "type": "array", "description": "The value of `X-Forwarded-Host` to allow to be used when generating redirect URLs", "items": { "type": "string" }, "examples": [ ["example.org", "www.example.org", "staging.example.org"] ] }, "requiredHeaders": { "type": "object", "description": "HTTP header name/value pairs that are required for access", "examples": [ { "X-Azure-FDID": "10dd26ef" } ], "additionalProperties": true } }, "additionalProperties": false }, "platform": { "type": "object", "description": "Platform configuration", "properties": { "apiRuntime": { "type": "string", "enum": [ "dotnet:3.1", "dotnet:6.0", "dotnet-isolated:6.0", "dotnet-isolated:7.0", "node:12", "node:14", "node:16", "node:18", "python:3.8", "python:3.9", "python:3.10" ], "description": "Language runtime for the managed functions API" } }, "additionalProperties": false }, "trailingSlash": { "type": "string", "enum": ["always", "never", "auto"], "description": "Trailing slash configuration" }, "$schema": { "type": "string", "default": "https://json.schemastore.org/staticwebapp.config.json", "description": "JSON schema" } }, "title": "Azure Static Web Apps configuration file", "type": "object" }
staticwebapp
{ "additionalProperties": false, "definitions": {}, "properties": { "Epf\u0414\u043b\u044f\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u0411\u0430\u0437\u044b": { "_$id": "/properties/Epf\u0414\u043b\u044f\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u0411\u0430\u0437\u044b", "default": "", "examples": [ "./tools/epf/init.epf" ], "title": "The Epf\u0434\u043b\u044f\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u0431\u0430\u0437\u044b Schema ", "type": "string" }, "StartFeaturePlayer": { "_$id": "/properties/StartFeaturePlayer", "default": false, "examples": [ false ], "title": "The Startfeatureplayer Schema ", "type": "boolean" }, "_$schema": { "default": "behavior-schema.json", "description": "Path of behavior-schema.json.", "id": "/properties/$schema", "title": "The $schema Schema", "type": "string" }, "\u0410\u0434\u0440\u0435\u0441\u041e\u0442\u043b\u0430\u0434\u0447\u0438\u043a\u0430": { "_$id": "/properties/\u0410\u0434\u0440\u0435\u0441\u041e\u0442\u043b\u0430\u0434\u0447\u0438\u043a\u0430", "default": "", "examples": [ "" ], "title": "The \u0410\u0434\u0440\u0435\u0441\u043e\u0442\u043b\u0430\u0434\u0447\u0438\u043a\u0430 Schema ", "type": "string" }, "\u0412\u0435\u0440\u0441\u0438\u044f\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b": { "_$id": "/properties/\u0412\u0435\u0440\u0441\u0438\u044f\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b", "default": "", "examples": [ "8.3.10" ], "title": "The \u0412\u0435\u0440\u0441\u0438\u044f\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Schema ", "type": "string" }, "\u0412\u0435\u0440\u0441\u0438\u044f\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b\u0414\u043b\u044f\u0413\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u0438EPF": { "_$id": "/properties/\u0412\u0435\u0440\u0441\u0438\u044f\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b\u0414\u043b\u044f\u0413\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u0438EPF", "default": "", "examples": [ "" ], "title": "The \u0412\u0435\u0440\u0441\u0438\u044f\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b\u0434\u043b\u044f\u0433\u0435\u043d\u0435\u0440\u0430\u0446\u0438\u0438epf Schema ", "type": "string" }, "\u0412\u044b\u0432\u043e\u0434\u0438\u0442\u044c\u0412\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435\u0428\u0430\u0433\u043e\u0432": { "_$id": "/properties/\u0412\u044b\u0432\u043e\u0434\u0438\u0442\u044c\u0412\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435\u0428\u0430\u0433\u043e\u0432", "default": false, "examples": [ false ], "title": "The \u0412\u044b\u0432\u043e\u0434\u0438\u0442\u044c\u0432\u043b\u043e\u0433\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435\u0448\u0430\u0433\u043e\u0432 Schema ", "type": "boolean" }, "\u0412\u044b\u0432\u043e\u0434\u0438\u0442\u044c\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0412\u0424\u0430\u0439\u043b": { "_$id": "/properties/\u0412\u044b\u0432\u043e\u0434\u0438\u0442\u044c\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0412\u0424\u0430\u0439\u043b", "default": "", "examples": [ "./ServiceBases/Messages 8.3.10 UF no sync.txt" ], "title": "The \u0412\u044b\u0432\u043e\u0434\u0438\u0442\u044c\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0432\u0444\u0430\u0439\u043b Schema ", "type": "string" }, "\u0412\u044b\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0421\u0442\u0430\u0442\u0443\u0441\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0412\u0424\u0430\u0439\u043b": { "_$id": "/properties/\u0412\u044b\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0421\u0442\u0430\u0442\u0443\u0441\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0412\u0424\u0430\u0439\u043b", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0412\u044b\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u0442\u0430\u0442\u0443\u0441\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0432\u0444\u0430\u0439\u043b Schema ", "type": "string" }, "\u0412\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044cPIDTestManager": { "_$id": "/properties/\u0412\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044cPIDTestManager", "default": false, "examples": [ false ], "title": "The \u0412\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044cpidtestmanager Schema ", "type": "boolean" }, "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438": { "_$id": "/properties/\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438 Schema ", "type": "string" }, "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438\u0421\u0422\u0435\u043a\u0443\u0449\u0435\u0433\u043e\u0428\u0430\u0433\u0430": { "_$id": "/properties/\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438\u0421\u0422\u0435\u043a\u0443\u0449\u0435\u0433\u043e\u0428\u0430\u0433\u0430", "default": false, "examples": [ false ], "title": "The \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438\u0441\u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e\u0448\u0430\u0433\u0430 Schema ", "type": "boolean" }, "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0428\u0430\u0433\u0438\u0410\u0441\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e": { "_$id": "/properties/\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0428\u0430\u0433\u0438\u0410\u0441\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e", "default": false, "examples": [ false ], "title": "The \u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0448\u0430\u0433\u0438\u0430\u0441\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e Schema ", "type": "boolean" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0412\u0416\u0420": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0412\u0416\u0420", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043b\u043e\u0433\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0432\u0436\u0440 Schema ", "type": "string" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0412\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0424\u0430\u0439\u043b": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0412\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0424\u0430\u0439\u043b", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043b\u043e\u0433\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432\u0432\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0444\u0430\u0439\u043b Schema ", "type": "string" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041b\u043e\u0433\u041e\u0448\u0438\u0431\u043e\u043a\u0412\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0424\u0430\u0439\u043b": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041b\u043e\u0433\u041e\u0448\u0438\u0431\u043e\u043a\u0412\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0424\u0430\u0439\u043b", "default": false, "examples": [ false ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043b\u043e\u0433\u043e\u0448\u0438\u0431\u043e\u043a\u0432\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439\u0444\u0430\u0439\u043b Schema ", "type": "boolean" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u0424\u043e\u0440\u043c\u0430\u0442\u0435CucumberJson": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u0424\u043e\u0440\u043c\u0430\u0442\u0435CucumberJson", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043e\u0442\u0447\u0435\u0442\u0432\u0444\u043e\u0440\u043c\u0430\u0442\u0435cucumberjson Schema ", "type": "string" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u0424\u043e\u0440\u043c\u0430\u0442\u0435jUnit": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u0424\u043e\u0440\u043c\u0430\u0442\u0435jUnit", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043e\u0442\u0447\u0435\u0442\u0432\u0444\u043e\u0440\u043c\u0430\u0442\u0435junit Schema ", "type": "string" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u0424\u043e\u0440\u043c\u0430\u0442\u0435\u0410\u043b\u043b\u044e\u0440": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u0424\u043e\u0440\u043c\u0430\u0442\u0435\u0410\u043b\u043b\u044e\u0440", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043e\u0442\u0447\u0435\u0442\u0432\u0444\u043e\u0440\u043c\u0430\u0442\u0435\u0430\u043b\u043b\u044e\u0440 Schema ", "type": "string" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u043e\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u043c\u0424\u043e\u0440\u043c\u0430\u0442\u0435": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u041e\u0442\u0447\u0435\u0442\u0412\u043e\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u043c\u0424\u043e\u0440\u043c\u0430\u0442\u0435", "default": false, "examples": [ false ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u043e\u0442\u0447\u0435\u0442\u0432\u043e\u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0435\u043c\u0444\u043e\u0440\u043c\u0430\u0442\u0435 Schema ", "type": "boolean" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u041f\u0440\u0438\u0412\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u041e\u0448\u0438\u0431\u043a\u0438": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u041f\u0440\u0438\u0412\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u041e\u0448\u0438\u0431\u043a\u0438", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u043f\u0440\u0438\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u043e\u0448\u0438\u0431\u043a\u0438 Schema ", "type": "string" }, "\u0414\u0435\u043b\u0430\u0442\u044c\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0422\u0440\u0430\u043d\u0441\u043b\u0438\u0442\u043e\u043c": { "_$id": "/properties/\u0414\u0435\u043b\u0430\u0442\u044c\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0422\u0440\u0430\u043d\u0441\u043b\u0438\u0442\u043e\u043c", "default": false, "examples": [ false ], "title": "The \u0414\u0435\u043b\u0430\u0442\u044c\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u0442\u0440\u0430\u043d\u0441\u043b\u0438\u0442\u043e\u043c Schema ", "type": "boolean" }, "\u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u041f\u043e\u0440\u0442\u043e\u0432Testclient": { "_$id": "/properties/\u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u041f\u043e\u0440\u0442\u043e\u0432Testclient", "default": "", "examples": [ "" ], "title": "The \u0414\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u043f\u043e\u0440\u0442\u043e\u0432testclient Schema ", "type": "string" }, "\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u041a\u0418\u043c\u0435\u043d\u0438\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u044f\u0423\u0441\u043b\u043e\u0432\u0438\u044f\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0438": { "_$id": "/properties/\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u041a\u0418\u043c\u0435\u043d\u0438\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u044f\u0423\u0441\u043b\u043e\u0432\u0438\u044f\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0438", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u043a\u0438\u043c\u0435\u043d\u0438\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f\u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0438 Schema ", "type": "string" }, "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b": { "_$id": "/properties/\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", "properties": { "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0424\u0438\u0447\u0414\u043b\u044fVBManager": { "_$id": "/properties/\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0424\u0438\u0447\u0414\u043b\u044fVBManager", "default": "", "examples": [ "$workspaceRoot/./features" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0444\u0438\u0447\u0434\u043b\u044fvbmanager Schema ", "type": "string" } }, "type": "object" }, "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c\u0420\u0430\u0431\u043e\u0442\u0443\u0421\u0438\u0441\u0442\u0435\u043c\u044b": { "_$id": "/properties/\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c\u0420\u0430\u0431\u043e\u0442\u0443\u0421\u0438\u0441\u0442\u0435\u043c\u044b", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c\u0440\u0430\u0431\u043e\u0442\u0443\u0441\u0438\u0441\u0442\u0435\u043c\u044b Schema ", "type": "string" }, "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438": { "_$id": "/properties/\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438", "default": false, "examples": [ false ], "title": "The \u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438 Schema ", "type": "boolean" }, "\u0417\u0430\u043a\u0440\u044b\u0442\u044cTestClient\u041f\u043e\u0441\u043b\u0435\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432": { "_$id": "/properties/\u0417\u0430\u043a\u0440\u044b\u0442\u044cTestClient\u041f\u043e\u0441\u043b\u0435\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0417\u0430\u043a\u0440\u044b\u0442\u044ctestclient\u043f\u043e\u0441\u043b\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0414\u0435\u043b\u0430\u0442\u044c\u041d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435TTS": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0414\u0435\u043b\u0430\u0442\u044c\u041d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435TTS", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u0434\u0435\u043b\u0430\u0442\u044c\u043d\u0430\u043b\u043e\u0436\u0435\u043d\u0438\u0435tts Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0418\u043c\u044fTTS": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0418\u043c\u044fTTS", "default": "", "examples": [ "Elena" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u0438\u043c\u044ftts Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0414\u043b\u044f\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445\u0424\u0430\u0439\u043b\u043e\u0432": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0414\u043b\u044f\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445\u0424\u0430\u0439\u043b\u043e\u0432", "default": "", "examples": [ "./tools/VideoTemp" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0434\u043b\u044f\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445\u0444\u0430\u0439\u043b\u043e\u0432 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u041c\u0443\u0437\u044b\u043a\u0438": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u041c\u0443\u0437\u044b\u043a\u0438", "default": "", "examples": [ "./tools/../../vanessa-ci/MakeVideoInstr/music" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043c\u0443\u0437\u044b\u043a\u0438 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u041a\u0430\u0434\u0440\u043e\u0432": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u041a\u0430\u0434\u0440\u043e\u0432", "default": "", "examples": [ "5" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u043a\u0430\u0434\u0440\u043e\u0432 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043c\u0430\u043d\u0434\u0430Convert": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043c\u0430\u043d\u0434\u0430Convert", "default": "", "examples": [ "c:/ProgramData/chocolatey/bin/convert.exe" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043a\u043e\u043c\u0430\u043d\u0434\u0430convert Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043c\u0430\u043d\u0434\u0430Ffmpeg": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043c\u0430\u043d\u0434\u0430Ffmpeg", "default": "", "examples": [ "ffmpeg" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043a\u043e\u043c\u0430\u043d\u0434\u0430ffmpeg Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043c\u0430\u043d\u0434\u0430\u041d\u0430\u0447\u0430\u0442\u044c\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041a\u043e\u043c\u0430\u043d\u0434\u0430\u041d\u0430\u0447\u0430\u0442\u044c\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e", "default": "", "examples": [ "\"C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe\" screen: // -I rc --rc-quiet --rc-host=127.0.0.1:8082 --nommx :screen-mouse-image=\"<screenmouseimage>\" :screen-fps=<fps> :screen-width=<screenwidth> :screen-height=<screenheight> :screen-top=0 :screen-left=0 :screen-caching=100 :sout=#transcode{vcodec=mp4v,vb=400,fps=<fps>,scale=1,width=<screenwidth>,height=<screenheight>,acodec=none}:duplicate{dst=std{access=file,mux=mp4,dst=<dst>}}" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043a\u043e\u043c\u0430\u043d\u0434\u0430\u043d\u0430\u0447\u0430\u0442\u044c\u0437\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c\u041a\u0443\u0440\u0441\u043e\u0440\u041c\u044b\u0448\u043a\u0438\u041a\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u043c\u0443\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u0443\u0424\u043e\u0440\u043c\u044b": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c\u041a\u0443\u0440\u0441\u043e\u0440\u041c\u044b\u0448\u043a\u0438\u041a\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u043c\u0443\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u0443\u0424\u043e\u0440\u043c\u044b", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0442\u044c\u043a\u0443\u0440\u0441\u043e\u0440\u043c\u044b\u0448\u043a\u0438\u043a\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u043c\u0443\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443\u0444\u043e\u0440\u043c\u044b Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041f\u043e\u0434\u0441\u0432\u0435\u0447\u0438\u0432\u0430\u0442\u044c\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b\u0424\u043e\u0440\u043c": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041f\u043e\u0434\u0441\u0432\u0435\u0447\u0438\u0432\u0430\u0442\u044c\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b\u0424\u043e\u0440\u043c", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043f\u043e\u0434\u0441\u0432\u0435\u0447\u0438\u0432\u0430\u0442\u044c\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b\u0444\u043e\u0440\u043c Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041f\u0443\u0442\u044c\u041a\u0414\u0432\u0438\u0436\u043a\u0443TTS": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u041f\u0443\u0442\u044c\u041a\u0414\u0432\u0438\u0436\u043a\u0443TTS", "default": "", "examples": [ "balcon" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u043f\u0443\u0442\u044c\u043a\u0434\u0432\u0438\u0436\u043a\u0443tts Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0421\u043b\u043e\u0432\u0430\u0440\u044c\u0417\u0430\u043c\u0435\u043d": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0421\u043b\u043e\u0432\u0430\u0440\u044c\u0417\u0430\u043c\u0435\u043d", "default": "", "examples": [ "./tools/VideoTools/libtts.txt" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u0441\u043b\u043e\u0432\u0430\u0440\u044c\u0437\u0430\u043c\u0435\u043d Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0421\u043b\u043e\u0432\u0430\u0440\u044c\u0417\u0430\u043c\u0435\u043d\u0421\u043f\u0438\u0441\u043e\u043a": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0421\u043b\u043e\u0432\u0430\u0440\u044c\u0417\u0430\u043c\u0435\u043d\u0421\u043f\u0438\u0441\u043e\u043a", "type": "array" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0424\u0430\u0439\u043b\u0412\u043e\u0434\u044f\u043d\u043e\u0439\u0417\u043d\u0430\u043a": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0424\u0430\u0439\u043b\u0412\u043e\u0434\u044f\u043d\u043e\u0439\u0417\u043d\u0430\u043a", "default": "", "examples": [ "./tools/VideoTools/logoSB.png" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0432\u043e\u0434\u044f\u043d\u043e\u0439\u0437\u043d\u0430\u043a Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0424\u0430\u0439\u043b\u041a\u0443\u0440\u0441\u043e\u0440\u0430\u041c\u044b\u0448\u043a\u0438": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u0424\u0430\u0439\u043b\u041a\u0443\u0440\u0441\u043e\u0440\u0430\u041c\u044b\u0448\u043a\u0438", "default": "", "examples": [ "./tools/VideoTools/mouse.png" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043a\u0443\u0440\u0441\u043e\u0440\u0430\u043c\u044b\u0448\u043a\u0438 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u042d\u043a\u0440\u0430\u043d\u0412\u044b\u0441\u043e\u0442\u0430": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u042d\u043a\u0440\u0430\u043d\u0412\u044b\u0441\u043e\u0442\u0430", "default": "", "examples": [ "1080" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u044d\u043a\u0440\u0430\u043d\u0432\u044b\u0441\u043e\u0442\u0430 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u042d\u043a\u0440\u0430\u043d\u0428\u0438\u0440\u0438\u043d\u0430": { "_$id": "/properties/\u0417\u0430\u043f\u0438\u0441\u044c\u0412\u0438\u0434\u0435\u043e\u042d\u043a\u0440\u0430\u043d\u0428\u0438\u0440\u0438\u043d\u0430", "default": "", "examples": [ "1920" ], "title": "The \u0417\u0430\u043f\u0438\u0441\u044c\u0432\u0438\u0434\u0435\u043e\u044d\u043a\u0440\u0430\u043d\u0448\u0438\u0440\u0438\u043d\u0430 Schema ", "type": "string" }, "\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0422\u0435\u0441\u0442\u041a\u043b\u0438\u0435\u043d\u0442\u0412\u0420\u0435\u0436\u0438\u043c\u0435\u041e\u0442\u043b\u0430\u0434\u043a\u0438": { "_$id": "/properties/\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0422\u0435\u0441\u0442\u041a\u043b\u0438\u0435\u043d\u0442\u0412\u0420\u0435\u0436\u0438\u043c\u0435\u041e\u0442\u043b\u0430\u0434\u043a\u0438", "default": false, "examples": [ false ], "title": "The \u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0442\u0435\u0441\u0442\u043a\u043b\u0438\u0435\u043d\u0442\u0432\u0440\u0435\u0436\u0438\u043c\u0435\u043e\u0442\u043b\u0430\u0434\u043a\u0438 Schema ", "type": "boolean" }, "\u0418\u043c\u044f\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\u041b\u043e\u0433\u041e\u0448\u0438\u0431\u043e\u043a": { "_$id": "/properties/\u0418\u043c\u044f\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\u041b\u043e\u0433\u041e\u0448\u0438\u0431\u043e\u043a", "default": "", "examples": [ "" ], "title": "The \u0418\u043c\u044f\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\u043b\u043e\u0433\u043e\u0448\u0438\u0431\u043e\u043a Schema ", "type": "string" }, "\u0418\u043c\u044f\u0421\u0431\u043e\u0440\u043a\u0438": { "_$id": "/properties/\u0418\u043c\u044f\u0421\u0431\u043e\u0440\u043a\u0438", "default": "", "examples": [ "8310UF" ], "title": "The \u0418\u043c\u044f\u0441\u0431\u043e\u0440\u043a\u0438 Schema ", "type": "string" }, "\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430PIDTestManager": { "_$id": "/properties/\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430PIDTestManager", "default": "", "examples": [ "" ], "title": "The \u0418\u043c\u044f\u0444\u0430\u0439\u043b\u0430pidtestmanager Schema ", "type": "string" }, "\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430\u0412\u043d\u0435\u0448\u043d\u0438\u0445\u041a\u043e\u043c\u0430\u043d\u0434\u0424\u0440\u0435\u0439\u043c\u0432\u043e\u0440\u043a\u0430": { "_$id": "/properties/\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430\u0412\u043d\u0435\u0448\u043d\u0438\u0445\u041a\u043e\u043c\u0430\u043d\u0434\u0424\u0440\u0435\u0439\u043c\u0432\u043e\u0440\u043a\u0430", "default": "", "examples": [ "" ], "title": "The \u0418\u043c\u044f\u0444\u0430\u0439\u043b\u0430\u0432\u043d\u0435\u0448\u043d\u0438\u0445\u043a\u043e\u043c\u0430\u043d\u0434\u0444\u0440\u0435\u0439\u043c\u0432\u043e\u0440\u043a\u0430 Schema ", "type": "string" }, "\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432": { "_$id": "/properties/\u0418\u043c\u044f\u0424\u0430\u0439\u043b\u0430\u041b\u043e\u0433\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432", "default": "", "examples": [ "$workspaceRoot/./ServiceBases/log.txt" ], "title": "The \u0418\u043c\u044f\u0444\u0430\u0439\u043b\u0430\u043b\u043e\u0433\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432 Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputAllure": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputAllure", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433outputallure Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputAllure\u0411\u0430\u0437\u043e\u0432\u044b\u0439": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputAllure\u0411\u0430\u0437\u043e\u0432\u044b\u0439", "default": "", "examples": [ "$workspaceRoot/./ServiceBases/allurereport" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433outputallure\u0431\u0430\u0437\u043e\u0432\u044b\u0439 Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputCucumberJson": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputCucumberJson", "default": "", "examples": [ "$workspaceRoot/./ServiceBases/cucumber" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433outputcucumberjson Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputjUnit": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433OutputjUnit", "default": "", "examples": [ "$workspaceRoot/./ServiceBases/junitreport" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433outputjunit Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044fHTML": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044fHTML", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433output\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044fhtml Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044fMarkdown": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044fMarkdown", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433output\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044fmarkdown Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u0412\u0438\u0434\u0435\u043e": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u0412\u0438\u0434\u0435\u043e", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433output\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u0432\u0438\u0434\u0435\u043e Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u044b": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433Output\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u044b", "default": "", "examples": [ "$workspaceRoot/./ServiceBases/ScreenShots" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433output\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u044b Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0418\u0441\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u043e\u0433\u043e\u0424\u0430\u0439\u043b\u0430": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0418\u0441\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u043e\u0433\u043e\u0424\u0430\u0439\u043b\u0430", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u0441\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u043e\u0433\u043e\u0444\u0430\u0439\u043b\u0430 Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u041f\u043e\u0438\u0441\u043a\u0430\u0412\u0435\u0440\u0441\u0438\u0438\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u041f\u043e\u0438\u0441\u043a\u0430\u0412\u0435\u0440\u0441\u0438\u0438\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b", "default": "", "examples": [ "C:\\Program Files (x86)\\1cv8" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433\u043f\u043e\u0438\u0441\u043a\u0430\u0432\u0435\u0440\u0441\u0438\u0438\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u041f\u0440\u043e\u0435\u043a\u0442\u0430": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u041f\u0440\u043e\u0435\u043a\u0442\u0430", "default": "", "examples": [ "" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433\u043f\u0440\u043e\u0435\u043a\u0442\u0430 Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0424\u0438\u0447": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0424\u0438\u0447", "default": "", "examples": [ "$workspaceRoot/./features" ], "title": "The \u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0444\u0438\u0447 Schema ", "type": "string" }, "\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a", "items": { "_$id": "/properties/\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a/items", "default": "", "examples": [ "$instrumentsRoot/./features/libraries" ], "title": "The 0th Schema ", "type": "string" }, "type": "array" }, "\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f", "items": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items", "properties": { "\u0410\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0421\u0442\u0440\u043e\u043a\u0443": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u0410\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0421\u0442\u0440\u043e\u043a\u0443", "default": "", "examples": [ "\u041b\u043e\u0436\u044c" ], "title": "The \u0410\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u0442\u0440\u043e\u043a\u0443 Schema ", "type": "string" }, "\u0414\u043e\u043f\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u0414\u043e\u043f\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", "default": "", "examples": [ "/N\u0410\u0434\u043c\u0438\u043d" ], "title": "The \u0414\u043e\u043f\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b Schema ", "type": "string" }, "\u0418\u043c\u044f": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u0418\u043c\u044f", "default": "", "examples": [ "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f" ], "title": "The \u0418\u043c\u044f Schema ", "type": "string" }, "\u0418\u043c\u044f\u041a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u0418\u043c\u044f\u041a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430", "default": "", "examples": [ "localhost" ], "title": "The \u0418\u043c\u044f\u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430 Schema ", "type": "string" }, "\u041f\u043e\u0440\u0442\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0422\u0435\u0441\u0442\u041a\u043b\u0438\u0435\u043d\u0442\u0430": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u041f\u043e\u0440\u0442\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0422\u0435\u0441\u0442\u041a\u043b\u0438\u0435\u043d\u0442\u0430", "default": "", "examples": [ "48000" ], "title": "The \u041f\u043e\u0440\u0442\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u0435\u0441\u0442\u043a\u043b\u0438\u0435\u043d\u0442\u0430 Schema ", "type": "string" }, "\u041f\u0443\u0442\u044c\u041a\u0418\u043d\u0444\u043e\u0431\u0430\u0437\u0435": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u041f\u0443\u0442\u044c\u041a\u0418\u043d\u0444\u043e\u0431\u0430\u0437\u0435", "default": "", "examples": [ "File=\"C:/Bases/MyBase\"" ], "title": "The \u041f\u0443\u0442\u044c\u043a\u0438\u043d\u0444\u043e\u0431\u0430\u0437\u0435 Schema ", "type": "string" }, "\u0422\u0438\u043f\u041a\u043b\u0438\u0435\u043d\u0442\u0430": { "_$id": "/properties/\u041a\u043b\u0438\u0435\u043d\u0442\u044b\u0422\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f/items/properties/\u0422\u0438\u043f\u041a\u043b\u0438\u0435\u043d\u0442\u0430", "default": "", "examples": [ "\u0422\u043e\u043d\u043a\u0438\u0439" ], "title": "The \u0422\u0438\u043f\u043a\u043b\u0438\u0435\u043d\u0442\u0430 Schema ", "type": "string" } }, "type": "object" }, "type": "array" }, "\u041a\u043b\u044e\u0447\u0438\u041e\u0442\u043b\u0430\u0434\u043a\u0438": { "_$id": "/properties/\u041a\u043b\u044e\u0447\u0438\u041e\u0442\u043b\u0430\u0434\u043a\u0438", "default": "", "examples": [ "" ], "title": "The \u041a\u043b\u044e\u0447\u0438\u043e\u0442\u043b\u0430\u0434\u043a\u0438 Schema ", "type": "string" }, "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u0421\u0435\u043a\u0443\u043d\u0434\u041f\u043e\u0438\u0441\u043a\u0430\u041e\u043a\u043d\u0430": { "_$id": "/properties/\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u0421\u0435\u043a\u0443\u043d\u0434\u041f\u043e\u0438\u0441\u043a\u0430\u041e\u043a\u043d\u0430", "default": "", "examples": [ "10" ], "title": "The \u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u0441\u0435\u043a\u0443\u043d\u0434\u043f\u043e\u0438\u0441\u043a\u0430\u043e\u043a\u043d\u0430 Schema ", "type": "string" }, "\u041a\u043e\u043c\u0430\u043d\u0434\u0430\u0421\u0434\u0435\u043b\u0430\u0442\u044c\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442": { "_$id": "/properties/\u041a\u043e\u043c\u0430\u043d\u0434\u0430\u0421\u0434\u0435\u043b\u0430\u0442\u044c\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442", "default": "", "examples": [ "\"C:\\Program Files (x86)\\IrfanView\\i_view32.exe\" /capture=1 /convert=" ], "title": "The \u041a\u043e\u043c\u0430\u043d\u0434\u0430\u0441\u0434\u0435\u043b\u0430\u0442\u044c\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442 Schema ", "type": "string" }, "\u041d\u043e\u043c\u0435\u0440\u0421\u0442\u0440\u043e\u043a\u0438\u0414\u043b\u044f\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0421\u0422\u0435\u043a\u0443\u0449\u0435\u0433\u043e\u0428\u0430\u0433\u0430\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u044f": { "_$id": "/properties/\u041d\u043e\u043c\u0435\u0440\u0421\u0442\u0440\u043e\u043a\u0438\u0414\u043b\u044f\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0421\u0422\u0435\u043a\u0443\u0449\u0435\u0433\u043e\u0428\u0430\u0433\u0430\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u044f", "default": "", "examples": [ "" ], "title": "The \u041d\u043e\u043c\u0435\u0440\u0441\u0442\u0440\u043e\u043a\u0438\u0434\u043b\u044f\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0441\u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e\u0448\u0430\u0433\u0430\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f Schema ", "type": "string" }, "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430\u041f\u0440\u0438\u0412\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u041e\u0448\u0438\u0431\u043a\u0438": { "_$id": "/properties/\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430\u041f\u0440\u0438\u0412\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u041e\u0448\u0438\u0431\u043a\u0438", "default": false, "examples": [ false ], "title": "The \u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430\u043f\u0440\u0438\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u043e\u0448\u0438\u0431\u043a\u0438 Schema ", "type": "boolean" }, "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0414\u043b\u044f\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u0411\u0430\u0437\u044b": { "_$id": "/properties/\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0414\u043b\u044f\u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u0411\u0430\u0437\u044b", "default": "", "examples": [ "./tools/epf/init.json" ], "title": "The \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b\u0434\u043b\u044f\u0438\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u0431\u0430\u0437\u044b Schema ", "type": "string" }, "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u041d\u043e\u043c\u0435\u0440\u0421\u0442\u0440\u043e\u043a\u0438\u0414\u0435\u0440\u0435\u0432\u0430\u041f\u0440\u0438\u0412\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u041e\u0448\u0438\u0431\u043a\u0438": { "_$id": "/properties/\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u041d\u043e\u043c\u0435\u0440\u0421\u0442\u0440\u043e\u043a\u0438\u0414\u0435\u0440\u0435\u0432\u0430\u041f\u0440\u0438\u0412\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u041e\u0448\u0438\u0431\u043a\u0438", "default": false, "examples": [ false ], "title": "The \u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c\u043d\u043e\u043c\u0435\u0440\u0441\u0442\u0440\u043e\u043a\u0438\u0434\u0435\u0440\u0435\u0432\u0430\u043f\u0440\u0438\u0432\u043e\u0437\u043d\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u0438\u043e\u0448\u0438\u0431\u043a\u0438 Schema ", "type": "boolean" }, "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f": { "_$id": "/properties/\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "default": false, "examples": [ false ], "title": "The \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Schema ", "type": "boolean" }, "\u041f\u0440\u0438\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044cPending\u041aFailed": { "_$id": "/properties/\u041f\u0440\u0438\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044cPending\u041aFailed", "default": false, "examples": [ false ], "title": "The \u041f\u0440\u0438\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044cpending\u043afailed Schema ", "type": "boolean" }, "\u041f\u0443\u0442\u044c\u041aVanessaBehavior": { "_$id": "/properties/\u041f\u0443\u0442\u044c\u041aVanessaBehavior", "default": "", "examples": [ "./bddRunner.epf" ], "title": "The \u041f\u0443\u0442\u044c\u043avanessabehavior Schema ", "type": "string" }, "\u041f\u0443\u0442\u044c\u041a\u0424\u0430\u0439\u043b\u0443\u0414\u043b\u044f\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0438\u0421\u0442\u0430\u0442\u0443\u0441\u0430\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432": { "_$id": "/properties/\u041f\u0443\u0442\u044c\u041a\u0424\u0430\u0439\u043b\u0443\u0414\u043b\u044f\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0438\u0421\u0442\u0430\u0442\u0443\u0441\u0430\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432", "default": "", "examples": [ "$workspaceRoot/./ServiceBases/BuildStatus.log" ], "title": "The \u041f\u0443\u0442\u044c\u043a\u0444\u0430\u0439\u043b\u0443\u0434\u043b\u044f\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0438\u0441\u0442\u0430\u0442\u0443\u0441\u0430\u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432 Schema ", "type": "string" }, "\u0421\u043d\u0438\u043c\u0430\u0442\u044c\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u041a\u0430\u0436\u0434\u043e\u0433\u043e\u041e\u043a\u043d\u04301\u0421": { "_$id": "/properties/\u0421\u043d\u0438\u043c\u0430\u0442\u044c\u0421\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u041a\u0430\u0436\u0434\u043e\u0433\u043e\u041e\u043a\u043d\u04301\u0421", "default": false, "examples": [ false ], "title": "The \u0421\u043d\u0438\u043c\u0430\u0442\u044c\u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u043a\u0430\u0436\u0434\u043e\u0433\u043e\u043e\u043a\u043d\u04301\u0441 Schema ", "type": "boolean" }, "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044eHTML": { "_$id": "/properties/\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044eHTML", "default": false, "examples": [ false ], "title": "The \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044ehtml Schema ", "type": "boolean" }, "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044eMarkdown": { "_$id": "/properties/\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044eMarkdown", "default": false, "examples": [ false ], "title": "The \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044emarkdown Schema ", "type": "boolean" }, "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044e\u0412\u0438\u0434\u0435\u043e": { "_$id": "/properties/\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044e\u0412\u0438\u0434\u0435\u043e", "default": false, "examples": [ false ], "title": "The \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044e\u0432\u0438\u0434\u0435\u043e Schema ", "type": "boolean" }, "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u041f\u043e\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0412\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0435Allure\u0414\u043b\u044f\u042d\u0442\u043e\u0439\u0421\u0431\u043e\u0440\u043a\u0438": { "_$id": "/properties/\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u041f\u043e\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0412\u041a\u0430\u0442\u0430\u043b\u043e\u0433\u0435Allure\u0414\u043b\u044f\u042d\u0442\u043e\u0439\u0421\u0431\u043e\u0440\u043a\u0438", "default": "", "examples": [ "\u0418\u0441\u0442\u0438\u043d\u0430" ], "title": "The \u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u043f\u043e\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0432\u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0435allure\u0434\u043b\u044f\u044d\u0442\u043e\u0439\u0441\u0431\u043e\u0440\u043a\u0438 Schema ", "type": "string" }, "\u0421\u043f\u0438\u0441\u043e\u043a\u0422\u0435\u0433\u043e\u0432\u0418\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435": { "_$id": "/properties/\u0421\u043f\u0438\u0441\u043e\u043a\u0422\u0435\u0433\u043e\u0432\u0418\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", "items": { "_$id": "/properties/\u0421\u043f\u0438\u0441\u043e\u043a\u0422\u0435\u0433\u043e\u0432\u0418\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435/items", "default": "", "examples": [ "IgnoreOnCIMainBuild", "IgnoreOn8310", "IgnoreOnUFBuilds", "Ignore", "Video" ], "title": "The 0th Schema ", "type": "string" }, "type": "array" }, "\u0421\u043f\u0438\u0441\u043e\u043a\u0422\u0435\u0433\u043e\u0432\u041e\u0442\u0431\u043e\u0440": { "_$id": "/properties/\u0421\u043f\u0438\u0441\u043e\u043a\u0422\u0435\u0433\u043e\u0432\u041e\u0442\u0431\u043e\u0440", "type": "array" }, "\u0421\u0442\u0440\u043e\u043a\u0430\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\u041a\u0411\u0430\u0437\u0435": { "_$id": "/properties/\u0421\u0442\u0440\u043e\u043a\u0430\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\u041a\u0411\u0430\u0437\u0435", "default": "", "examples": [ "/F./ServiceBases/v83ServiceBase8310" ], "title": "The \u0421\u0442\u0440\u043e\u043a\u0430\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\u043a\u0431\u0430\u0437\u0435 Schema ", "type": "string" }, "\u0422\u0430\u0439\u043c\u0430\u0443\u0442\u0417\u0430\u043f\u0443\u0441\u043a\u04301\u0421": { "_$id": "/properties/\u0422\u0430\u0439\u043c\u0430\u0443\u0442\u0417\u0430\u043f\u0443\u0441\u043a\u04301\u0421", "default": "", "examples": [ "25" ], "title": "The \u0422\u0430\u0439\u043c\u0430\u0443\u0442\u0437\u0430\u043f\u0443\u0441\u043a\u04301\u0441 Schema ", "type": "string" } }, "type": "object" }
o76155
{ "additionalProperties": false, "description": "Schema for a Google Analytics custom dimension entity", "properties": { "index": { "maximum": 200, "minimum": 1, "type": "integer" }, "value": { "maxLength": 150, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "custom_dimension", "vendor": "com.google.analytics.measurement-protocol", "version": "1-0-0" }, "type": "object" }
sp_41_Normalized
{ "additionalProperties": false, "description": "Schema for Vero email clicked", "properties": { "campaign": { "properties": { "id": { "maxLength": 255, "type": [ "string", "null" ] }, "name": { "maxLength": 255, "type": [ "string", "null" ] }, "permalink": { "maxLength": 255, "type": [ "string", "null" ] }, "subject": { "maxLength": 255, "type": [ "string", "null" ] }, "tags": { "maxLength": 255, "type": [ "string", "null" ] }, "trigger-event": { "maxLength": 255, "type": [ "string", "null" ] }, "type": { "maxLength": 255, "type": [ "string", "null" ] }, "variation": { "maxLength": 255, "type": [ "string", "null" ] } }, "type": "object" }, "clicked_at": { "_format": "date-time", "type": [ "string", "null" ] }, "event": { "properties": { "data": { "additionalProperties": true, "type": [ "object", "null" ] }, "name": { "maxLength": 255, "type": [ "string", "null" ] }, "triggered_at": { "_format": "date-time", "type": [ "string", "null" ] } }, "type": "object" }, "message_id": { "maxLength": 255, "type": [ "string", "null" ] }, "type": { "maxLength": 255, "type": [ "string", "null" ] }, "user": { "properties": { "email": { "_format": "email", "type": [ "string", "null" ] }, "id": { "maxLength": 255, "type": [ "string", "null" ] } }, "type": "object" }, "user_agent": { "maxLength": 255, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "clicked", "vendor": "com.getvero", "version": "1-0-0" }, "type": "object" }
sp_21_Normalized