json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "emailVerified": { "type": "boolean" }, "firstName": { "type": "string", "minLength": 1, "maxLength": 1024 }, "lastName": { "type": "string", "minLength": 1, "maxLength": 1024 }, "companyName": { "type": "string", "maxLength": 1024 }, "phoneNumber": { "type": "string", "maxLength": 1024 }, "location": { "type": "string", "maxLength": 1024 }, "url": { "type": "string", "maxLength": 1024 }, "twoFactorAuthEnabled": { "type": "boolean" }, "fullName": { "type": "string" }, "password": { "type": "string", "minLength": 8, "maxLength": 2048 }, "twoFactorCode": { "type": "string", "maxLength": 2048 } }, "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "passwordLastUpdated": { "type": "string", "format": "date-time" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "emailVerified": { "$ref": "#/definitions/emailVerified" }, "firstName": { "$ref": "#/definitions/firstName" }, "lastName": { "$ref": "#/definitions/lastName" }, "companyName": { "$ref": "#/definitions/companyName" }, "phoneNumber": { "$ref": "#/definitions/phoneNumber" }, "location": { "$ref": "#/definitions/location" }, "url": { "$ref": "#/definitions/url" }, "twoFactorAuthEnabled": { "$ref": "#/definitions/twoFactorAuthEnabled" }, "fullName": { "$ref": "#/definitions/fullName" }, "userId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "summary": { "type": "object", "properties": { "appCount": { "type": "number" }, "dashCount": { "type": "number" }, "orgCount": { "type": "number" } } } } }
o6230
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "gender": { "type": "string", "enum": [ "male", "female" ] } } }
o69512
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/document-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" } }, "launch_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "An optional reference to an image asset to use as the poster.", "pbj": { "type": "identifier", "rule": "single" } }, "fallback_src_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "For imported document blocks it may be necessary to store the old URL.", "pbj": { "type": "text", "rule": "single", "format": "url" } } }, "required": [ "node_ref" ], "additionalProperties": true }
o82647
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "org.eclipse.persistence.testing.jaxb.json.numbers.NumberHolder", "type": "object", "properties": { "numberHolder": { "type": "object", "properties": { "intTest": { "type": "integer" }, "integerTest": { "type": "integer" }, "bigDecimalTest": { "type": "number" }, "bigIntegerTest": { "type": "integer" }, "doubleTest": { "type": "number" }, "floatTest": { "type": "number" }, "shortTest": { "type": "number" }, "longTest": { "type": "number" }, "listIntegersTest": { "type": "array", "items": { "type": "integer" } }, "listNumbersTest": { "type": "array", "items": { "type": "object" } } }, "additionalProperties": false } } }
o42296
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Zenodo record", "description": "metadata record from Zenodo (datacite3)", "type": "object", "properties": { "authors": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "affiliations": { "type": "array", "items": { "type": "string" } }, "title": { "description": "the title of the work", "type": "string" }, "pubdate": { "description": "the publication date of the work", "type": "string" }, "source": { "description": "the publisher of this metadata", "type": "string" }, "keywords": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "abstract": { "description": "summary of the work", "type": "string" }, "references": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "properties": { "type": "object", "properties": { "DOI": { "type": "string" }, "PDF": { "type": "string" }, "OPEN": { "type": "number" }, "ELECTR": { "type": "string" } }, "required": [ "DOI" ] }, "bibcode": { "type": "string" } }, "required": [ "authors", "title", "pubdate", "properties" ], "additionalProperties": false }
o15330
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/imgur-post-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" } }, "id": { "type": "string", "pattern": "^[\\w\\/-]+$", "pbj": { "type": "string", "rule": "single" } }, "show_context": { "type": "boolean", "default": true, "description": "When true, shows the post details.", "pbj": { "type": "boolean", "rule": "single" } } }, "required": [ "id" ], "additionalProperties": true }
o82671
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "metadata_code_repository": { "type": "object", "description": "Code repository description", "properties": { "type": { "type": "string" }, "url": { "type": "string" } }, "required": [ "type", "url" ], "additionalProperties": false }, "npm_shrinkwrap": { "type": "object", "description": "npm-shrinkwrap description", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "npm_shrinkwrap_version": { "type": "string" }, "node_version": { "type": "string" }, "resolved_dependencies": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } }, "type": "object", "description": "Result of Mercator worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "npm_shrinkwrap": { "oneOf": [ { "$ref": "#/definitions/npm_shrinkwrap" }, { "type": "null" } ] }, "maintainers": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "contributors": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "author": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "bug_reporting": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "code_repository": { "oneOf": [ { "$ref": "#/definitions/metadata_code_repository" }, { "type": "null" } ] }, "declared_license": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "dependencies": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "description": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "devel_dependencies": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "engines": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "files": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "git_head": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "homepage": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "keywords": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "metadata": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "name": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "platform": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "readme": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "scripts": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "version": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "additionalProperties": false, "title": "metadata-v1-1-0" }
o60987
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of a triangle", "type": "number" }, "height": { "description": "The height of a triangle", "type": "number" }, "radius": { "description": "The radius of a circle", "type": "number" }, "side": { "description": "The length of a side (for square)", "type": "number" } }, "required": [ "side" ], "type": "object" }, "shape": { "description": "The type of shape (e.g., square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_47d9e5f7
{ "id": "http://datafactories.schema.management.azure.com/schemas/2015-09-01/Microsoft.DataFactory.LinkedService.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Microsoft.Azure.Management.DataFactories.Models.LinkedService", "description": "The data factory linkedService.", "type": "object", "required": [ "name", "properties" ], "properties": { "name": { "description": "Data factory linkedService name.", "type": "string", "maxLength": 260, "pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$" }, "properties": { "description": "Data factory linkedService properties.", "$ref": "#/definitions/linkedServicePropertiesTypes" }, "$schema": { "type": "string" } }, "additionalProperties": true, "definitions": { "linkedServiceProperties": { "title": "Microsoft.Azure.Management.DataFactories.Models.LinkedServiceProperties", "description": "Data factory linkedService properties.", "type": "object", "properties": { "description": { "description": "Data factory linkedService description.", "type": "string" }, "hubName": { "description": "The name of the Hub that this linked service belongs to.", "type": "string" } } }, "azureSqlDatabaseLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureSqlDatabaseLinkedService", "description": "Windows Azure SQL database.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureSqlDatabase" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString" ], "properties": { "connectionString": { "description": "The connection string.", "type": "string" } }, "additionalProperties": false } } }, "azureSqlDataWarehouseLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureSqlDataWarehouseLinkedService", "description": "Azure SQL data warehouse linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureSqlDW" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString" ], "properties": { "connectionString": { "description": "The connection string.", "type": "string" } }, "additionalProperties": false } } }, "linkedServicePropertiesTypes": { "type": "object", "required": [ "type", "typeProperties" ], "allOf": [ { "$ref": "#/definitions/linkedServiceProperties" }, { "oneOf": [ { "$ref": "#/definitions/azureSqlDatabaseLinkedService" }, { "$ref": "#/definitions/azureSqlDataWarehouseLinkedService" }, { "$ref": "#/definitions/azureStorageLinkedService" }, { "$ref": "#/definitions/azureStorageSasLinkedService" }, { "$ref": "#/definitions/azureSearchLinkedService" }, { "$ref": "#/definitions/azureBatchLinkedService" }, { "$ref": "#/definitions/documentDbLinkedService" }, { "$ref": "#/definitions/hdInsightLinkedService" }, { "$ref": "#/definitions/onPremisesFileServerLinkedService" }, { "$ref": "#/definitions/onPremisesSqlServerLinkedService" }, { "$ref": "#/definitions/onPremisesOracleLinkedService" }, { "$ref": "#/definitions/onPremisesMySqlLinkedService" }, { "$ref": "#/definitions/onPremisesPostgreSqlLinkedService" }, { "$ref": "#/definitions/onPremisesSybaseLinkedService" }, { "$ref": "#/definitions/onPremisesTeradataLinkedService" }, { "$ref": "#/definitions/onPremisesDb2LinkedService" }, { "$ref": "#/definitions/azureMLLinkedService" }, { "$ref": "#/definitions/hdInsightOnDemandLinkedService" }, { "$ref": "#/definitions/azureDataLakeStoreLinkedService" }, { "$ref": "#/definitions/azureDataLakeAnalyticsLinkedService" }, { "$ref": "#/definitions/onPremisesOdbcLinkedService" }, { "$ref": "#/definitions/hdfsLinkedService" }, { "$ref": "#/definitions/oDataLinkedService" }, { "$ref": "#/definitions/webLinkedService" }, { "$ref": "#/definitions/httpLinkedService" }, { "$ref": "#/definitions/onPremisesCassandraLinkedService" }, { "$ref": "#/definitions/onPremisesMongoDbLinkedService" }, { "$ref": "#/definitions/salesforceLinkedService" }, { "$ref": "#/definitions/awsAccessKeyLinkedService" }, { "$ref": "#/definitions/amazonRedshiftLinkedService" }, { "$ref": "#/definitions/ftpServerLinkedService" }, { "$ref": "#/definitions/sftpLinkedService" }, { "$ref": "#/definitions/customDataSourceLinkedService" } ] } ] }, "azureStorageLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureStorageLinkedService", "description": "The storage account linkedService.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureStorage" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString" ], "properties": { "connectionString": { "description": "The connection string.", "type": "string" } }, "additionalProperties": false } } }, "azureStorageSasLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureStorageSasLinkedService", "description": "Azure Storage SAS URI linked service. This linked service type can be used to provide restricted access to an Azure Storage resource using SAS URI.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureStorageSas" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "sasUri" ], "properties": { "sasUri": { "description": "SAS URI of the Azure Storage resource.", "type": "string" } }, "additionalProperties": false } } }, "azureBatchLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureBatchLinkedService", "description": "Azure Batch linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureBatch" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "accountName", "accessKey", "batchUri", "poolName", "linkedServiceName" ], "properties": { "accountName": { "description": "The Azure Batch account name.", "type": "string" }, "accessKey": { "description": "The Azure Batch account access key.", "type": "string" }, "batchUri": { "description": "The Azure Batch Uri.", "type": "string" }, "poolName": { "description": "The Azure Batch pool name.", "type": "string" }, "linkedServiceName": { "description": "The azure storage linked service name.", "type": "string" } }, "additionalProperties": false } } }, "azureSearchLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureSearchLinkedService", "description": "Windows Azure Search Service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureSearch" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "url", "key" ], "properties": { "url": { "description": "URL for Azure Search service.", "type": "string" }, "key": { "description": "Admin Key for Azure Search service", "type": "string" } }, "additionalProperties": false } } }, "documentDbLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.DocumentDbLinkedService", "description": "Windows Azure Document Database.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "DocumentDb" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString" ], "properties": { "connectionString": { "description": "The connection string.", "type": "string" } }, "additionalProperties": false } } }, "hDInsightSchemaGenerationProperties": { "title": "Microsoft.Azure.Management.DataFactories.Models.HDInsightSchemaGenerationProperties", "description": "Schema generation options for activities that execute against HDInsight clusters.", "type": "object", "properties": { "type": { "description": "The type of schema", "type": "string" }, "inputPartition": { "description": "Input partition option.", "type": "string" }, "alterSchema": { "description": "Flag to indicate if alter schema should be performed.", "type": "boolean" } }, "additionalProperties": false }, "hdInsightLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.HDInsightLinkedService", "description": "The properties for the HDInsight linkedService.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "HDInsight" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "clusterUri", "userName", "password" ], "properties": { "clusterUri": { "description": "HDInsight cluster URI.", "type": "string" }, "userName": { "description": "HDInsight cluster user name.", "type": "string" }, "password": { "description": "HDInsight cluster password.", "type": "string" }, "linkedServiceName": { "description": "Storage service name.", "type": "string" }, "hcatalogLinkedServiceName": { "description": "The name of Azure SQL linked service that point to the HCatalog database.", "type": "string" }, "schemaGeneration": { "description": "Define what options to use for generating/altering table for an input and output tables for an HDInsight activity.", "$ref": "#/definitions/hDInsightSchemaGenerationProperties" } }, "additionalProperties": false } } }, "onPremisesFileServerLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesFileServerLinkedService", "description": "An on-premises file system Linked Service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesFileServer" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "host", "gatewayName" ], "properties": { "host": { "description": "Host name of the server.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "userId": { "description": "UserID to logon the server.", "type": "string" }, "password": { "description": "Password to logon the server.", "type": "string" }, "encryptedCredential": { "description": "Encrypted credential which contains host, userId and password.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesSqlServerLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesSqlServerLinkedService", "description": "An on-premises SQL server database.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesSqlServer" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString", "gatewayName" ], "properties": { "connectionString": { "description": "The connection string.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "userName": { "description": "The on-premises Windows authentication user name.", "type": "string" }, "password": { "description": "The on-premises Windows authentication password.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesOracleLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesOracleLinkedService", "description": "An on-premises Oracle database.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesOracle" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString", "gatewayName" ], "properties": { "driverType": { "description": "The driver type for an on-premises Oracle server.", "type": "string", "enum": [ "Microsoft", "ODP" ] }, "connectionString": { "description": "The connection string.", "type": "string" }, "gatewayName": { "description": "The on-premises HDIS gateway name.", "type": "string" }, "userName": { "description": "The on-premises Windows authentication user name.", "type": "string" }, "password": { "description": "The on-premises Windows authentication password.", "type": "string" } }, "additionalProperties": false } } }, "customDataSourceLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.CustomDataSourceLinkedService", "description": "Custom linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "CustomDataSource" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object" } } }, "azureMLLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureMLLinkedService", "description": "Azure ML Web Service linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureML" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "mlEndpoint", "apiKey" ], "properties": { "mlEndpoint": { "description": "The Batch Execution REST URL for an Azure ML Web Service endpoint.", "type": "string" }, "apiKey": { "description": "The API key for accessing the Azure ML model endpoint.", "type": "string" }, "updateResourceEndpoint": { "description": "The Update Resource REST URL for an Azure ML Web Service endpoint.", "type": "string" }, "servicePrincipalId": { "description": "The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML web service.", "type": "string" }, "servicePrincipalKey": { "description": "The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML web service.", "type": "string" }, "tenant": { "description": "The name or ID of the tenant to which the service principal belongs.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesPostgreSqlLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesPostgreSqlLinkedService", "description": "Linked Service for PostgreSql data source.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesPostgreSql" ] }, "typeProperties": { "required": [ "server", "database", "authenticationType", "gatewayName" ], "properties": { "server": { "description": "Server name for connection.", "type": "string" }, "database": { "description": "Database name for connection.", "type": "string" }, "schema": { "description": "Schema name for connection.", "type": "string" }, "authenticationType": { "description": "AuthenticationType to be used for connection.", "type": "string" }, "username": { "description": "Username for authentication.", "type": "string" }, "password": { "description": "Password for authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encryptedCredential for authentication.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesMySqlLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesMySqlLinkedService", "description": "Linked Service for MySQL data source.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesMySql" ] }, "typeProperties": { "required": [ "server", "database", "authenticationType", "gatewayName" ], "properties": { "server": { "description": "Server name for connection.", "type": "string" }, "database": { "description": "Database name for connection.", "type": "string" }, "schema": { "description": "Schema name for connection.", "type": "string" }, "authenticationType": { "description": "AuthenticationType to be used for connection.", "type": "string" }, "username": { "description": "Username for authentication.", "type": "string" }, "password": { "description": "Password for authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encryptedCredential for authentication.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesTeradataLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesTeradataLinkedService", "description": "Linked Service for Teradata data source.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesTeradata" ] }, "typeProperties": { "required": [ "server", "authenticationType", "gatewayName" ], "properties": { "server": { "description": "Server name for connection.", "type": "string" }, "authenticationType": { "description": "AuthenticationType to be used for connection.", "type": "string" }, "username": { "description": "Username for authentication.", "type": "string" }, "password": { "description": "Password for authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encryptedCredential for authentication.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesDb2LinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesDb2LinkedService", "description": "Linked Service for DB2 data source.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesDb2" ] }, "typeProperties": { "required": [ "server", "database", "authenticationType", "gatewayName" ], "properties": { "server": { "description": "Server name for connection.", "type": "string" }, "database": { "description": "Database name for connection.", "type": "string" }, "schema": { "description": "Schema name for connection.", "type": "string" }, "authenticationType": { "description": "AuthenticationType to be used for connection.", "type": "string" }, "username": { "description": "Username for authentication.", "type": "string" }, "password": { "description": "Password for authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encryptedCredential for authentication.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesSybaseLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesSybaseLinkedService", "description": "Linked Service for Sybase data source.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesSybase" ] }, "typeProperties": { "required": [ "server", "database", "authenticationType", "gatewayName" ], "properties": { "server": { "description": "Server name for connection.", "type": "string" }, "database": { "description": "Database name for connection.", "type": "string" }, "schema": { "description": "Schema name for connection.", "type": "string" }, "authenticationType": { "description": "AuthenticationType to be used for connection.", "type": "string" }, "username": { "description": "Username for authentication.", "type": "string" }, "password": { "description": "Password for authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encryptedCredential for authentication.", "type": "string" } }, "additionalProperties": false } } }, "hdInsightOnDemandLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.HDInsightOnDemandLinkedService", "description": "The properties for the HDInsight linkedService.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "HDInsightOnDemand" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "clusterSize", "timeToLive", "linkedServiceName" ], "properties": { "version": { "description": "HDInsight version.", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "clusterType": { "description": "Gets or sets the flavor for the HDInsight cluster.", "type": "string" }, "clusterSize": { "description": "HDInsight cluster size.", "type": "integer" }, "timeToLive": { "description": "Time to live.", "type": "string", "pattern": "((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))" }, "linkedServiceName": { "description": "Storage service name.", "type": "string" }, "hiveCustomLibrariesContainer": { "description": "The name of the blob container that contains custom jar files for HIVE consumption.", "type": "string" }, "coreConfiguration": { "description": "Allows user to override default values for core configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "hBaseConfiguration": { "description": "Allows user to override default values for HBase configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "hdfsConfiguration": { "description": "Allows user to override default values for Hdfs configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "hiveConfiguration": { "description": "Allows user to override default values for HIVE configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "mapReduceConfiguration": { "description": "Allows user to override default values for mapreduce configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "oozieConfiguration": { "description": "Allows user to override default values for oozie configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "stormConfiguration": { "description": "Allows user to override default values for Storm configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "sparkConfiguration": { "description": "The Spark service configuration of this HDInsight cluster.", "type": "object", "additionalProperties": { "type": "string" } }, "yarnConfiguration": { "description": "Allows user to override default values for YARN configuration.", "type": "object", "additionalProperties": { "type": "string" } }, "additionalLinkedServiceNames": { "description": "Specify additional Azure storage accounts that need to be accessible from the cluster.", "type": "array", "items": { "type": "string" } }, "hcatalogLinkedServiceName": { "description": "The name of Azure SQL linked service that point to the HCatalog database.", "type": "string" }, "schemaGeneration": { "description": "Define what options to use for generating/altering table for an input and output tables for an HDInsight activity.", "$ref": "#/definitions/hDInsightSchemaGenerationProperties" }, "dataNodeSize": { "description": "Gets or sets the size of the Data Node.", "type": "string" }, "headNodeSize": { "description": "Gets or sets the size of the Head Node.", "type": "string" }, "zookeeperNodeSize": { "description": "Gets or sets the size of the Zookeeper Node.", "type": "string" }, "osType": { "description": "Gets or sets the type of operating system installed on cluster nodes.", "type": "string" }, "sshPassword": { "description": "Gets or sets SSH password.", "type": "string" }, "sshPublicKey": { "description": "Gets or sets the public key to be used for SSH.", "type": "string" }, "sshUserName": { "description": "Gets or sets SSH user name.", "type": "string" } }, "additionalProperties": false } } }, "azureDataLakeStoreLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureDataLakeStoreLinkedService", "description": "Azure Data Lake Store linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureDataLakeStore" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "dataLakeStoreUri" ], "properties": { "dataLakeStoreUri": { "description": "Data Lake Store service URI.", "type": "string" }, "authorization": { "description": "OAuth authorization that may be used by ADF to access resources on your behalf. Each authorization is unique and may only be used once.", "type": "string" }, "sessionId": { "description": "OAuth session ID from the oauth authorization session. Each session id is unique and may only be used once.", "type": "string" }, "servicePrincipalId": { "description": "The ID of the application used to authenticate against the Azure Data Lake Store account.", "type": "string" }, "servicePrincipalKey": { "description": "The Key of the application used to authenticate against the Azure Data Lake Store account.", "type": "string" }, "tenant": { "description": "The name or ID of the tenant to which the service principal belongs.", "type": "string" }, "accountName": { "description": "Data Lake Store account name.", "type": "string" }, "subscriptionId": { "description": "Data Lake Store account subscription ID (if different from Data Factory account).", "type": "string" }, "resourceGroupName": { "description": "Data Lake Store account resource group name (if different from Data Factory account).", "type": "string" } }, "additionalProperties": false } } }, "onPremisesCassandraLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesCassandraLinkedService", "description": "An on-premises Cassandra database.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesCassandra" ] }, "typeProperties": { "required": [ "host", "authenticationType", "gatewayName" ], "properties": { "host": { "description": "One or more IP addresses or host names of the Cassandra server. Specify a comma-separated list of IP addresses and/or host names if attempting to connect to multiple servers. Each server is a replica.", "type": "string" }, "port": { "description": "The TCP port number that the Cassandra server uses to listen for client connections. The default value is 9042.", "type": "integer", "minimum": 0 }, "authenticationType": { "description": "The authentication type to be used to connect to the Cassandra database. Must be Basic or Anonymous.", "type": "string" }, "username": { "description": "User name for Basic authentication.", "type": "string" }, "password": { "description": "Password for Basic authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Basic authentication.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesMongoDbLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesMongoDbLinkedService", "description": "An on-premises MongoDB database.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesMongoDb" ] }, "typeProperties": { "required": [ "server", "authenticationType", "gatewayName", "databaseName" ], "properties": { "server": { "description": "The IP address or server name of the MongoDB server.", "type": "string" }, "port": { "description": "The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017.", "type": "integer", "minimum": 0 }, "authenticationType": { "description": "The authentication type to be used to connect to the MongoDB database. Must be Basic or Anonymous.", "type": "string", "enum": [ "Basic", "Anonymous" ] }, "username": { "description": "User name for Basic authentication.", "type": "string" }, "password": { "description": "Password for Basic authentication.", "type": "string" }, "authSource": { "description": "The name of the MongoDB database that you want to use to check your credentials for authentication.", "type": "string" }, "databaseName": { "description": "The name of the MongoDB database that you want to access.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Basic authentication.", "type": "string" } }, "additionalProperties": false } } }, "azureDataLakeAnalyticsLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AzureDataLakeAnalyticsLinkedService", "description": "Azure Data Lake Analytics linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AzureDataLakeAnalytics" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "authorization", "sessionId", "accountName" ], "properties": { "authorization": { "description": "OAuth authorization that may be used by ADF to access resources on your behalf. Each authorization is unique and may only be used once.", "type": "string" }, "sessionId": { "description": "OAuth session ID from the oauth authorization session. Each session id is unique and may only be used once.", "type": "string" }, "dataLakeAnalyticsUri": { "description": "Data Lake Analytics service URI.", "type": "string" }, "accountName": { "description": "Data Lake Analytics account name.", "type": "string" }, "subscriptionId": { "description": "Data Lake Analytics account subscription ID (if different from Data Factory account).", "type": "string" }, "resourceGroupName": { "description": "Data Lake Analytics account resource group name (if different from Data Factory account).", "type": "string" } }, "additionalProperties": false } } }, "webLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.WebLinkedService", "description": "Web linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "Web" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "url", "authenticationType" ], "properties": { "url": { "description": "The URL of the web service endpoint, e.g. http://www.microsoft.com.", "type": "string" }, "authenticationType": { "description": "Type of authentication used to connect to the web table source. Possible values are: Anonymous and Basic.", "type": "string", "enum": [ "Basic", "Anonymous" ] }, "username": { "description": "User name for Basic authentication.", "type": "string" }, "password": { "description": "Password for Basic authentication.", "type": "string" }, "apiKey": { "description": "Deprecated. WebApi-based authentication is no longer supported.", "type": "string" } }, "additionalProperties": false } } }, "httpLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.HttpLinkedService", "description": "Linked service for an HTTP source.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "Http" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "url", "authenticationType" ], "properties": { "url": { "description": "The base URL of the HTTP endpoint, e.g. http://www.microsoft.com.", "type": "string" }, "authenticationType": { "description": "The authentication type to be used to connect to the HTTP server.", "type": "string", "enum": [ "Basic", "Anonymous", "Digest", "Windows", "ClientCertificate" ] }, "username": { "description": "User name for Basic, Digest, or Windows authentication.", "type": "string" }, "password": { "description": "Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.", "type": "string", "secureString": true }, "embeddedCertData": { "description": "Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified.", "type": "string" }, "certThumbprint": { "description": "Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Basic, Digest, Windows or ClientCertificate authentication.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "enableServerCertificateValidation": { "description": "If true, validate the HTTPS server SSL certificate. Default value is true.", "type": "boolean" } }, "additionalProperties": false } } }, "hdfsLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.HdfsLinkedService", "description": "Hadoop Distributed File System (HDFS) Linked Service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "Hdfs" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "url", "authenticationType", "gatewayName" ], "properties": { "url": { "description": "The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1.", "type": "string" }, "authenticationType": { "description": "Type of authentication used to connect to the HDFS. Possible values are: Anonymous, and Windows.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Windows authentication.", "type": "string" }, "userName": { "description": "User name for Windows authentication.", "type": "string" }, "password": { "description": "Password for Windows authentication.", "type": "string" } }, "additionalProperties": false } } }, "onPremisesOdbcLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.OnPremisesOdbcLinkedService", "description": "On-premises Open Database Connectivity (ODBC) Linked Service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OnPremisesOdbc" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "connectionString", "authenticationType", "gatewayName" ], "properties": { "authenticationType": { "description": "Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "connectionString": { "description": "The non-access credential portion of the connection string as well as an optional encrypted credential.", "type": "string" }, "credential": { "description": "The access credential portion of the connection string specified in driver-specific property-value format.", "type": "string" }, "userName": { "description": "User name for Basic authentication.", "type": "string" }, "password": { "description": "Password for Basic authentication.", "type": "string" } }, "additionalProperties": false } } }, "oDataLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.ODataLinkedService", "description": "Open Data Protocol (OData) linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "OData" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "url", "authenticationType" ], "properties": { "url": { "description": "The URL of the OData service endpoint.", "type": "string" }, "authenticationType": { "description": "Type of authentication used to connect to the OData service.", "$ref": "#/definitions/oDataAuthenticationType" }, "username": { "description": "User name of the OData service.", "type": "string" }, "password": { "description": "Password of the OData service.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name for Windows authentication.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Windows authentication.", "type": "string" }, "authorizedCredential": { "description": "The OAuth authorized credential that may be used by ADF to access resources on your behalf. Each authorization is unique and may only be used once.", "type": "string" } }, "additionalProperties": false } } }, "oDataAuthenticationType": { "title": "Microsoft.Azure.Management.DataFactories.Models.ODataAuthenticationType", "description": "Available authentication types for ODataLinkedService.", "type": "string", "enum": [ "Basic", "Anonymous", "Windows", "OAuth" ] }, "salesforceLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.SalesforceLinkedService", "description": "Linked Service for Salesforce connector.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "Salesforce" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "username", "password", "securityToken" ], "properties": { "username": { "description": "The username for Basic authentication of the Salesforce source.", "type": "string" }, "password": { "description": "The password for Basic authentication of the Salesforce source.", "type": "string" }, "securityToken": { "description": "The security token is required to access Salesforce.", "type": "string" }, "environmentUrl": { "description": "The Salesforce login URL. To connect to the Salesforce sandbox environment, use 'test.salesforce.com'.", "type": "string" } }, "additionalProperties": false } } }, "awsAccessKeyLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AwsAccessKeyLinkedService", "description": "An access key-based Amazon Web Services (AWS) linked service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AwsAccessKey" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "accessKeyId", "secretAccessKey" ], "properties": { "accessKeyId": { "description": "The IAM access key ID.", "type": "string" }, "secretAccessKey": { "description": "The IAM secret access key.", "type": "string" } }, "additionalProperties": false } } }, "amazonRedshiftLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.AmazonRedshiftLinkedService", "description": "Linked Service for Amazon Redshift connector.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "AmazonRedshift" ] }, "typeProperties": { "description": "Properties specific to this linked service type.", "type": "object", "required": [ "server", "username", "password", "database" ], "properties": { "server": { "description": "The name of the Amazon Redshift server.", "type": "string" }, "port": { "description": "The TCP port number that the Amazon Redshift server uses to listen for client connections.", "type": "integer", "default": 5439 }, "username": { "description": "The username of the Amazon Redshift server.", "type": "string" }, "password": { "description": "The password of the Amazon Redshift server.", "type": "string" }, "database": { "description": "The database name of the Amazon Redshift server.", "type": "string" } }, "additionalProperties": false } } }, "ftpServerLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.FtpServerLinkedService", "description": "A FTP server Linked Service.", "type": "object", "properties": { "type": { "type": "string", "enum": [ "FtpServer" ] }, "typeProperties": { "required": [ "host", "authenticationType" ], "properties": { "host": { "description": "Host name of the FTP server.", "type": "string" }, "port": { "description": "The TCP port number that the FTP server uses to listen for client connections. Default value is 21.", "type": "integer", "minimum": 0 }, "authenticationType": { "description": "The authentication type to be used to connect to the FTP server.", "type": "string", "enum": [ "Basic", "Anonymous" ] }, "username": { "description": "Username to logon the FTP server.", "type": "string" }, "password": { "description": "Password to logon the FTP server.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Basic authentication.", "type": "string" }, "enableSsl": { "description": "If true, connect to the FTP server over SSL/TLS channel. Default value is true.", "type": "boolean" }, "enableServerCertificateValidation": { "description": "If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true.", "type": "boolean" } }, "additionalProperties": false } } }, "sftpLinkedService": { "title": "Microsoft.Azure.Management.DataFactories.Models.SftpLinkedService", "description": "A linked service for an SSH File Transfer Protocol (SFTP) server. ", "type": "object", "properties": { "type": { "type": "string", "enum": [ "Sftp" ] }, "typeProperties": { "required": [ "host", "authenticationType" ], "properties": { "host": { "description": "The SFTP server host name.", "type": "string" }, "port": { "description": "The TCP port number that the SFTP server uses to listen for client connections.", "type": "integer", "minimum": 0, "default": 22 }, "authenticationType": { "description": "The authentication type to be used to connect to the SFTP server.", "type": "string", "enum": [ "Basic", "SshPublicKey" ] }, "username": { "description": "The username used to log on to the SFTP server.", "type": "string" }, "password": { "description": "Password to logon the SFTP server for Basic authentication.", "type": "string" }, "privateKeyPath": { "description": "The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.", "type": "string" }, "privateKeyContent": { "description": "Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.", "type": "string" }, "passPhrase": { "description": "The password to decrypt the SSH private key if the SSH private key is encrypted.", "type": "string" }, "skipHostKeyValidation": { "description": "If true, skip the SSH host key validation. Default value is false.", "type": "boolean" }, "hostKeyFingerprint": { "description": "The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified.", "type": "string" }, "gatewayName": { "description": "The on-premises gateway name.", "type": "string" }, "encryptedCredential": { "description": "The encrypted credential for Basic or SshPublicKey authentication.", "type": "string" } }, "additionalProperties": false } } } } }
o358
{ "description": "Class 4 exemption codes - becomes mandatory if isExempt flag is set to true", "example": "005", "oneOf": [ { "description": "Non Resident", "enum": [ "001" ] }, { "description": "Trustee", "enum": [ "002" ] }, { "description": "Diver", "enum": [ "003" ] }, { "description": "Employed earner taxed under ITTOIA 2005", "enum": [ "004" ] }, { "description": "Over state pension age", "enum": [ "005" ] }, { "description": "Under 16", "enum": [ "006" ] } ] }
o46414
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": {}, "properties": { "cluster": { "items": { "properties": { "id": { "type": "string" }, "parameters": { "properties": { "domain": { "type": "string" }, "gateway": { "type": "string" }, "password": { "type": "string" }, "provision": { "properties": { "contrail_4": { "properties": { "agent_image": { "type": "string" }, "alarm_gen_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "analytics_api_config": { "properties": { "aaa_mode": { "type": "string" }, "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "analytics_collector_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "analytics_image": { "type": "string" }, "analyticsdb_image": { "type": "string" }, "api_config": { "properties": { "log_level": { "type": "string" } }, "type": "object" }, "cassandra_config": { "properties": { "commitlog_dir": { "type": "string" }, "data_dirs": { "items": { "type": "string" }, "type": "array" }, "java_max_heap_newsize": { "type": "string" }, "java_max_heap_size": { "type": "string" }, "saved_caches_dir": { "type": "string" } }, "type": "object" }, "control_config": { "properties": { "log_file": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "controller_config": { "properties": { "bgp_asn": { "type": "string" }, "encap_priority": { "type": "string" }, "external_routers_list": { "properties": {}, "type": "object" } }, "type": "object" }, "controller_image": { "type": "string" }, "device_manager_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "dns_config": { "properties": { "log_level": { "type": "string" } }, "type": "object" }, "docker_registry": { "type": "string" }, "docker_registry_insecure": { "type": "boolean" }, "global_config": { "properties": { "cloud_orchestrator": { "type": "string" }, "external_cassandra_servers": { "type": "string" }, "external_configdb_servers": { "type": "string" }, "external_lb": { "type": "boolean" }, "external_rabbitmq_servers": { "type": "string" }, "external_zookeeper_servers": { "type": "string" }, "introspect_ssl_enable": { "type": "boolean" }, "log_level": { "type": "string" }, "sandesh_ssl_enable": { "type": "boolean" }, "xmpp_auth_enable": { "type": "boolean" }, "xmpp_dns_auth_enable": { "type": "boolean" } }, "type": "object" }, "lb_image": { "type": "string" }, "query_engine_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "schema_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "snmp_collector_config": { "properties": { "fast_scan_frequency": { "type": "string" }, "introspect_port": { "type": "string" }, "log": { "type": "string" }, "log_level": { "type": "string" }, "scan_frequencey": { "type": "string" } }, "type": "object" }, "ssl_certs_src_dir": { "type": "string" }, "svc_monitor_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" }, "topology_config": { "properties": { "log": { "type": "string" }, "log_level": { "type": "string" } }, "type": "object" } }, "type": "object" }, "openstack": { "properties": { "amqp": { "properties": { "ip_list": { "items": {}, "type": "array" }, "port": { "type": "string" }, "server_ip": { "type": "string" } }, "type": "object" }, "enable_ceilometer": { "type": "boolean" }, "ha": { "properties": { "external_vip": { "type": "string" }, "external_virtual_router_id": { "type": "integer" }, "internal_vip": { "type": "string" }, "internal_virtual_router_id": { "type": "integer" }, "nfs_glance_path": { "type": "string" }, "nfs_server": { "type": "string" } }, "type": "object" }, "keystone": { "properties": { "admin_password": { "type": "string" }, "admin_tenant": { "type": "string" }, "admin_user": { "type": "string" }, "auth_port": { "type": "integer" }, "auth_protocol": { "type": "string" }, "ip": { "type": "string" }, "mysql_service_password": { "type": "string" }, "service_tenant": { "type": "string" } }, "type": "object" }, "multi_tenancy": { "type": "boolean" }, "mysql": { "properties": { "allowed_hosts": { "items": {}, "type": "array" }, "root_password": { "type": "string" } }, "type": "object" }, "neutron": { "properties": { "port": { "type": "integer" }, "service_protocol": { "type": "string" } }, "type": "object" }, "openstack_manage_amqp": { "type": "boolean" }, "region": { "type": "string" } }, "type": "object" } }, "type": "object" }, "subnet_mask": { "type": "string" } }, "type": "object" } }, "type": "object" }, "type": "array" } }, "type": "object" }
o8490
{ "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": { "price": { "description": "The price per unit of the product", "type": "number" }, "product_name": { "description": "The name of the product", "type": "string" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "product_name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "billing_address", "items" ], "type": "object" }
create_invoice_7d16b6f6
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { }, "description": "Portman by Apideck allows you to port your OpenApi Spec to a Postman Collection, inject a powerful test suite, and run your tests with Newman. Details about all configuration options can be found at http://getportman.com.", "properties": { "assignVariables": { "items": { "additionalProperties": false, "properties": { "collectionVariables": { "items": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "requestBodyProp": { "type": "string" }, "responseBodyProp": { "type": "string" }, "responseHeaderProp": { "type": "string" }, "value": {} }, "type": "object" }, "type": "array" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "collectionVariables" ], "type": "object" }, "type": "array" }, "globals": { "additionalProperties": false, "properties": { "collectionPreRequestScripts": { "items": { "type": "string" }, "type": "array" }, "collectionTestScripts": { "items": { "type": "string" }, "type": "array" }, "keyValueReplacements": { "additionalProperties": {}, "type": "object" }, "orderOfOperations": { "items": { "type": "string" }, "type": "array" }, "portmanReplacements": { "items": { "additionalProperties": false, "properties": { "replaceWith": { "type": "string" }, "searchFor": { "type": "string" } }, "required": [ "searchFor", "replaceWith" ], "type": "object" }, "type": "array" }, "rawReplacements": { "items": { "additionalProperties": false, "properties": { "replaceWith": { "type": "string" }, "searchFor": { "type": "string" } }, "required": [ "searchFor", "replaceWith" ], "type": "object" }, "type": "array" }, "securityOverwrites": { "additionalProperties": false, "properties": { "apiKey": { "additionalProperties": false, "properties": { "in": { "type": "string" }, "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "value" ], "type": "object" }, "awsv4": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "basic": { "additionalProperties": false, "properties": { "password": { "type": "string" }, "username": { "type": "string" } }, "required": [ "username", "password" ], "type": "object" }, "bearer": { "additionalProperties": false, "properties": { "token": { "type": "string" } }, "required": [ "token" ], "type": "object" }, "digest": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "edgegrid": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "hawk": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "ntlm": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "oauth1": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "oauth2": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "other": { "additionalProperties": { "anyOf": [ {}, { "items": {}, "type": "array" } ] }, "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "type": "object" }, "stripResponseExamples": { "type": "boolean" }, "valueReplacements": { "additionalProperties": {}, "type": "object" } }, "type": "object" }, "operationPreRequestScripts": { "items": { "additionalProperties": false, "properties": { "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "scripts": { "items": { "type": "string" }, "type": "array" } }, "required": [ "scripts" ], "type": "object" }, "type": "array" }, "overwrites": { "items": { "additionalProperties": false, "properties": { "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "overwriteRequestBaseUrl": { "additionalProperties": false, "properties": { "overwrite": { "type": "boolean" }, "remove": { "type": "boolean" }, "value": { "type": "string" } }, "type": "object" }, "overwriteRequestBody": { "items": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "disable": { "type": "boolean" }, "insert": { "type": "boolean" }, "key": { "type": "string" }, "overwrite": { "type": "boolean" }, "remove": { "type": "boolean" }, "value": {} }, "required": [ "key" ], "type": "object" }, "type": "array" }, "overwriteRequestHeaders": { "items": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "disable": { "type": "boolean" }, "insert": { "type": "boolean" }, "key": { "type": "string" }, "overwrite": { "type": "boolean" }, "remove": { "type": "boolean" }, "value": { "type": "string" } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "overwriteRequestPathIdVariables": { "items": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "type": "array" }, "overwriteRequestPathVariables": { "items": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "disable": { "type": "boolean" }, "insert": { "type": "boolean" }, "key": { "type": "string" }, "overwrite": { "type": "boolean" }, "remove": { "type": "boolean" }, "value": { "type": "string" } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "overwriteRequestQueryParams": { "items": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "disable": { "type": "boolean" }, "insert": { "type": "boolean" }, "key": { "type": "string" }, "overwrite": { "type": "boolean" }, "remove": { "type": "boolean" }, "value": { "type": "string" } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "overwriteRequestSecurity": { "additionalProperties": false, "properties": { "apiKey": { "additionalProperties": false, "properties": { "in": { "type": "string" }, "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "value" ], "type": "object" }, "awsv4": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "basic": { "additionalProperties": false, "properties": { "password": { "type": "string" }, "username": { "type": "string" } }, "required": [ "username", "password" ], "type": "object" }, "bearer": { "additionalProperties": false, "properties": { "token": { "type": "string" } }, "required": [ "token" ], "type": "object" }, "digest": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "edgegrid": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "hawk": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "ntlm": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "oauth1": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "oauth2": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "type": { "type": "string" }, "value": { } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "other": { "additionalProperties": { "anyOf": [ {}, { "items": {}, "type": "array" } ] }, "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "type": "object" } }, "type": "object" }, "type": "array" }, "tests": { "additionalProperties": false, "properties": { "contentTests": { "items": { "additionalProperties": false, "properties": { "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "responseBodyTests": { "items": { "additionalProperties": false, "properties": { "assert": { "type": "string" }, "contains": { "type": "string" }, "key": { "type": "string" }, "length": { "type": [ "string", "number" ] }, "maxLength": { "type": [ "string", "number" ] }, "minLength": { "type": [ "string", "number" ] }, "notExist": { "type": "boolean" }, "oneOf": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "items": { "type": "number" }, "type": "array" }, { "items": { "type": "boolean" }, "type": "array" } ] }, "value": { "type": [ "string", "number", "boolean", "null" ] } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "responseHeaderTests": { "items": { "additionalProperties": false, "properties": { "assert": { "type": "string" }, "contains": { "type": "string" }, "key": { "type": "string" }, "length": { "type": [ "string", "number" ] }, "maxLength": { "type": [ "string", "number" ] }, "minLength": { "type": [ "string", "number" ] }, "notExist": { "type": "boolean" }, "oneOf": { "items": { "type": "string" }, "type": "array" }, "value": { "type": [ "string", "number", "boolean" ] } }, "required": [ "key" ], "type": "object" }, "type": "array" } }, "type": "object" }, "type": "array" }, "contractTests": { "items": { "additionalProperties": false, "properties": { "additionalProperties": { "additionalProperties": false, "properties": { "additionalProperties": { "type": "boolean" }, "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "contentType": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "headersPresent": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "jsonBody": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "responseTime": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "maxMs": { "type": "number" } }, "required": [ "enabled", "maxMs" ], "type": "object" }, "schemaValidation": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "additionalProperties": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "statusCode": { "additionalProperties": false, "properties": { "code": { "type": "number" }, "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "statusSuccess": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" }, "extendTests": { "items": { "additionalProperties": false, "properties": { "append": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "overwrite": { "type": "boolean" }, "tests": { "items": { "type": "string" }, "type": "array" } }, "required": [ "tests" ], "type": "object" }, "type": "array" }, "integrationTests": { "items": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "operations": { "items": { "additionalProperties": false, "properties": { "openApiOperationId": { "type": "string" }, "openApiResponse": { "type": "string" }, "variations": { "items": { "additionalProperties": false, "properties": { "assignVariables": { "items": { "additionalProperties": false, "properties": { "collectionVariables": { "items": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "requestBodyProp": { "type": "string" }, "responseBodyProp": { "type": "string" }, "responseHeaderProp": { "type": "string" }, "value": {} }, "type": "object" }, "type": "array" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "collectionVariables" ], "type": "object" }, "type": "array" }, "extendTests": { "items": { "additionalProperties": false, "properties": { "append": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "overwrite": { "type": "boolean" }, "tests": { "items": { "type": "string" }, "type": "array" } }, "required": [ "tests" ], "type": "object" }, "type": "array" }, "fuzzing": { "items": { "additionalProperties": false, "properties": { "requestBody": { "items": { "additionalProperties": false, "properties": { "maxLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "maximumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minimumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "requiredFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" }, "requestHeaders": { "items": { "additionalProperties": false, "properties": { "maxLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "maximumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minimumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "requiredFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" }, "requestQueryParams": { "items": { "additionalProperties": false, "properties": { "maxLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "maximumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minimumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "requiredFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "type": "array" }, "name": { "type": "string" }, "openApiResponse": { "type": "string" }, "operationPreRequestScripts": { "items": { "additionalProperties": false, "properties": { "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "scripts": { "items": { "type": "string" }, "type": "array" } }, "required": [ "scripts" ], "type": "object" }, "type": "array" }, "overwrites": {}, "tests": {} }, "required": [ "name", "tests" ], "type": "object" }, "type": "array" } }, "required": [ "openApiOperationId", "variations" ], "type": "object" }, "type": "array" } }, "required": [ "name", "operations" ], "type": "object" }, "type": "array" }, "variationTests": { "items": { "additionalProperties": false, "properties": { "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "openApiResponse": { "type": "string" }, "variations": { "items": { "additionalProperties": false, "properties": { "assignVariables": { "items": { "additionalProperties": false, "properties": { "collectionVariables": { "items": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "requestBodyProp": { "type": "string" }, "responseBodyProp": { "type": "string" }, "responseHeaderProp": { "type": "string" }, "value": {} }, "type": "object" }, "type": "array" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "collectionVariables" ], "type": "object" }, "type": "array" }, "extendTests": { "items": { "additionalProperties": false, "properties": { "append": { "type": "boolean" }, "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "overwrite": { "type": "boolean" }, "tests": { "items": { "type": "string" }, "type": "array" } }, "required": [ "tests" ], "type": "object" }, "type": "array" }, "fuzzing": { "items": { "additionalProperties": false, "properties": { "requestBody": { "items": { "additionalProperties": false, "properties": { "maxLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "maximumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minimumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "requiredFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" }, "requestHeaders": { "items": { "additionalProperties": false, "properties": { "maxLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "maximumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minimumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "requiredFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" }, "requestQueryParams": { "items": { "additionalProperties": false, "properties": { "maxLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "maximumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minLengthFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "minimumNumberFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" }, "requiredFields": { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "type": "object" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "type": "array" }, "name": { "type": "string" }, "openApiResponse": { "type": "string" }, "operationPreRequestScripts": { "items": { "additionalProperties": false, "properties": { "excludeForOperations": { "items": { "type": "string" }, "type": "array" }, "openApiOperation": { "type": "string" }, "openApiOperationId": { "type": "string" }, "openApiOperationIds": { "items": { "type": "string" }, "type": "array" }, "scripts": { "items": { "type": "string" }, "type": "array" } }, "required": [ "scripts" ], "type": "object" }, "type": "array" }, "overwrites": {}, "tests": {} }, "required": [ "name", "tests" ], "type": "object" }, "type": "array" } }, "required": [ "variations" ], "type": "object" }, "type": "array" } }, "type": "object" }, "version": { "type": "number" } }, "type": "object" }
portman-config-schema
{ "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_677_Normalized
{ "properties": { "auditlogs": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "collectors": { "type": "string" }, "cqareporting": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "events": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "grpcstatus": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpauthentication": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpclientsidemeasurements": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpcontenttype": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpcookie": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpdomainname": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httphost": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httplocation": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpmethod": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httppagetracking": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpreferer": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpsetcookie": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpsetcookie2": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpurl": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpurlquery": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpuseragent": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpvia": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "httpxforwardedforheader": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "integratedcache": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "metrics": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "name": { "type": "string" }, "outputmode": { "enum": [ "avro", "prometheus", "influx" ], "type": "string" }, "refcnt": { "readonly": true, "type": "integer" }, "tcpburstreporting": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "type": { "enum": [ "global", "webinsight", "tcpinsight", "securityinsight", "videoinsight", "hdxinsight", "gatewayinsight", "timeseries", "lsninsight", "botinsight" ], "type": "string" }, "urlcategory": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" } }, "title": "analyticsprofile", "type": "object" }
o29959
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Backend Config", "description": "A configuration file for the PrairieLearn server.", "type": "object", "properties": { "courseDirs": { "description": "Paths of the course directories.", "type": "array", "items": { "description": "A single course directory path.", "type": "string" } }, "secretKey": { "description": "Secret key for authenticating users (should be a long random string).", "type": "string" }, "postgresqlUser": { "description": "The user for connecting to the PostgreSQL database.", "type": "string" }, "postgresqlDatabase": { "description": "The database for connecting to the PostgreSQL database.", "type": "string" }, "postgresqlHost": { "description": "The host for connecting to the PostgreSQL database.", "type": "string" }, "redisUrl": { "description": "The url for connecting to Redis.", "type": "string" }, "logFilename": { "description": "Filename to use for server logging.", "type": "string" }, "authType": { "description": "The type of authentication to use.", "enum": [ "none", "x-auth", "eppn", "x-trust-auth" ] }, "serverType": { "description": "The type of server to start.", "enum": [ "http", "https" ] }, "sslCertificateFile": { "description": "Path to SSL certificate", "type": "string" }, "sslKeyFile": { "description": "Path to SSL certificate key file", "type": "string" }, "sslCAFile": { "description": "Path to SSL CA chain file", "type": "string" }, "serverPort": { "description": "The TCP port number for the server.", "type": "string" }, "groupName": { "description": "The group of servers we belong to, used for load reporting and autoscaling.", "type": "string" }, "blockedWarnEnable": { "description": "Whether to detect and warn on blockages in the event loop.", "type": "boolean" }, "blockedAtWarnEnable": { "description": "Whether to use more expensive event-loop-blocking detection that includes stack traces (not for routine use in production).", "type": "boolean" }, "blockedWarnThresholdMS": { "description": "The threshold (in milliseconds) for detecting event-loop blockages.", "type": "integer" }, "checkAccessRulesExamUuid": { "description": "On sync, check if assessment access rules examUuid exists in database (default false)", "type": "boolean" }, "cronIntervalMS": { "description": "Time between cron job runs (milliseconds).", "type": "integer" }, "autoFinishAgeMins": { "description": "Time after last activity when exams are auto-closed (minutes).", "type": "integer" }, "runningInEc2": { "description": "Whether PL is running as an AWS EC2 instance", "type": "boolean" }, "externalGradingUseAws": { "description": "If the external grader should use AWS (production) or not (local dev).", "type": "boolean" }, "externalGradingS3Bucket": { "description": "The S3 bucket that externally graded jobs should be stored in.", "type": "string" }, "externalGradingResultsS3Bucket": { "description": "The S3 bucket where externally graded job results will be stored.", "type": "string" }, "externalGradingJobQueue": { "description": "The name of the job queue where externally graded jobs will be submitted.", "type": "string" }, "externalGradingJobRole": { "description": "The ARN of the role that should be provided to external grading containers for resource access.", "type": "string" }, "externalGradingWebhookUrl": { "description": "The endpoint that should be hit when a grading result is updated. Should be null when running locally.", "type": "string" }, "externalGradingDefaultTimeout": { "description": "The default timeout to use for external grading if none is specified by a question.", "type": "integer" }, "externalGradingPullImagesFromDockerHub": { "description": "Whether externally graded questions should automatically pull container images from Docker Hub (true) or use only locally cached images (false)", "type": "boolean" }, "awsRegion": { "description": "The region for AWS resources.", "type": "string" }, "hasShib": { "description": "Enables Shibboleth authentication", "type": "boolean" }, "hasAzure": { "description": "Enables Azure authentication", "type": "boolean" }, "hasOauth": { "description": "Enables OAuth authentication", "type": "boolean" }, "useWorkers": { "description": "Enable persistent, forking Python workers", "type": "boolean" }, "workersCount": { "description": "The number of workers to use (or null to use workersPerCpu).", "type": "integer" }, "workersPerCpu": { "description": "The number of workers per CPU (if workersCount is null).", "type": "number" } } }
o12985
{ "additionalProperties": false, "description": "A login GTM server-side event.", "properties": { "method": { "description": "The method used to login.", "maxLength": 4096, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "login", "vendor": "com.google.tag-manager.server-side", "version": "1-0-0" }, "type": "object" }
sp_86_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Create a new platform customer account.", "type": "object", "properties": { "identifier": { "description": "The identifier that will be used to uniquely identify this account going forward. These must be unique to the platform, but not globally... for instance: ABC123 could exist for PlatformX and PlatformY without conflicting.", "type": "string", "minLength": 5, "maxLength": 96, "pattern": "^[\\+\\w-]{5,96}$" }, "email": { "description": "The email address for the account.", "type": "string", "pattern": "^\\S+@\\S+$" }, "customer": { "description": "The platform's customer.", "type": "string", "minLength": 3, "maxLength": 96 } }, "required": [ "identifier", "email", "customer" ] }
o50679
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "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" } }, "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_371aa6f6
{ "additionalProperties": false, "description": "A view_search_results GA4 enhanced-measurement event.", "properties": { "search_term": { "description": "The term that was searched for.", "maxLength": 4096, "type": "string" } }, "self": { "format": "jsonschema", "name": "view_search_results", "vendor": "com.google.ga4.enhanced-measurement", "version": "1-0-0" }, "type": "object" }
sp_78_Normalized
{ "properties": { "measurements": { "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" } }, "type": "object" }, "shape": { "description": "The shape for which the area will be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "type": "object" }
calculate_area_2a000740
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "FindProjectResponse", "type": "object", "additionalProperties": false, "properties": { "projectDetails": { "type": "array", "items": { "$ref": "#/definitions/ProjectDetails" } }, "totalSize": { "type": "integer" } }, "required": [ "totalSize" ], "definitions": { "ProjectDetails": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Name of the project." } } } }, "javaName": "FindProjectResponse" }
o39431
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (for circle)", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. triangle, rectangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_39e6c1c8
{ "properties": { "grades": { "description": "A list of courses with grades and credit hours", "items": { "properties": { "course": { "description": "The name of the course", "type": "string" }, "credit_hours": { "description": "The credit hours of the course", "type": "integer" }, "grade": { "description": "The grade obtained in the course", "type": "string" } }, "required": [ "course", "credit_hours", "grade" ], "type": "object" }, "type": "array" } }, "required": [ "grades" ], "type": "object" }
calculate_gpa_befc9622
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "/todo GET validation", "properties": { "id": { "type": "string" } }, "required": [ "id" ] }
o55684
{ "additionalProperties": true, "definitions": {}, "description": "order_settle_payment_v1", "links": [ { "description": "order_settle_payment_v1", "href": "/order_settle_payment_v1", "method": "post", "rel": "instances", "schema": { "allOf": [ { "properties": { "action": { "description": "Action Name name", "example": "catalog_get_config", "type": "string" }, "channel_info": { "properties": { "id": { "description": "channel id", "example": 21, "type": "integer" } }, "type": "object" }, "client_id": { "description": "RetailOPS client id", "example": 497, "type": "integer" }, "integration_auth_token": { "description": "Randomly generated authorization token, for authenticating genuine RetailOps- originated requests.", "example": "2KuxqV9rsAtAM78i47CITMvtnflUapNmgGJAvWiHqgUrk1xkeDNWlM3EsrmJEtmV", "type": "string" }, "version": { "description": "Action Version", "example": 1, "type": "integer" } }, "required": [ "action", "version", "client_id", "channel_info" ], "type": "object" }, { "properties": { "order": { "properties": { "channel_order_refnum": { "description": "channel reference number for order", "type": "string" }, "grand_total": { "description": "RetailOps current order grand total", "type": "number" }, "order_items": { "description": "List of order line items", "items": { "properties": { "apportioned_ship_amt": { "description": "Apportioned ship amount", "type": "number" }, "channel_item_refnum": { "description": "channel reference number for order", "type": "string" }, "direct_ship_amt": { "description": "Direct ship amount", "type": "number" }, "estimated_cost": { "description": "Estimated item cost", "type": "number" }, "estimated_extended_cost": { "description": "Estimated extended cost of item", "type": "number" }, "estimated_ship_date": { "description": "estimated ship date of item", "example": "2016-04-08T21:13:11Z", "type": "string" }, "estimated_unit_cost": { "description": "Estimated unit cost of item", "type": "number" }, "order_item_id": { "description": "Retail Ops order item ID", "type": "integer" }, "quantity": { "description": "Order quantity of item", "type": "integer" }, "removed": { "description": "boolean indicator of whether the item was removed from the order.", "enum": [ true, false ], "type": "string" }, "sku": { "description": "SKU specified by the order item", "type": "string" }, "unit_price": { "description": "base unit price of item", "type": "number" } }, "type": "object" }, "type": "array" }, "retailops_order_id": { "description": "RetailOps Order ID", "type": "integer" }, "shipments": { "description": "List of all fulfilled shipments for this order. Each RetailOps shipment corresponds to one portion of the order routing plan, usually one per each facility or vendor. Each fulfilled shipment will contain one or more packages", "items": { "properties": { "packages": { "items": { "description": "a package included in shipment", "properties": { "carrier_class_name": { "description": "Ship Carrier's Class Name", "example": "Ground", "type": "string" }, "carrier_name": { "description": "Ship Carrier Name", "example": "UPS", "type": "string" }, "channel_ship_code": { "description": "Code which has been configured for this channel to represent the above carrier/class. EG: 'UPS Ground' -> 'UPSGRND' or 'U,GRD'", "type": "string" }, "date_shipped": { "description": "Date the package was shipped", "example": "2016-04-08T21:13:11Z", "type": "string" }, "package_items": { "items": { "properties": { "channel_item_refnum": { "description": "Channel reference number for this item", "type": "string" }, "quantity": { "description": "Quantity of the referenced items which was included in this package", "type": "integer" }, "retailops_order_item_id": { "description": "RetailOps Order Item ID", "type": "integer" }, "retailops_shipment_item_id": { "description": "RetailOps Shipment Item ID", "type": "integer" }, "sku": { "description": "SKU Number of the item", "type": "string" } }, "type": "object" }, "type": "array" }, "retailops_package_id": { "description": "RetailOps Package ID", "type": "integer" }, "tracking_number": { "description": "Tracking number", "example": "ZX29827782929", "type": "string" }, "weight_kg": { "description": "Weight in Kilograms", "type": "number" } }, "type": "object" }, "type": "array" }, "retailops_shipment_id": { "description": "RetailOps Shipment ID", "type": "integer" } }, "type": "object" }, "type": "array" }, "unshipped_items": { "description": "List of items which were not shipped as of the time of order completion. Presumably these items should be canceled in the channel", "items": { "properties": { "channel_item_refnum": { "description": "channel reference number for order", "type": "string" }, "effective_extended_price": { "description": "extended price associated with the order item (after discounts), specified in the counterparty currency", "type": "number" }, "effective_unit_price": { "description": "effective unit price associated with the order item (after discounts), specified in the counterparty currency", "type": "number" }, "ordered_quantity": { "description": "quantity of the order item which was ordered", "type": "integer" }, "sku": { "description": "SKU specified by the order item", "type": "string" }, "unshipped_quantity": { "description": "quantity of the order item which has not been shipped", "type": "integer" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "payment": { "properties": { "currency_code": { "description": "ISO4217 Currency code for the counterparty (transaction) currency", "enum": [ "AUD", "CAD", "CHF", "EUR", "GBP", "HKD", "JPY", "MXN", "NZD", "PLN", "SGD", "USD" ], "type": "string" }, "payment_series_id": { "description": "payment series ID", "example": 2572, "type": "integer" }, "payment_transactions": { "items": { "properties": { "amount": { "description": "Transaction amount", "example": 100.32, "type": "number" }, "payment_processing_type": { "description": "Indicates what type of payment RetailOps should record in its payment system. types beginning with channel_ are delegated to the channel for processing. Other types may be handled directly with the payment processor, if the account is on file", "enum": [ "channel_payment", "channel_storecredit", "channel_giftcert", "authorize.net" ], "type": "string" }, "payment_type": { "description": "Payment type for this transaction. Free-form", "example": "Visa", "type": "string" }, "transaction_type": { "description": "", "enum": [ "auth", "charge" ], "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" } }, "type": "object" } ] }, "targetSchema": { "properties": { "events": { "items": { "description": "event returned in action response", "properties": { "associations": { "description": "", "items": { "properties": { "identifier": { "description": "identify value corresponding to the type", "example": "S1234", "type": "string" }, "identifier_type": { "description": "Type of identifier being provided", "enum": [ "order_id", "order_refnum", "orderitem_id", "orderitem_refnum", "shipment_id", "shipmentitem_id", "product_id", "sku_number" ], "example": "sku_number", "type": "string" } }, "type": "object" }, "type": [ "array", "null" ] }, "code": { "description": "error/warning code", "example": "ERR1234", "type": "string" }, "diagnostic_data": { "description": "", "type": "string" }, "event_type": { "description": "event type", "enum": [ "error", "warning", "info" ], "example": "error", "type": "string" }, "message": { "description": "descriptive error/warning message", "example": "Example error message", "type": "string" } }, "type": "object" }, "type": [ "array", "null" ] } }, "type": "object" }, "title": "/order_settle_payment_v1" } ], "properties": {}, "stability": "draft", "title": "/order_settle_payment_v1", "type": "object" }
o45027
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "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" } }, "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" }
wp_68_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "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", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, triangle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_53d31fa6
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "LineChartData", "description": "The data contained in a LineChart", "type": "object", "properties": { "labels": { "type": "array", "items": { "type": "string" } }, "datasets": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "color": { "type": "string", "pattern": "^#[0-9a-fA-F]{6}$" }, "values": { "type": "array", "items": { "type": "number" } } }, "required": [ "values" ] } } }, "required": [ "labels", "datasets" ] }
o54546
{ "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", "null" ] }, "remainingItemCount": { "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.", "format": "int64", "type": [ "integer", "null" ] }, "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", "null" ] }, "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", "null" ] } }, "type": "object" }
kb_536_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/hexagonkt/codecv/master/cv.schema.json", "$ref": "#/$defs/Cv", "$defs": { "Language": { "type": "string", "pattern": "[a-z]{2}" }, "Country": { "type": "string", "pattern": "[A-Z]{2}" }, "NullableCountry": { "type": [ "string", "null" ], "pattern": "[A-Z]{2}" }, "Disability": { "title": "Disability information", "type": "object", "required": [ "Type" ], "additionalProperties": false, "properties": { "Type": { "title": "Kind of disability", "type": "string", "enum": [ "visual", "auditory", "movement", "mental" ] }, "Level": { "title": "Disability degree", "description": "Disability degree. Value must be between 1.0 (fully disabled) and 0", "$ref": "#/$defs/NullableNumber" }, "Summary": { "title": "Text describing the disability", "$ref": "#/$defs/NullableString" } } }, "DrivingLicense": { "title": "Driving license details", "type": "object", "required": [ "Country", "License" ], "additionalProperties": false, "properties": { "Country": { "title": "Country issuing the driver license", "$ref": "#/$defs/Country" }, "License": { "title": "Kind of driver licence, i", "description": "Kind of driver licence, i.e.: A, B1, etc", "type": "string" } } }, "IdDocument": { "title": "Identification document", "description": "Identification document, I.e.: passport", "type": "object", "required": [ "Country", "Document", "Id" ], "additionalProperties": false, "properties": { "Country": { "title": "Issuer of the document", "$ref": "#/$defs/Country" }, "Document": { "title": "Document name", "description": "Document name. It could be a national document name, or passport", "type": "string" }, "Id": { "title": "Code with the serial number of the document for the CV principal", "type": "string" } } }, "Personal": { "title": "Personal information, not related with professional skills or qualifications", "type": "object", "required": [ "Given Name", "Family Name", "Native Language" ], "additionalProperties": false, "properties": { "Given Name": { "title": "Given name", "description": "Given name. It can be multiple words for compound names", "type": "string" }, "Family Name": { "title": "Family name", "description": "Family name. Depending on cultures, this field can be very different", "type": "string" }, "Native Language": { "title": "First learned language", "description": "First learned language. Or preferred language if you had many", "$ref": "#/$defs/Language" }, "Pronoun": { "title": "Pronoun to state how do you like to be addressed", "type": [ "null", "string" ], "enum": [ "feminine", "masculine", "neutral" ] }, "Gender": { "title": "Gender role", "type": [ "null", "string" ], "enum": [ "woman", "man", "lesbian", "gay", "transgender woman", "transgender man", "bisexual", "intersexual", "queer", "agender", "other" ] }, "Birth": { "title": "Date of birth", "$ref": "#/$defs/NullableDate" }, "Birth Country": { "title": "Country of birth", "$ref": "#/$defs/NullableCountry" }, "Alias": { "title": "Short name you commonly use or nickname", "$ref": "#/$defs/NullableString" }, "Photo": { "title": "Photo address", "$ref": "#/$defs/NullableUri" }, "Avatar": { "title": "Avatar", "description": "Avatar. Image used to represent you without being an actual photo", "$ref": "#/$defs/NullableUri" }, "Nationalities": { "title": "Set of nationalities", "description": "Set of nationalities. If none is supplied, the birth of country is used", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Country" } }, "Disabilities": { "title": "List of disabilities of a person", "type": "array", "items": { "$ref": "#/$defs/Disability" } }, "Driving Licenses": { "title": "List of driving permissions", "type": "array", "items": { "$ref": "#/$defs/DrivingLicense" } }, "Ids": { "title": "Id documents owned by country", "type": "array", "items": { "$ref": "#/$defs/IdDocument" } } } }, "Location": { "title": "Area that may have different degrees of precision, from a whole country, to a street address", "type": "object", "required": [ "Country" ], "additionalProperties": false, "properties": { "Country": { "title": "Location country", "$ref": "#/$defs/Country" }, "Region": { "title": "Country region", "description": "Country region. If set, can not be blank", "$ref": "#/$defs/NullableString" }, "City": { "title": "City", "description": "City. If set, can not be blank", "$ref": "#/$defs/NullableString" }, "Postcode": { "title": "Postcode", "description": "Postcode. If set, can not be blank", "$ref": "#/$defs/NullableString" }, "Address": { "title": "Street address", "description": "Street address. If set, can not be blank", "$ref": "#/$defs/NullableString" } } }, "NullableLocation": { "title": "Area that may have different degrees of precision, from a whole country, to a street address", "type": [ "object", "null" ], "required": [ "Country" ], "additionalProperties": false, "properties": { "Country": { "title": "Location country", "$ref": "#/$defs/Country" }, "Region": { "title": "Country region", "description": "Country region. If set, can not be blank", "$ref": "#/$defs/NullableString" }, "City": { "title": "City", "description": "City. If set, can not be blank", "$ref": "#/$defs/NullableString" }, "Postcode": { "title": "Postcode", "description": "Postcode. If set, can not be blank", "$ref": "#/$defs/NullableString" }, "Address": { "title": "Street address", "description": "Street address. If set, can not be blank", "$ref": "#/$defs/NullableString" } } }, "Link": { "title": "Link to a resource identifier, it can be `tel:`, `mailto:`, or the usual WWW ones", "type": "object", "required": [ "Address" ], "additionalProperties": false, "properties": { "Address": { "title": "Link's URI", "type": "string" }, "Title": { "title": "Description of the link's purpose", "$ref": "#/$defs/NullableString" } } }, "Money": { "type": "object", "required": [ "Amount", "Currency" ], "additionalProperties": false, "properties": { "Amount": { "type": "number" }, "Currency": { "type": "string" } } }, "NullableSalary": { "type": [ "object", "null" ], "required": [ "Money" ], "additionalProperties": false, "properties": { "Money": { "$ref": "#/$defs/Money" }, "Period": { "$ref": "#/$defs/Period" }, "Gross": { "type": "boolean" } } }, "NullableRemote": { "type": [ "object", "null" ], "required": [ "Days", "Period" ], "additionalProperties": false, "properties": { "Days": { "$ref": "#/$defs/Period" }, "Period": { "$ref": "#/$defs/Period" } } }, "TargetJob": { "type": "object", "additionalProperties": false, "properties": { "Salary": { "$ref": "#/$defs/NullableSalary" }, "Remote": { "$ref": "#/$defs/NullableRemote" }, "Roles": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Operating Systems": { "type": "array", "uniqueItems": true, "items": { "type": "string", "enum": [ "linux", "macos", "windows" ] } }, "Features": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Desired Skills": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Excluded Skills": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Locations": { "type": "array", "items": { "$ref": "#/$defs/Location" } } } }, "LanguageSkill": { "title": "Foreign language capabilities", "type": "object", "required": [ "Language", "Listening", "Reading", "Spoken", "Written" ], "additionalProperties": false, "properties": { "Language": { "title": "Foreign language", "$ref": "#/$defs/Language" }, "Listening": { "title": "Listening level", "type": "string", "enum": [ "a1", "a2", "b1", "b2", "c1", "c2" ] }, "Reading": { "title": "Reading level", "type": "string", "enum": [ "a1", "a2", "b1", "b2", "c1", "c2" ] }, "Spoken": { "title": "Spoken level", "type": "string", "enum": [ "a1", "a2", "b1", "b2", "c1", "c2" ] }, "Written": { "title": "Written level", "type": "string", "enum": [ "a1", "a2", "b1", "b2", "c1", "c2" ] } } }, "Organization": { "title": "Organization data (can be used for companies, educational institutions, etc", "description": "Organization data (can be used for companies, educational institutions, etc.)", "type": "object", "required": [ "Name" ], "additionalProperties": false, "properties": { "Name": { "title": "Name of the organization", "description": "Name of the organization. If set can not be blank", "type": "string" }, "Website": { "title": "URL of the organization's website", "$ref": "#/$defs/NullableUri" }, "Type": { "title": "Organization's type (NGO, educational, government, etc", "description": "Organization's type (NGO, educational, government, etc.). If set can not be blank", "$ref": "#/$defs/NullableString" }, "Industry": { "title": "Industry (financial, industry, etc", "description": "Industry (financial, industry, etc.). If set can not be blank", "$ref": "#/$defs/NullableString" } } }, "NullableOrganization": { "title": "Organization data (can be used for companies, educational institutions, etc", "description": "Organization data (can be used for companies, educational institutions, etc.)", "type": [ "object", "null" ], "required": [ "Name" ], "additionalProperties": false, "properties": { "Name": { "title": "Name of the organization", "description": "Name of the organization. If set can not be blank", "type": "string" }, "Website": { "title": "URL of the organization's website", "$ref": "#/$defs/NullableUri" }, "Type": { "title": "Organization's type (NGO, educational, government, etc", "description": "Organization's type (NGO, educational, government, etc.). If set can not be blank", "$ref": "#/$defs/NullableString" }, "Industry": { "title": "Industry (financial, industry, etc", "description": "Industry (financial, industry, etc.). If set can not be blank", "$ref": "#/$defs/NullableString" } } }, "Project": { "type": "object", "required": [ "Title" ], "additionalProperties": false, "properties": { "Title": { "type": "string" }, "Website": { "$ref": "#/$defs/NullableUri" }, "From": { "$ref": "#/$defs/NullableYearMonth" }, "Persons": { "type": "number" }, "Type": { "title": "Web Application, Mobile Application, REST service, CLI, library, Desktop Application", "$ref": "#/$defs/NullableString" }, "To": { "$ref": "#/$defs/NullableYearMonth" }, "Summary": { "$ref": "#/$defs/NullableString" }, "Client": { "$ref": "#/$defs/NullableOrganization" }, "Production": { "type": [ "null", "boolean" ] }, "Highlights": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Roles": { "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Skills": { "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "Experience": { "title": "Professional experience executed for an employer or a client", "type": "object", "required": [ "Position" ], "additionalProperties": false, "properties": { "Position": { "type": "string" }, "Company": { "title": "Permanent role company", "description": "Permanent role company. If null, it means this is a contractor experience", "$ref": "#/$defs/NullableOrganization" }, "From": { "$ref": "#/$defs/NullableYearMonth" }, "To": { "$ref": "#/$defs/NullableYearMonth" }, "Location": { "$ref": "#/$defs/NullableLocation" }, "Summary": { "$ref": "#/$defs/NullableString" }, "Quit Reason": { "$ref": "#/$defs/NullableString" }, "Projects": { "type": "array", "items": { "$ref": "#/$defs/Project" } } } }, "Education": { "type": "object", "required": [ "Title", "Type", "Institution", "From" ], "additionalProperties": false, "properties": { "Title": { "type": "string" }, "Type": { "type": "string" }, "Institution": { "$ref": "#/$defs/Organization" }, "From": { "$ref": "#/$defs/YearMonth" }, "Website": { "$ref": "#/$defs/NullableUri" }, "To": { "$ref": "#/$defs/NullableYearMonth" }, "Area": { "$ref": "#/$defs/NullableString" }, "Location": { "$ref": "#/$defs/NullableLocation" }, "Summary": { "$ref": "#/$defs/NullableString" }, "Score": { "$ref": "#/$defs/NullableString" }, "Subjects": { "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "Course": { "title": "Training course, as opposed to formal education", "type": "object", "required": [ "Title", "Institution", "From", "To" ], "additionalProperties": false, "properties": { "Title": { "title": "Course title", "description": "Course title. Can not be blank", "type": "string" }, "Institution": { "title": "Organization which run the course and/or award its certificate", "$ref": "#/$defs/Organization" }, "From": { "title": "Start date of the course", "description": "Start date of the course. It must be a date before the end date", "$ref": "#/$defs/Date" }, "To": { "title": "End date of the course", "description": "End date of the course. Should be set to a date before today", "$ref": "#/$defs/Date" }, "Website": { "title": "URL with more information about the course", "description": "URL with more information about the course. The URL must return a success code", "$ref": "#/$defs/NullableUri" }, "Area": { "title": "Course subject", "description": "Course subject. If set, it cannot be blank", "$ref": "#/$defs/NullableString" }, "Location": { "title": "Location where the training took place", "$ref": "#/$defs/NullableLocation" }, "Summary": { "title": "Brief description of the course", "description": "Brief description of the course. Blank values other than 'null' aren't allowed", "$ref": "#/$defs/NullableString" }, "Company": { "title": "Name of the company paying for the course", "$ref": "#/$defs/NullableString" }, "Hours": { "title": "Number of effective hours of this course", "description": "Number of effective hours of this course. If set, should be greater than zero", "$ref": "#/$defs/NullableNumber" }, "Score": { "title": "Score of the course (if any)", "$ref": "#/$defs/NullableString" }, "Subjects": { "title": "Set of topics covered in the course", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "Achievement": { "title": "Professional achievement", "description": "Professional achievement. Achievement accomplished at a given date. Publications must be owned by external parties in order to be an achievement, posts on social networks or personal blogs are listed in other CV sections", "type": "object", "required": [ "Type", "Title", "Date" ], "additionalProperties": false, "properties": { "Type": { "title": "Type of achievement", "type": "string", "enum": [ "certification", "award", "publication", "presentation", "conference", "workshop", "other" ] }, "Title": { "title": "Descriptive title of the achievement", "description": "Descriptive title of the achievement. Cannot be blank", "type": "string" }, "Date": { "title": "Data in which the achievement was accomplished", "description": "Data in which the achievement was accomplished. Cannot be after today", "$ref": "#/$defs/Date" }, "Website": { "title": "Link with further information of the achievement, I", "description": "Link with further information of the achievement, I.e.: the URL of a publication. The URL must exist and be readable", "$ref": "#/$defs/NullableUri" }, "Summary": { "title": "Detailed description of the achievement", "description": "Detailed description of the achievement. It cannot be blank", "$ref": "#/$defs/NullableString" }, "Issuer": { "title": "Organization that awarded this achievement", "$ref": "#/$defs/NullableOrganization" } } }, "Reference": { "title": "Other person's reference", "type": "object", "required": [ "Full Name", "Summary" ], "additionalProperties": false, "properties": { "Full Name": { "title": "Referrer's name", "description": "Referrer's name. Can not be blank", "type": "string" }, "Summary": { "title": "Reference details in plain text", "description": "Reference details in plain text. Can not be blank", "type": "string" }, "Type": { "title": "Relation among CV principal and referrer", "type": [ "null", "string" ], "enum": [ "colleague", "manager", "subordinate", "client", "provider" ] }, "Contact": { "title": "Contact data of the referrer person", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Link" } }, "Social Profiles": { "title": "Referrer's social networks", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Uri" } }, "Projects": { "title": "Projects in common with the referrer", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "SkillSet": { "type": "object", "required": [ "Title" ], "additionalProperties": false, "properties": { "Title": { "type": "string" }, "Skills": { "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "Cv": { "title": "CV data grouped by topics", "description": "CV data grouped by topics. Most of the fields are optional. When the model is rendered, the fields are passed to the template context with the names in camel case. Read only properties are meant only for use in templates, and cannot be defined in the document", "type": "object", "additionalProperties": false, "properties": { "$schema": { "title": "Schema used for the document", "description": "Used to deal with different versions. It also eases the use on some editors", "type": "string", "format": "URI" }, "Job Status": { "title": "Job search status", "type": [ "null", "string" ], "enum": [ "active search", "open to challenges", "not moving" ] }, "Locale": { "title": "Locale representing the CV's content", "description": "Locale representing the CV's content. If not set, it will be `en`", "$ref": "#/$defs/Locale" }, "Last Update": { "title": "Date of the CV's latest modification", "$ref": "#/$defs/NullableDate" }, "Resources": { "title": "List of resources to be included in this CV", "description": "List of resources to be included in this CV. Allows CV modularization. Resources' content will be overwritten with the CV document content", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Uri" } }, "Templates": { "title": "Templates used to render this CV", "description": "Templates used to render this CV. Templates for different media types are supported using the template extension to select the appropriate one", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Uri" } }, "Variables": { "title": "Configuration added to the context when the CV is rendered", "description": "Configuration added to the context when the CV is rendered. Map keys must be in camel case", "type": "object" }, "Personal": { "title": "Personal information", "$ref": "#/$defs/Personal" }, "Residence": { "title": "Current residence information", "$ref": "#/$defs/Location" }, "Contact": { "title": "Contact data", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Link" } }, "Target Job": { "title": "Searched job desired characteristics", "$ref": "#/$defs/TargetJob" }, "Bio": { "title": "Bio, if set, cannot be blank", "$ref": "#/$defs/NullableString" }, "Titles": { "title": "Titles", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Labels": { "title": "Labels", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Goals": { "title": "Professional goals", "description": "Professional goals. It cannot contain any blank item", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Top Skills": { "title": "Group of general skills to highlight", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "Links": { "title": "List of links pointing to another resources (like social networks profiles)", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/Link" } }, "Languages": { "title": "List of languages aside of the birth language", "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/LanguageSkill" } }, "Personal Projects": { "title": "Personal projects developed outside a company", "type": "array", "items": { "$ref": "#/$defs/Project" } }, "Volunteering": { "title": "Experience on non govern organizations related with social or technical interests", "type": "array", "items": { "$ref": "#/$defs/Experience" } }, "Experience": { "title": "Professional projects developed for a company", "type": "array", "items": { "$ref": "#/$defs/Experience" } }, "Education": { "title": "Formal education", "type": "array", "items": { "$ref": "#/$defs/Education" } }, "Courses": { "title": "Specific courses on a given subject", "type": "array", "items": { "$ref": "#/$defs/Course" } }, "Achievements": { "title": "Professional achievements awarded by third parties", "type": "array", "items": { "$ref": "#/$defs/Achievement" } }, "References": { "title": "Personal references from previous experiences", "type": "array", "items": { "$ref": "#/$defs/Reference" } }, "Technical Skills": { "title": "Set of technical skills", "type": "array", "items": { "$ref": "#/$defs/SkillSet" } }, "Common Skills": { "title": "Common (or soft) skills", "type": "array", "items": { "$ref": "#/$defs/SkillSet" } }, "Other Facts": { "title": "Fun facts and/or interests", "type": "array", "uniqueItems": true, "items": { "type": "string" } } } }, "NullableYearMonth": { "type": [ "null", "string" ], "pattern": "\\d{4}-\\d{2}" }, "YearMonth": { "type": "string", "pattern": "\\d{4}-\\d{2}" }, "Period": { "type": "string", "pattern": "[pP]?\\s*(\\d+[yY])?\\s*(\\d+[wW])?\\s*(\\d+[dD])?" }, "Locale": { "type": "string", "pattern": "[a-z]{2}(_[A-Z]{2})?" }, "NullableDate": { "type": [ "null", "string" ], "format": "DATE" }, "Date": { "type": "string", "format": "DATE" }, "NullableUri": { "type": [ "null", "string" ], "format": "URI" }, "Uri": { "type": "string", "format": "URI" }, "NullableString": { "type": [ "null", "string" ] }, "NullableNumber": { "type": [ "null", "number" ] } } }
cv
{ "properties": { "destination": { "description": "The destination address", "type": "string" }, "dimensions": { "properties": { "height": { "description": "The height of the package in centimeters", "type": "number" }, "length": { "description": "The length of the package in centimeters", "type": "number" }, "width": { "description": "The width of the package in centimeters", "type": "number" } }, "type": "object" }, "weight": { "description": "The weight of the package in kilograms", "type": "number" } }, "required": [ "weight", "dimensions", "destination" ], "type": "object" }
calculate_shipping_cost_aa32917e
{ "title": "JSON schema for the ActionScript configuration file", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "anyOf": [ { "allOf": [ { "$ref": "#/definitions/baseAppConfig" }, { "required": [ "mainClass" ] } ] }, { "allOf": [ { "$ref": "#/definitions/baseAppConfig" }, { "required": [ "files" ] } ] }, { "allOf": [ { "$ref": "#/definitions/baseAppConfig" }, { "required": [ "extends" ] } ] }, { "allOf": [ { "$ref": "#/definitions/baseConfig" }, { "properties": { "type": { "type": "string", "description": "Indicates if the project is an application or library. Supported values include \"app\" and \"lib\". Then default value is \"app\".", "pattern": "^lib$" } }, "required": [ "type" ] } ] } ], "definitions": { "baseConfig": { "type": "object", "properties": { "config": { "$ref": "#/definitions/config" }, "compilerOptions": { "$ref": "#/definitions/compilerOptions" }, "additionalOptions": { "$ref": "#/definitions/additionalOptions" }, "copySourcePathAssets": { "$ref": "#/definitions/copySourcePathAssets" }, "files": { "$ref": "#/definitions/files" }, "extends": { "$ref": "#/definitions/extends" } } }, "baseAppConfig": { "allOf": [ { "$ref": "#/definitions/baseConfig" }, { "properties": { "type": { "type": "string", "description": "Indicates if the project is an application or library. Supported values include \"app\" and \"lib\". Then default value is \"app\".", "default": "app" }, "application": { "$ref": "#/definitions/application" }, "airOptions": { "$ref": "#/definitions/airOptions" }, "animateOptions": { "$ref": "#/definitions/animateOptions" }, "htmlTemplate": { "$ref": "#/definitions/htmlTemplate" }, "mainClass": { "$ref": "#/definitions/mainClass" } } } ] }, "extends": { "type": "string", "description": "Path to another asconfig.json file that will be merged with this file. If the same fields are defined in both files, the fields in this file will either replace or expand the values in the base file." }, "additionalOptions": { "type": "string", "description": "Additional options to send to the compiler, formatted as command line arguments. Useful for testing new options that are not yet supported by the compilerOptions field of asconfig.json." }, "htmlTemplate": { "type": "string", "description": "Path to a folder containing an HTML template for a SWF project that will be copied to the output folder. Text files may contain tokens that will be automatically replace. Not to be confused with html-template compiler option used by Apache Royale." }, "singleSigningOptions": { "type": "object", "description": "Options for code signing an Adobe AIR application.", "additionalProperties": false, "properties": { "alias": { "type": "string", "description": "The alias of a key in the keystore." }, "storetype": { "type": "string", "description": "The type of keystore.", "pattern": "^(jks|JKS|pkcs12|PKCS12|pkcs11|PKCS11|KeychainStore|Windows-MY|Windows-ROOT)$" }, "keystore": { "type": "string", "description": "The path to the keystore file." }, "providerName": { "type": "string", "description": "The JCA provider for the specified keystore type." }, "tsa": { "type": "string", "description": "Specifies the URL of an RFC3161-compliant timestamp server to time-stamp the digital signature, or \"none\" to disable timestamping." }, "provisioning-profile": { "type": "string", "description": "The path to a provisioning profile for iOS." } } }, "dualSigningOptions": { "type": "object", "description": "Options for code signing an Adobe AIR application.", "additionalProperties": false, "properties": { "debug": { "$ref": "#/definitions/singleSigningOptions" }, "release": { "$ref": "#/definitions/singleSigningOptions" } }, "required": [ "debug", "release" ] }, "signingOptions": { "anyOf": [ { "$ref": "#/definitions/singleSigningOptions" }, { "$ref": "#/definitions/dualSigningOptions" } ] }, "airOptionsOutput": { "type": "string", "description": "The output file name of the application package." }, "airOptionsConnect": { "type": [ "string", "boolean" ], "description": "Specifies if the app will attempt to connect to a remote debugger (usually over Wi-Fi). Set to true or false, or optionally specify the host string of the computer running the debugger." }, "airOptionsListen": { "type": [ "number", "boolean" ], "description": "Specifies if the app will listen for an incoming connection to a debugger over USB. Set to true or false, or optionally specify the port to listen on." }, "airOptionsPlatformSDK": { "type": "string", "description": "The path to the platform SDK for the target device." }, "airOptionsAllTargets": { "type": "string", "description": "The package target for Adobe AIR applications.", "pattern": "^(air|bundle|native|ipa-app-store|ipa-ad-hoc|ipa-debug|ipa-test|ipa-debug-interpreter|ipa-test-interpreter|ipa-debug-interpreter-simulator|ipa-test-interpreter-simulator|apk-captive-runtime|apk|apk-debug|apk-profile|aab)$" }, "airOptionsDesktopTargets": { "type": "string", "description": "The package target for desktop applications.", "pattern": "^(air|bundle|native)$" }, "airOptionsExtdir": { "type": "array", "description": "One or more specified directories that contain ANE files for native extensions that the application uses.", "items": { "type": "string" } }, "airOptionsFiles": { "type": "array", "description": "Additional files to package with the Adobe AIR application.", "items": { "type": "object", "additionalProperties": false, "properties": { "file": { "type": "string", "description": "Source path of a file or directory to include in the application package." }, "path": { "type": "string", "description": "Destination path of the file or directory inside the application package." } }, "required": [ "file", "path" ] } }, "airOptionsSampler": { "type": "boolean", "description": "Enables the telemetry-based ActionScript sampler in iOS applications." }, "airOptionsHideAneLibSymbols": { "type": "boolean", "description": "Specify whether iOS ANE library symbols are visible only to that library's sources or globally." }, "airOptionsEmbedBitcode": { "type": "boolean", "description": "Specify whether to embed iOS bitcode or not." }, "animateOptions": { "type": "object", "description": "Specify configuration options for Adobe Animate projects.", "additionalProperties": false, "properties": { "file": { "type": "string", "description": "The location of an Adobe Animate .fla file." } }, "required": [ "file" ] }, "airOptions": { "type": "object", "description": "Instructs the ADT utility how to package the Adobe AIR application.", "additionalProperties": false, "properties": { "target": { "$ref": "#/definitions/airOptionsAllTargets" }, "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "signingOptions": { "$ref": "#/definitions/signingOptions" }, "air": { "type": "object", "additionalProperties": false, "properties": { "target": { "$ref": "#/definitions/airOptionsAllTargets" }, "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "signingOptions": { "$ref": "#/definitions/signingOptions" } } }, "ios": { "type": "object", "additionalProperties": false, "properties": { "embedBitcode": { "$ref": "#/definitions/airOptionsEmbedBitcode" }, "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "hideAneLibSymbols": { "$ref": "#/definitions/airOptionsHideAneLibSymbols" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "signingOptions": { "$ref": "#/definitions/signingOptions" }, "sampler": { "$ref": "#/definitions/airOptionsSampler" }, "connect": { "$ref": "#/definitions/airOptionsConnect" }, "listen": { "$ref": "#/definitions/airOptionsListen" }, "platformsdk": { "$ref": "#/definitions/airOptionsPlatformSDK" }, "target": { "type": "string", "description": "The package target for iOS.", "pattern": "^(ipa-app-store|ipa-ad-hoc|ipa-debug|ipa-test|ipa-debug-interpreter|ipa-test-interpreter)$" } }, "required": [ "signingOptions" ] }, "ios_simulator": { "type": "object", "additionalProperties": false, "properties": { "embedBitcode": { "$ref": "#/definitions/airOptionsEmbedBitcode" }, "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "hideAneLibSymbols": { "$ref": "#/definitions/airOptionsHideAneLibSymbols" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "signingOptions": { "$ref": "#/definitions/signingOptions" }, "sampler": { "$ref": "#/definitions/airOptionsSampler" }, "connect": { "$ref": "#/definitions/airOptionsConnect" }, "listen": { "$ref": "#/definitions/airOptionsListen" }, "platformsdk": { "$ref": "#/definitions/airOptionsPlatformSDK" }, "target": { "type": "string", "description": "The package target for iOS.", "pattern": "^(ipa-debug-interpreter-simulator|ipa-test-interpreter-simulator)$" } }, "required": [ "signingOptions" ] }, "android": { "type": "object", "additionalProperties": false, "properties": { "arch": { "type": "string", "description": "Specifies the CPU architecture to target on Android.", "pattern": "^(armv7|armv8|x86|x86_64)$" }, "airDownloadURL": { "type": "string", "description": "Specifies an alternate URL for downloading and installing the AIR runtime on Android devices." }, "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "connect": { "$ref": "#/definitions/airOptionsConnect" }, "listen": { "$ref": "#/definitions/airOptionsListen" }, "platformsdk": { "$ref": "#/definitions/airOptionsPlatformSDK" }, "signingOptions": { "$ref": "#/definitions/signingOptions" }, "target": { "type": "string", "description": "The package target for Android.", "pattern": "^(apk-captive-runtime|apk|apk-debug|apk-profile|aab)$" } }, "required": [ "signingOptions" ] }, "windows": { "type": "object", "additionalProperties": false, "properties": { "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "signingOptions": { "$ref": "#/definitions/signingOptions" }, "target": { "$ref": "#/definitions/airOptionsDesktopTargets" } } }, "mac": { "type": "object", "additionalProperties": false, "properties": { "extdir": { "$ref": "#/definitions/airOptionsExtdir" }, "files": { "$ref": "#/definitions/airOptionsFiles" }, "output": { "$ref": "#/definitions/airOptionsOutput" }, "signingOptions": { "$ref": "#/definitions/signingOptions" }, "target": { "$ref": "#/definitions/airOptionsDesktopTargets" } } } } }, "application": { "anyOf": [ { "$ref": "#/definitions/singleApplication" }, { "type": "object", "additionalProperties": false, "properties": { "air": { "$ref": "#/definitions/singleApplication" }, "ios": { "$ref": "#/definitions/singleApplication" }, "ios_simulator": { "$ref": "#/definitions/singleApplication" }, "android": { "$ref": "#/definitions/singleApplication" }, "windows": { "$ref": "#/definitions/singleApplication" }, "mac": { "$ref": "#/definitions/singleApplication" } } } ] }, "singleApplication": { "type": "string", "description": "Optional path to Adobe AIR application descriptor. The descriptor's <content> element will be populated, and the file will be copied into the output directory." }, "compilerOptions": { "type": "object", "description": "Instructs the ActionScript and MXML compiler how to build the project.", "additionalProperties": false, "properties": { "accessible": { "type": "boolean", "description": "In a SWF project, enables accessibility features. The default value is false." }, "advanced-telemetry": { "type": "boolean", "description": "In a SWF project, enables advanced telemetry for Adobe Scout. The default value is false." }, "benchmark": { "type": "boolean", "description": "Prints detailed compile times to the standard output. The default value is true." }, "debug": { "type": "boolean", "description": "The generated output of the build will contain extra debug data." }, "debug-password": { "type": "string", "description": "In a SWF project, an optional password for remote debugging." }, "default-background-color": { "type": "string", "description": "In a SWF project, sets the application's background color." }, "default-frame-rate": { "type": "number", "description": "In a SWF project, sets the application's frame rate. The default value is 24.", "multipleOf": 1 }, "default-size": { "type": "object", "description": "In a SWF project, defines the default application size, in pixels.", "additionalProperties": false, "properties": { "width": { "type": "number", "description": "Defines the default SWF application width, in pixels.", "multipleOf": 1 }, "height": { "type": "number", "description": "Defines the default SWF application height, in pixels.", "multipleOf": 1 } }, "required": [ "width", "height" ] }, "defaults-css-files": { "type": "array", "description": "Specifies a list of CSS files to provide style defaults", "items": { "type": "string" } }, "define": { "type": "array", "description": "Defines a global constant at compile time.", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the constant." }, "value": { "type": [ "string", "boolean", "number" ], "description": "The value of the constant." } }, "required": [ "name", "value" ] } }, "js-define": { "type": "array", "description": "In an Apache Royale project, defines a global constant at compile time for the generated JavaScript output.", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the constant." }, "value": { "type": [ "string", "boolean", "number" ], "description": "The value of the constant." } }, "required": [ "name", "value" ] } }, "directory": { "type": "boolean", "description": "(Library projects only) Outputs the library as a directory instead of a SWC file." }, "dump-config": { "type": "string", "description": "Combines all configuration options and saves them to the specified file." }, "external-library-path": { "type": "array", "description": "Specifies a list of SWC files, or directories containing SWC files, to exclude from linking in the generated output. This option provides compile-time link checking for external components that are dynamically linked.", "items": { "type": "string" } }, "js-external-library-path": { "type": "array", "description": "In an Apache Royale project, specifies a list of SWC files, or directories containing SWC files, to exclude from linking in only the generated JavaScript output.", "items": { "type": "string" } }, "swf-external-library-path": { "type": "array", "description": "In an Apache Royale project, specifies a list of SWC files, or directories containing SWC files, to exclude from linking in only the generated SWF output.", "items": { "type": "string" } }, "include-libraries": { "type": "array", "description": "Specifies a list of SWC files to link in the output, regardless of whether they are referenced.", "items": { "type": "string" } }, "include-file": { "type": "array", "description": "(Library projects only) Specifies a list of files to include in the SWC file.", "items": { "type": "object", "additionalProperties": false, "properties": { "file": { "type": "string", "description": "Source path of a file or directory to include in the SWC." }, "path": { "type": "string", "description": "Destination path of the file or directory inside the SWC." } }, "required": [ "file", "path" ] } }, "include-classes": { "type": "array", "description": "(Library projects only) Specifies classes to include in the SWC file. You provide the class name (for instance, com.example.MyClass) rather than the file name (for instance, com/example/MyClass.as) to the file for this option.", "items": { "type": "string" } }, "include-namespaces": { "type": "array", "description": "(Library projects only) Specifies namespace-style components in the SWC file. You specify a list of URIs to include in the SWC file. The uri argument must already be defined with the namespace option.", "items": { "type": "string" } }, "html-output-filename": { "type": "string", "description": "In an Apache Royale project, specifies the name of the output file generated using the html-template." }, "html-template": { "type": "string", "description": "In an Apache Royale project, specifies a custom HTML template file. For SWF projects, use the top-level htmlTemplate field instead." }, "include-sources": { "type": "array", "description": "(Library projects only) Specifies classes or directories to add to the SWC file. When specifying classes, you specify the path to the class file (for instance, com/example/MyClass.as) rather than the class name itself (for instance, com.example.MyClass).", "items": { "type": "string" } }, "js-compiler-option": { "type": "array", "description": "In an Apache Royale project, passes additional options to the Closure Compiler for a release build.", "items": { "type": "string" } }, "js-default-initializers": { "type": "boolean", "description": "In an Apache Royale project, enables or disables initialization of primitive (Number, Boolean, etc.) variables with default values in the generated JavaScript." }, "js-output": { "type": "string", "description": "In an Apache Royale project, the path where the generated JavaScript output should be saved." }, "keep-all-type-selectors": { "type": "boolean", "description": "Disables the pruning of unused type selectors. The default value is false." }, "keep-as3-metadata": { "type": "array", "description": "Specifies custom metadata that you want to keep.", "items": { "type": "string" } }, "keep-generated-actionscript": { "type": "boolean", "description": "Determines whether to keep the generated ActionScript class files. The default value is false." }, "library-path": { "type": "array", "description": "Links SWC libraries to the generated output of the build. The compiler only links in those classes for the SWC file that are required. You can specify a directory or individual SWC files.", "items": { "type": "string" } }, "js-library-path": { "type": "array", "description": "In an Apache Royale project, links SWC libraries to only the generated JavaScript output of the build.", "items": { "type": "string" } }, "swf-library-path": { "type": "array", "description": "In an Apache Royale project, links SWC libraries to only the generated SWF output of the build.", "items": { "type": "string" } }, "link-report": { "type": "string", "description": "Generates linking information and saves it to the specified output file." }, "load-config": { "type": "array", "description": "Specifies the locations of XML configuration files that define extra compiler options.", "items": { "type": "string" } }, "load-externs": { "type": "array", "description": "Specifies the locations of XML files that define extra symbols to omit from the output.", "items": { "type": "string" } }, "js-load-config": { "type": "array", "description": "In an Apache Royale project, specifies the locations of XML configuration files that define extra compiler options only for the generated JavaScript output.", "items": { "type": "string" } }, "locale": { "type": "array", "description": "Specifies one or more locales to be compiled into the application.", "items": { "type": "string", "pattern": "^[a-z]{2}([-_][A-Z]{2}){0,1}$" } }, "namespace": { "type": "array", "description": "Specifies MXML namespaces. Each namespace must include a URI and the location of the manifest file that defines the contents of the namespace.", "items": { "type": "object", "additionalProperties": false, "properties": { "uri": { "type": "string", "description": "The namespace URI." }, "manifest": { "type": "string", "description": "The location of the manifest file." } }, "required": [ "uri", "manifest" ] } }, "omit-trace-statements": { "type": "boolean", "description": "Omits trace() statements. The default value is false." }, "optimize": { "type": "boolean", "description": "In a SWF project, enables the ActionScript optimizer to reduce file size and increases performance by optimizing the SWF file's bytecode. The default value is true." }, "output": { "type": "string", "description": "The path where the generated output should be saved." }, "preloader": { "type": "string", "description": "In a Flex project, specify a download progress bar for your application. The value must be the name of a class that implements the IPreloaderDisplay interface." }, "remove-circulars": { "type": "boolean", "description": "In an Apache Royale project, removes circular references for a release build." }, "show-unused-type-selector-warnings": { "type": "boolean", "description": "Determines if warnings generated from unused CSS type selectors are displayed. The default value is true." }, "size-report": { "type": "string", "description": "Generates a report that summarizes the size of each type of data in the application and saves it to the specified output file." }, "source-map": { "type": "boolean", "description": "In an Apache Royale project, emits source maps in the debug build for each ActionScript and MXML file. The default value is false." }, "source-path": { "type": "array", "description": "Adds directories or files to the source path. The compiler searches directories in the source path for MXML, AS, or CSS source files that are used in your applications and includes those that are required at compile time.", "items": { "type": "string" } }, "static-link-runtime-shared-libraries": { "type": "boolean", "description": "In a SWF project, determines whether to compile against libraries statically or use RSLs." }, "strict": { "type": "boolean", "description": "Performs compile-time type checking on assignments and options supplied to method calls. The default value is true." }, "swf-version": { "type": "number", "description": "In a SWF project, specifies the SWF file format version. Features requiring a later version of the SWF file format are not compiled into the application. This is different from the target-player version in that it refers to the SWF specification versioning scheme.", "minimum": 9, "multipleOf": 1 }, "targets": { "type": "array", "description": "In an Apache Royale project, specifies one or more output targets. Supported values include \"JSRoyale\", \"JS\", \"JSNode\", and \"SWF\".", "items": { "type": "string" } }, "target-player": { "type": "string", "description": "In a SWF project, specifies the runtime version. Features requiring a later version of the runtime are not compiled into the application.", "pattern": "^[0-9]+(\\.[0-9]+){0,2}$" }, "theme": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ], "description": "Specifies one or more theme files to use with this application." }, "tools-locale": { "type": "string", "description": "Specifies the locale to use when reporting compiler errors and warnings.", "pattern": "^[a-z]{2}([-_][A-Z]{2}){0,1}$" }, "use-direct-blit": { "type": "boolean", "description": "In a SWF project, equivalent to wmode=\"direct\" when running in a standalone SWF runtime instead of a browser plug-in. The default value is false." }, "use-gpu": { "type": "boolean", "description": "In a SWF project, equivalent to wmode=\"gpu\" when running in a standalone SWF runtime instead of a browser plug-in. The default value is false." }, "use-network": { "type": "boolean", "description": "In a SWF project, specifies that the current application uses network services or can access the local file system. The default value is true." }, "use-resource-bundle-metadata": { "type": "boolean", "description": "Enables resource bundles, and instructs the compiler to process the contents of the [ResourceBundle] metadata tag. The default value is true." }, "verbose-stacktraces": { "type": "boolean", "description": "In a SWF project, includes line numbers in the generated output, but results in a larger SWF file. When a run-time error occurs, the stacktrace shows line numbers. The default value is false." }, "warnings": { "type": "boolean", "description": "Enables or disables all warnings." }, "warn-public-vars": { "type": "boolean", "description": "In an Apache Royale project, enables or disables warnings about public variables." } } }, "config": { "type": "string", "description": "The default configuration file to use from the SDK. Supported values include \"js\", \"node\", \"royale\", \"flex\", \"air\", and \"airmobile\". The default value is \"royale\" when using Apache Royale and \"flex\" for other SDKs.", "pattern": "^(flex|royale|air|airmobile|js|node)$" }, "copySourcePathAssets": { "type": "boolean", "description": "Optionally copies any files in the source path that don't have .as or .mxml extensions to the output directory." }, "files": { "type": "array", "description": "The specified files will be included by the compiler, including all of their dependencies. If the \"mainClass\" field is omitted, the final item in \"files\" will be used as the application entry point.", "items": { "type": "string" }, "minItems": 1 }, "mainClass": { "type": "string", "description": "The fully qualified class name (including the package name, if any) of the main class to use as the application entry point." } } }
o2312
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Link", "description": "PayPal link json schema", "type": "object", "properties": { "href": { "description": "URL of the related HATEOAS link you can use for subsequent calls.", "type": "string" }, "rel": { "description": "Link relation that describes how this link relates to the previous call. Examples include self (get details of the current call), parent_payment (get details of the parent payment), or a related call such as execute or refund.", "type": "string" }, "method": { "description": "The HTTP method required for the related call.", "type": "string" } }, "required": [ "href", "rel", "method" ] }
o66057
{ "description": "Info contains versioning information. how we'll want to distribute that information.", "properties": { "buildDate": { "type": [ "string", "null" ] }, "compiler": { "type": [ "string", "null" ] }, "gitCommit": { "type": [ "string", "null" ] }, "gitTreeState": { "type": [ "string", "null" ] }, "gitVersion": { "type": [ "string", "null" ] }, "goVersion": { "type": [ "string", "null" ] }, "major": { "type": [ "string", "null" ] }, "minor": { "type": [ "string", "null" ] }, "platform": { "type": [ "string", "null" ] } }, "required": [ "major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform" ], "type": "object" }
kb_435_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "IoTPSUTIL Sensor Event Schema", "properties": { "name": { "description": "Device name", "type": "string" }, "cpu": { "description": "CPU utilization (%)", "type": "number", "minimum": 0.0, "maximum": 100.0, "default": 0.0 }, "mem": { "description": "Memory utilization (%)", "type": "number", "minimum": 0.0, "maximum": 100.0, "default": 0.0 }, "network": { "type": "object", "properties": { "up": { "description": "Network out (KB/s)", "type": "number", "minimum": 0.0, "default": 0.0 }, "down": { "description": "Network in (KB/s)", "type": "number", "minimum": 0.0, "default": 0.0 } }, "required": [ "up", "down" ] } }, "required": [ "name", "cpu", "mem", "network" ] }
o47037
{ "properties": { "keywords": { "description": "The keywords to search for in job titles", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location of the job openings", "type": "string" }, "salary_range": { "properties": { "max": { "description": "The maximum salary range", "type": "number" }, "min": { "description": "The minimum salary range", "type": "number" } }, "required": [ "min", "max" ], "type": "object" } }, "required": [], "type": "object" }
search_jobs_4e90a9d2
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "achievement": { "type": "number" }, "achievements": { "type": "array", "items": { "type": "number" } } }, "required": [ "id", "name", "achievement", "achievements" ] }, "properties": {}, "additionalProperties": false }
o45219
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "BarChartInPlaceUpdate", "description": "The data contained in a BarChart InPlace update object", "type": "object", "properties": { "inplace": { "type": "array", "items": { "type": "object", "properties": { " position": { "type": "object", "properties": { "x": { "type": "integer", "minimum": 0 }, "y": { "type": "integer", "minimum": 0 } }, "required": [ "x", "y" ] }, "data": { "type": "number" } }, "required": [ "position", "data" ] } } } }
o54542
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "title": "PatronType", "description": "JSON schema for patron_types.", "additionalProperties": false, "propertiesOrder": [ "name", "description", "subscription_amount" ], "required": [ "$schema", "pid", "name", "organisation" ], "properties": { "$schema": { "title": "Schema", "description": "Schema to validate patron_types records against.", "type": "string", "minLength": 9, "default": "https://ils.rero.ch/schemas/patron_types/patron_type-v0.0.1.json" }, "pid": { "title": "Patron type ID", "type": "string", "minLength": 1 }, "name": { "title": "Name", "description": "The name of the patron type", "type": "string", "minLength": 2, "form": { "focus": true, "validation": { "validators": { "valueAlreadyExists": { "term": "patron_type_name" } }, "messages": { "alreadyTakenMessage": "The patron type name is already taken." } } } }, "description": { "title": "Description", "description": "The description of the patron type.", "type": "string" }, "organisation": { "title": "Organisation", "type": "object", "properties": { "$ref": { "title": "Organisation URI", "type": "string", "pattern": "^https://ils.rero.ch/api/organisations/.*?$" } } }, "subscription_amount": { "title": "Amount", "description": "Yearly amount due by patrons linked to this patron type.", "type": "number", "default": 0, "minimum": 0, "form": { "wrappers": [ "toggle-switch", "form-field" ], "templateOptions": { "toggle-switch": { "label": "Yearly subscription", "description": "Activation of subscription fees for patrons linked to this type." } } } } } }
o69975
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "DomainName" ], "properties": { "DomainName": { "type": "string", "pattern": "^[a-z][a-z0-9\\-]+$" }, "AccessPolicies": { "type": "string", "pattern": ".+" }, "AdvancedOptions": { "type": "object", "patternProperties": { ".+": { "type": "string", "pattern": ".+" } }, "additionalProperties": false }, "EBSOptions": { "type": "object", "properties": { "EBSEnabled": { "type": "string", "enum": [ "true", "false" ] }, "Iops": { "type": "string", "pattern": "^\\d+$" }, "VolumeSize": { "type": "string", "pattern": "^\\d+$" }, "VolumeType": { "type": "string", "enum": [ "standard", "gp2", "io1" ] } }, "additionalProperties": false }, "ElasticsearchClusterConfig": { "type": "object", "properties": { "DedicatedMasterCount": { "type": "string", "pattern": "^\\d$" }, "DedicatedMasterEnabled": { "type": "string", "enum": [ "true", "false" ] }, "DedicatedMasterType": { "$ref": "#/definitions/ElasticseachNodeType" }, "InstanceCount": { "type": "string", "pattern": "^\\d$" }, "InstanceType": { "$ref": "#/definitions/ElasticseachNodeType" }, "ZoneAwarenessEnabled": { "type": "string", "enum": [ "true", "false" ] } }, "additionalProperties": false }, "SnapshotOptions": { "type": "object", "properties": { "AutomatedSnapshotStartHour": { "type": "string", "pattern": "^\\d$" } }, "additionalProperties": false } }, "additionalProperties": false, "definitions": { "ElasticseachNodeType": { "type": "string", "enum": [ "m3.medium.elasticsearch", "m3.large.elasticsearch", "m3.xlarge.elasticsearch", "m3.2xlarge.elasticsearch", "t2.micro.elasticsearch", "t2.small.elasticsearch", "t2.medium.elasticsearch", "r3.large.elasticsearch", "r3.xlarge.elasticsearch", "r3.2xlarge.elasticsearch", "r3.4xlarge.elasticsearch", "r3.8xlarge.elasticsearch", "i2.xlarge.elasticsearch", "i2.2xlarge.elasticsearch" ] } } }
o21862
{ "properties": { "lat1": { "description": "The latitude of the first location", "type": "number" }, "lat2": { "description": "The latitude of the second location", "type": "number" }, "lon1": { "description": "The longitude of the first location", "type": "number" }, "lon2": { "description": "The longitude of the second location", "type": "number" } }, "required": [ "lat1", "lon1", "lat2", "lon2" ], "type": "object" }
calculate_distance_9339c7aa
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "RevisionDocument (v0.0.4)", "type": "object", "properties": { "id": { "description": "The revision identifier", "type": "number" }, "timestamp": { "description": "The time that the revision was saved in YYYY-MM-DDTHH:MM:SSZ format.", "type": "string" }, "page": { "description": "Metadata about the page the revision was saved to", "type": "object", "properties": { "id": { "description": "The page's identifier", "type": "number" }, "namespace": { "description": "The page's current namespace identifier", "type": "number" }, "title": { "description": "The page's full name (including namespace prefix)", "type": "string" }, "redirect": { "description": "Redirected to page name. Otherwise, null.", "type": "string" }, "restrictions": { "description": "The protection restrictions applied to this page.", "type": "array", "items": { "type": "string" } } } }, "user": { "description": "Metadata about the user who saved the edit. Might be null if the contributor information was deleted.", "type": [ "object", "null" ], "properties": { "id": { "description": "The users's identifier if registered", "type": "number" }, "text": { "description": "The user's user_name if registered or the IP address if anon.", "type": "string" } } }, "minor": { "description": "Is this a minor edit?", "type": "boolean" }, "comment": { "description": "The revision summary. Might be null if the summary was deleted.", "type": "string" }, "text": { "description": "The content of the revision. Might be null if the revision content was deleted.", "type": "string" }, "bytes": { "description": "The size of revision content in bytes", "type": "number" }, "sha1": { "description": "A sha1 hash of the revision content", "type": "string" }, "parent_id": { "description": "The revision ID of the preceding revision", "type": "number" }, "model": { "description": "???", "type": "string" }, "format": { "description": "???", "type": "string" }, "deleted": { "description": "Represents information about the deleted/suppressed status of a revision and it\u2019s associated data.", "type": "object", "properties": { "text": { "description": "Is the text of this revision deleted/suppressed?", "type": "boolean" }, "comment": { "description": "Is the comment of this revision deleted/suppressed?", "type": "boolean" }, "user": { "description": "Is the user of this revision deleted/suppressed?", "type": "boolean" }, "restricted": { "description": "Is the revision restricted?", "type": "boolean" } } } } }
o60173
{ "$comment": "https://json-e.js.org", "$defs": { "jsone-value": { "oneOf": [ { "$ref": "#" }, { "type": "array", "items": { "$ref": "#" } }, { "type": ["null", "boolean", "number", "string", "integer"] } ] }, "jsone-array": { "type": "array", "items": { "$ref": "#/$defs/jsone-value" } }, "jsone-object-array": { "type": "array", "items": { "$ref": "#" } } }, "$id": "https://www.sourcemeta.com/schemas/vendor/[email protected]", "$schema": "https://json-schema.org/draft/2019-09/schema", "additionalProperties": { "$ref": "#/$defs/jsone-value" }, "properties": { "$eval": { "type": "string" }, "$json": { "$ref": "#/$defs/jsone-value" }, "$if": { "type": "string" }, "$then": { "$ref": "#/$defs/jsone-value" }, "$else": { "$ref": "#/$defs/jsone-value" }, "$flatten": { "$ref": "#/$defs/jsone-array" }, "$flattenDeep": { "$ref": "#/$defs/jsone-array" }, "$fromNow": { "type": "string" }, "$let": { "type": "object", "additionalProperties": { "additionalProperties": { "$ref": "#" } } }, "in": { "$ref": "#" }, "$map": { "$ref": "#/$defs/jsone-array" }, "$match": { "$ref": "#" }, "$switch": { "$ref": "#" }, "$merge": { "$ref": "#/$defs/jsone-object-array" }, "$mergeDeep": { "$ref": "#/$defs/jsone-object-array" }, "$sort": { "anyOf": [ { "$ref": "#" }, { "type": "array", "items": { "type": "number" } } ] }, "$reverse": { "$ref": "#" } }, "title": "JSON-e templates", "type": "object" }
jsone
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "Name is the name of the service", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the service", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "type": "object" } }, "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", "properties": { "caBundle": { "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "format": "byte", "type": [ "string", "null" ] }, "group": { "description": "Group is the API group name this server hosts", "type": [ "string", "null" ] }, "groupPriorityMinimum": { "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", "format": "int32", "type": [ "integer", "null" ] }, "insecureSkipTLSVerify": { "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", "type": [ "boolean", "null" ] }, "service": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference", "description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled." }, "version": { "description": "Version is the API version this server hosts. For example, \"v1\"", "type": [ "string", "null" ] }, "versionPriority": { "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "groupPriorityMinimum", "versionPriority" ], "type": "object" }
kb_35_Normalized
{ "properties": { "cipher": { "enum": [ "aes-128-ctr" ], "type": "string" }, "cipherparams": { "additionalProperties": false, "properties": { "iv": { "pattern": "^([0-9]|[a-f]){32}$", "type": "string" } }, "required": [ "iv" ], "type": "object" }, "ciphertext": { "pattern": "^(([0-9]|[a-f]){2}){0,32}$", "type": "string" } }, "required": [ "cipher", "cipherparams", "ciphertext" ], "type": "object" }
o48546
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "engine", "log_level", "port", "mongolog" ], "properties": { "engine": { "type": "object", "properties": { "timeout": { "type": "integer" }, "dsps": { "type": "array", "items": { "type": "object", "properties": { "bid_host": { "type": "string" }, "bid_port": { "type": "integer" }, "bid_path": { "type": "string" }, "id": { "type": "string" } }, "required": [ "bid_host", "bid_port", "bid_path", "id" ] } }, "protocol": { "type": "string" } }, "required": [ "timeout", "dsps", "protocol" ] }, "log_level": { "type": "string", "enum": [ "info", "error", "verbose", "debug" ] }, "port": { "type": "integer" }, "mongolog": { "type": "object" } } }
o19062
{ "$schema": "http://json-schema.org/draft-04/schema#", "$id": "docs/spec/user.json", "title": "User", "description": "Describes the authenticated User for a request.", "type": [ "object", "null" ], "properties": { "id": { "type": [ "string", "number", "null" ], "maxLength": 1024 }, "email": { "type": [ "string", "null" ], "maxLength": 1024 }, "username": { "type": [ "string", "null" ], "maxLength": 1024 } } }
o71333
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "pets": { "type": "object", "properties": { "dog": { "type": "array", "items": { "type": "string" }, "minItems": 0, "maxItems": 42 }, "cat": { "type": "array", "items": { "type": "string" }, "minItems": 0, "maxItems": 11 } } } }, "properties": { "pets": { "$ref": "#/definitions/pets" } }, "required": [ "pets" ] }
o41694
{ "additionalProperties": false, "definitions": { "Items": { "additionalProperties": false, "properties": { "item": { "items": { "additionalProperties": false, "properties": { "USPrice": { "type": "number" }, "comment": { "$ref": "#/definitions/comment" }, "item": { "items": { "additionalProperties": false, "properties": { "USPrice": { "type": "number" }, "comment": { "$ref": "#/definitions/comment" }, "partNum": { "$ref": "#/definitions/SKU" }, "productName": { "type": "string" }, "quantity": { "minimum": 1, "type": "integer" }, "shipDate": { "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}.*$", "type": "string" } }, "required": [ "productName", "quantity", "USPrice", "partNum" ], "type": "object" }, "type": "array" }, "partNum": { "$ref": "#/definitions/SKU" }, "productName": { "type": "string" }, "quantity": { "minimum": 1, "type": "integer" }, "shipDate": { "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}.*$", "type": "string" } }, "required": [ "productName", "quantity", "USPrice", "partNum" ], "type": "object" }, "type": "array" } }, "type": "object" }, "PurchaseOrderType": { "additionalProperties": false, "properties": { "billTo": { "$ref": "#/definitions/USAddress" }, "comment": { "$ref": "#/definitions/comment" }, "items": { "$ref": "#/definitions/Items" }, "orderDate": { "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}.*$", "type": "string" }, "shipTo": { "$ref": "#/definitions/USAddress" } }, "required": [ "shipTo", "billTo", "items" ], "type": "object" }, "SKU": { "pattern": "\\d{3}-[A-Z]{2}", "type": "string" }, "USAddress": { "additionalProperties": false, "properties": { "city": { "type": "string" }, "country": { "enum": [ "US" ], "type": "string" }, "name": { "type": "string" }, "state": { "type": "string" }, "street": { "type": "string" }, "zip": { "type": "number" } }, "required": [ "name", "street", "city", "state", "zip" ], "type": "object" }, "comment": { "type": "string" } }, "description": "Purchase order schema for Example.com.\n Copyright 2000 Example.com. All rights reserved.", "properties": { "purchaseOrder": { "$ref": "#/definitions/PurchaseOrderType" } }, "required": [ "purchaseOrder" ], "title": "test/purchaseorder.xsd", "type": "object" }
o10517
{ "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": { "price": { "description": "The price of the product", "type": "number" }, "product": { "description": "The name of the product", "type": "string" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "product", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "billing_address", "items" ], "type": "object" }
generate_invoice_eeeb8dbc
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Fibaro Home Center Settings Info JSON Schema", "name": "info", "type": "object", "properties": { "serialNumber": { "description": "Home Center Serial Number", "type": "string", "maxLength": 10 }, "mac": { "description": "Home Center MAC Address", "type": "string", "pattern": "^[A-Za-z0-9]{2}(:[A-Za-z0-9]{2}){5}$" }, "softVersion": { "description": "Home Center Software Version", "type": "string", "maxLength": 10 }, "beta": { "description": "Home Center Beta Software Flag", "type": "boolean" }, "zwaveVersion": { "description": "Home Center ZWave Version", "type": "string", "maxLength": 10 }, "serverStatus": { "description": "Home Center Server Timestamp", "type": "integer" }, "defaultLanguage": { "description": "Default Home Center Language", "type": "string", "pattern": "^[a-z]{2}$" }, "sunsetHour": { "description": "Sunset Hour", "type": "string", "pattern": "^[0-9]{2}:[0-9]{2}$" }, "sunriseHour": { "description": "Sunrise Hour", "type": "string", "pattern": "^[0-9]{2}:[0-9]{2}$" }, "hotelMode": { "description": "Hotel Mode Flag", "type": "boolean" }, "updateStableAvailable": { "description": "Stable Image Update Availability Flag", "type": "boolean" }, "temperatureUnit": { "description": "Default temperature units", "type": "string", "maxLength": 1, "minLength": 1 }, "updateBetaAvailable": { "description": "Beta Image Update Availability Flag", "type": "boolean" }, "batteryLowNotification": { "description": "Low Batery Notification Flag", "type": "boolean" }, "newestStableVersion": { "description": "Newest Stable Version", "type": "string" }, "newestBetaVersion": { "description": "Newest Beta Version", "type": "string" } }, "additionalProperties": false }
o56007
{ "$schema" : "http://json-schema.org/draft-07/schema#", "definitions" : { "ConfigParamKey" : { "type" : "string", "pattern" : "^(?=[^=]+$)(?!\\s+$)(.|\\n)+$" }, "EmailAddress" : { "type" : "string", "pattern" : "^.+@.+$", "format" : "gradle-enterprise:email-address", "description" : "Internet email address conforming to most of RFC 822 syntax rules and by that allowing a majority of internalized email addresses as well." }, "EncryptedSecret" : { "type" : "string", "pattern" : "^(?:plain:.+|aes256:(?:\\s*[A-Za-z0-9+/]){16}:(?:\\s*[A-Za-z0-9+/]){16}:(?:(?:\\s*[A-Za-z0-9+/]){4})*(?:(?:\\s*[A-Za-z0-9+/]){2}(?:\\s*=){2}|(?:\\s*[A-Za-z0-9+/]){3}(?:\\s*=))?\\s*)$" }, "HashedSecret" : { "type" : "string", "pattern" : "^(?:\\s*[A-Za-z0-9+/]){43}(?:\\s*=):(?:(?:\\s*[A-Za-z0-9+/]){4})*(?:(?:\\s*[A-Za-z0-9+/]){2}(?:\\s*=){2}|(?:\\s*[A-Za-z0-9+/]){3}(?:\\s*=))?\\s*$" }, "Map(ConfigParamKey,String)" : { "type" : "object", "additionalProperties" : { "type" : "string" }, "propertyNames" : { "$ref" : "#/definitions/ConfigParamKey" } }, "Role" : { "type" : "object", "properties" : { "assignToNewExternalUsers" : { "type" : "boolean" }, "description" : { "type" : [ "string", "null" ] }, "displayName" : { "type" : [ "string", "null" ] }, "externalValue" : { "type" : [ "string", "null" ] }, "permissions" : { "uniqueItems" : true, "type" : "array", "items" : { "type" : "string", "enum" : [ "viewScan", "exportData", "administerGe", "administerProjects", "administerCache", "publishScan", "testDistribution", "readCache", "writeCache", "accessAllProjects", "accessAnonymousProjectData" ] } } }, "additionalProperties" : false, "minProperties" : 1 }, "TimeOfDay" : { "type" : "string", "pattern" : "^(?:[01]\\d|2[0-3]):[0-5]\\d$" } }, "type" : "object", "required" : [ "systemPassword", "version" ], "description" : "Gradle Enterprise configuration schema", "additionalProperties" : false, "minProperties" : 1, "properties" : { "version" : { "const" : 7, "description" : "The version of the config file model (must be 7)." }, "advanced" : { "type" : "object", "properties" : { "app" : { "type" : "object", "properties" : { "heapMemory" : { "type" : "integer", "description" : "The amount of heap memory allocated to the application", "minimum" : 100 }, "offHeapMemory" : { "type" : "integer", "description" : "The amount of off-heap memory allocated to the application", "minimum" : 100 }, "params" : { "allOf" : [ { "$ref" : "#/definitions/Map(ConfigParamKey,String)" }, { "description" : "Configuration parameters for the application" } ] }, "scanPayloadCacheSize" : { "type" : "integer", "description" : "The amount of memory for the scan payload event stream cache" } }, "additionalProperties" : false, "minProperties" : 1 }, "appBackgroundProcessor" : { "type" : "object", "properties" : { "heapMemory" : { "type" : "integer", "description" : "The amount of heap memory allocated to the application", "minimum" : 100 }, "offHeapMemory" : { "type" : "integer", "description" : "The amount of off-heap memory allocated to the application", "minimum" : 100 }, "params" : { "allOf" : [ { "$ref" : "#/definitions/Map(ConfigParamKey,String)" }, { "description" : "Configuration parameters for the application" } ] } }, "additionalProperties" : false, "minProperties" : 1 }, "buildCacheNode" : { "type" : "object", "properties" : { "heapMemory" : { "type" : "integer", "description" : "The amount of heap memory allocated to the application", "minimum" : 100 }, "offHeapMemory" : { "type" : "integer", "description" : "The amount of off-heap memory allocated to the application", "minimum" : 100 }, "params" : { "allOf" : [ { "$ref" : "#/definitions/Map(ConfigParamKey,String)" }, { "description" : "Configuration parameters for the application" } ] } }, "additionalProperties" : false, "minProperties" : 1 }, "distributionBroker" : { "type" : "object", "properties" : { "heapMemory" : { "type" : "integer", "description" : "The amount of heap memory allocated to the application", "minimum" : 100 }, "offHeapMemory" : { "type" : "integer", "description" : "The amount of off-heap memory allocated to the application", "minimum" : 100 }, "params" : { "allOf" : [ { "$ref" : "#/definitions/Map(ConfigParamKey,String)" }, { "description" : "Configuration parameters for the application" } ] } }, "additionalProperties" : false, "minProperties" : 1 } }, "additionalProperties" : false, "minProperties" : 1 }, "auth" : { "type" : "object", "properties" : { "anonymousPermissions" : { "description" : "Permissions to assign to anonymous users - does not support administerGe, administerCache, or testDistribution", "uniqueItems" : true, "type" : "array", "items" : { "type" : "string", "enum" : [ "viewScan", "exportData", "administerGe", "administerProjects", "administerCache", "publishScan", "testDistribution", "readCache", "writeCache", "accessAllProjects", "accessAnonymousProjectData" ] } }, "external" : { "anyOf" : [ { "type" : "null" }, { "type" : "object", "properties" : { "type" : { "enum" : [ "ldap", "saml" ] } }, "required" : [ "type" ], "allOf" : [ { "if" : { "properties" : { "type" : { "const" : "ldap" } } }, "then" : { "type" : "object", "required" : [ "connectionUrl", "displayName", "roles", "users" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "ldap" }, "bindUser" : { "type" : [ "object", "null" ], "properties" : { "dn" : { "type" : "string", "description" : "Distinguished name for the LDAP user account" }, "password" : { "allOf" : [ { "$ref" : "#/definitions/EncryptedSecret" }, { "description" : "Password for the LDAP user account" } ] } }, "required" : [ "dn", "password" ], "additionalProperties" : false, "minProperties" : 1, "description" : "Binding information used when LDAP requires authentication" }, "connectionUrl" : { "type" : "string", "description" : "URL used to connect to LDAP server" }, "displayName" : { "type" : "string", "description" : "Name of this identity provider configuration" }, "roles" : { "allOf" : [ { "if" : { "properties" : { "type" : { "const" : "external" } } }, "then" : { "type" : "object", "required" : [ "baseDn", "membershipAttribute", "membershipAttributeType", "nameAttribute", "objectClass" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "external" }, "baseDn" : { "type" : "string", "description" : "Base DN for the subtree holding roles" }, "membershipAttribute" : { "type" : "string", "description" : "Name of the LDAP attribute holding role membership" }, "membershipAttributeType" : { "type" : "string", "enum" : [ "dn", "uid" ], "description" : "Type of the membership-ldap-attribute" }, "nameAttribute" : { "type" : "string", "description" : "Name of the LDAP attribute holding the role name" }, "objectClass" : { "type" : "string", "description" : "LDAP object classes for roles" }, "retrieveStrategy" : { "type" : "string", "enum" : [ "groupMember", "userMemberof", "matchingRuleInChain" ], "description" : "Type of roles retrieve strategy (defaults to GROUP_MEMBER)" } } } }, { "if" : { "properties" : { "type" : { "const" : "local" } } }, "then" : { "type" : "object", "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "local" } } } } ], "type" : "object", "properties" : { "type" : { "enum" : [ "external", "local" ] } }, "required" : [ "type" ], "minProperties" : 1, "description" : "Holds information when the identity provider manages roles" }, "users" : { "type" : "object", "properties" : { "attributes" : { "type" : "object", "properties" : { "email" : { "type" : "string", "description" : "Name of the LDAP attribute holding email address" }, "firstName" : { "type" : "string", "description" : "Name of the LDAP attribute holding first name" }, "lastName" : { "type" : "string", "description" : "Name of the LDAP attribute holding last name" }, "userName" : { "type" : "string", "description" : "Name of the LDAP attribute holding user name" }, "uuid" : { "type" : "string", "description" : "Name of the LDAP attribute holding a unique id" } }, "required" : [ "email", "firstName", "lastName", "userName", "uuid" ], "additionalProperties" : false, "minProperties" : 1, "description" : "Describes how user attributes are mapped" }, "baseDn" : { "type" : "string", "description" : "Base DN for the subtree holding users" }, "filter" : { "allOf" : [ { "type" : [ "string", "null" ], "format" : "gradle-enterprise:ldap-filter", "description" : "LDAP search filter expression." }, { "description" : "Optional LDAP filter expression to limit access" } ] } }, "required" : [ "attributes", "baseDn" ], "additionalProperties" : false, "minProperties" : 1 } } } }, { "if" : { "properties" : { "type" : { "const" : "saml" } } }, "then" : { "type" : "object", "required" : [ "displayName", "idpMetadata", "roles" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "saml" }, "displayName" : { "type" : "string", "description" : "Name of this identity provider configuration" }, "idpMetadata" : { "type" : "string", "pattern" : "^(?:(?:\\s*[A-Za-z0-9+/]){4})*(?:(?:\\s*[A-Za-z0-9+/]){2}(?:\\s*=){2}|(?:\\s*[A-Za-z0-9+/]){3}(?:\\s*=))?\\s*$", "description" : "SAML metadata that describes this identity provider" }, "options" : { "type" : "object", "properties" : { "requireEncryptedAssertion" : { "type" : "boolean", "description" : "Encrypt SAML assertions?" }, "signAuthenticationRequests" : { "type" : "boolean", "description" : "Sign authentication requests?" }, "validateAssertionSignature" : { "type" : "boolean", "description" : "Enable signature validation of SAML assertions?" }, "validateResponseSignature" : { "type" : "boolean", "description" : "Enable signature validation of SAML responses?" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Groups all options and is only necessary when one or more needs to be enabled" }, "roles" : { "allOf" : [ { "if" : { "properties" : { "type" : { "const" : "external" } } }, "then" : { "type" : "object", "required" : [ "attribute" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "external" }, "attribute" : { "type" : "string", "description" : "Name of the SAML attribute holding role names" } } } }, { "if" : { "properties" : { "type" : { "const" : "local" } } }, "then" : { "type" : "object", "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "local" } } } } ], "type" : "object", "properties" : { "type" : { "enum" : [ "external", "local" ] } }, "required" : [ "type" ], "minProperties" : 1, "description" : "Holds information when the identity provider manages roles" }, "userAttributes" : { "type" : "object", "properties" : { "email" : { "type" : [ "string", "null" ], "description" : "Name of the SAML attribute holding email address" }, "firstName" : { "type" : [ "string", "null" ], "description" : "Name of the SAML attribute holding first name" }, "lastName" : { "type" : [ "string", "null" ], "description" : "Name of the SAML attribute holding last name" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Describes how user attributes are mapped" } } } } ], "minProperties" : 1 } ] }, "roles" : { "type" : "object", "additionalProperties" : { "$ref" : "#/definitions/Role" }, "propertyNames" : { "type" : "string" } }, "scim" : { "type" : "object", "properties" : { "enabled" : { "type" : "boolean", "description" : "Whether to allow access to the SCIM API for user and group management" }, "token" : { "type" : [ "object", "null" ], "properties" : { "hash" : { "allOf" : [ { "$ref" : "#/definitions/HashedSecret" }, { "description" : "The hash of the token" } ] }, "length" : { "type" : "integer", "description" : "The length of the token" }, "prefix" : { "type" : "string", "description" : "The prefix of the token" } }, "required" : [ "hash", "length", "prefix" ], "additionalProperties" : false, "minProperties" : 1, "description" : "Token to authenticate with the SCIM API" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Configuration for System for Cross-domain Identity Management (SCIM) support" }, "timeouts" : { "type" : "object", "properties" : { "accessTokenLifespan" : { "type" : "integer", "description" : "The maximum time before an access token is expired (in minutes), default is 10 minutes" }, "ssoSessionIdleTimeout" : { "type" : "integer", "description" : "The time a login session is allowed to be idle before it expires (in minutes), default is 4 days (5760 minutes)" }, "ssoSessionMaxLifespan" : { "type" : "integer", "description" : "The maximum time before a login session is expired (in minutes), default is 30 days (43200 minutes)" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Timeouts you can specify for user logins in Gradle Enterprise" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Configuration of Gradle Enterprise authentication options" }, "backups" : { "type" : [ "object", "null" ], "properties" : { "backupsToRetain" : { "type" : "integer", "description" : "How many old backups to keep", "minimum" : 1 }, "emailNotification" : { "type" : "boolean", "description" : "Send an email when backup is complete" }, "schedule" : { "type" : "object", "properties" : { "type" : { "enum" : [ "daily", "weekly", "cron" ] } }, "required" : [ "type" ], "allOf" : [ { "if" : { "properties" : { "type" : { "const" : "daily" } } }, "then" : { "type" : "object", "required" : [ "timeOfDay" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "daily" }, "timeOfDay" : { "allOf" : [ { "$ref" : "#/definitions/TimeOfDay" }, { "description" : "Time (in UTC) to perform the backup" } ] } } } }, { "if" : { "properties" : { "type" : { "const" : "weekly" } } }, "then" : { "type" : "object", "required" : [ "dayOfWeek", "timeOfDay" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "weekly" }, "dayOfWeek" : { "type" : "string", "enum" : [ "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday" ], "description" : "Day (in UTC) to perform the backup" }, "timeOfDay" : { "allOf" : [ { "$ref" : "#/definitions/TimeOfDay" }, { "description" : "Time (in UTC) to perform the backup" } ] } } } }, { "if" : { "properties" : { "type" : { "const" : "cron" } } }, "then" : { "type" : "object", "required" : [ "expression" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "cron" }, "expression" : { "type" : "string", "pattern" : "^(?:\\*|(?:(?:\\*\\/)?[1-5]?[0-9])) (?:\\*|(?:(?:\\*\\/)?(?:1?[0-9]|2[0-3]))) (?:\\*|(?:(?:\\*\\/)?(?:[1-9]|[12][0-9]|3[0-1]))) (?:\\*|(?:(?:\\*\\/)?(?:[1-9]|1[0-2]))) (?:\\*|(?:(?:\\*\\/)?[0-6]))$", "description" : "Custom cron expression for backup time" } } } } ], "minProperties" : 1 } }, "required" : [ "schedule" ], "additionalProperties" : false, "minProperties" : 1, "description" : "Automatic backup configuration" }, "buildCache" : { "type" : "object", "properties" : { "allowUntrustedNodeSsl" : { "type" : "boolean", "description" : "Allow communication with nodes running over untrusted SSL" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Configuration specific to the build cache app" }, "buildScans" : { "type" : "object", "properties" : { "diskSpaceMonitoring" : { "type" : "object", "properties" : { "autoDeleteWhileFreeSpaceLessThanPercentage" : { "type" : [ "integer", "null" ], "description" : "Threshold of free disk space before old scans will be automatically deleted", "maximum" : 100, "minimum" : 1 }, "rejectIncomingWhileFreeSpaceLessThanPercentage" : { "type" : [ "integer", "null" ], "description" : "Threshold of free disk space before new scans will be rejected", "maximum" : 100, "minimum" : 1 }, "sendWarningEmailWhenFreeSpaceLessThanPercentage" : { "type" : [ "integer", "null" ], "description" : "Threshold of free disk space before a warning is sent to users publishing a build scan", "maximum" : 100, "minimum" : 1 } }, "additionalProperties" : false, "minProperties" : 1 }, "incomingStorageType" : { "anyOf" : [ { "type" : "null" }, { "type" : "string", "enum" : [ null, "database", "objectStorage" ], "description" : "Storage type of incoming builds" } ] }, "keepDays" : { "type" : [ "integer", "null" ], "description" : "How many days of scans should be retained", "minimum" : 2 } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Configuration specific to the build scans app" }, "dailyMaintenanceTime" : { "allOf" : [ { "$ref" : "#/definitions/TimeOfDay" }, { "description" : "Which time (UTC) should retention-cleanup be performed" } ] }, "email" : { "type" : [ "object", "null" ], "properties" : { "administratorAddress" : { "allOf" : [ { "$ref" : "#/definitions/EmailAddress" }, { "description" : "Email address notifications are sent to" } ] }, "authentication" : { "type" : [ "object", "null" ], "properties" : { "password" : { "$ref" : "#/definitions/EncryptedSecret" }, "type" : { "type" : "string", "enum" : [ "login", "cramMd5", "plain" ] }, "username" : { "type" : "string" } }, "required" : [ "password", "type", "username" ], "additionalProperties" : false, "minProperties" : 1, "description" : "SMTP authentication method" }, "fromAddress" : { "allOf" : [ { "$ref" : "#/definitions/EmailAddress" }, { "description" : "Email address notifications are sent from" } ] }, "smtpServer" : { "type" : "string", "pattern" : "^(?:(?:(?:[0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}(?:[0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])|(?:(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*(?:[A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9])):(?:[1-9][0-9]{0,3}|[1-6][0-5][0-5][0-3][0-5])$", "description" : "Address and port of the smtp server" }, "sslProtocol" : { "anyOf" : [ { "type" : "null" }, { "type" : "string", "enum" : [ null, "startTls", "implicitTls" ], "description" : "SMTP protocol flavour" } ] } }, "required" : [ "administratorAddress", "fromAddress", "smtpServer" ], "additionalProperties" : false, "minProperties" : 1, "description" : "SMTP configuration for notifications" }, "helpContact" : { "type" : "object", "properties" : { "email" : { "anyOf" : [ { "type" : "null" }, { "$ref" : "#/definitions/EmailAddress" } ], "description" : "The email address users should contact" }, "name" : { "type" : [ "string", "null" ], "description" : "The name of the contact" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Who users should contact if they have a problem" }, "network" : { "type" : [ "object", "null" ], "properties" : { "additionalTrust" : { "type" : [ "string", "null" ], "pattern" : "(?:^|\\r?\\n)-----BEGIN CERTIFICATE-----(?:\\r?\\n)(?:(?:\\s*[A-Za-z0-9+/]){4})*(?:(?:\\s*[A-Za-z0-9+/]){2}(?:\\s*=){2}|(?:\\s*[A-Za-z0-9+/]){3}(?:\\s*=))?\\s*(?:\\r?\\n)-----END CERTIFICATE-----(?:$|\\r?\\n)", "format" : "gradle-enterprise:x509-certs-pem", "description" : "Required if Gradle Enterprise must communicate with servers using certificates not trusted by default" }, "proxy" : { "type" : [ "object", "null" ], "properties" : { "auth" : { "type" : [ "object", "null" ], "properties" : { "password" : { "allOf" : [ { "$ref" : "#/definitions/EncryptedSecret" }, { "description" : "Proxy password" } ] }, "username" : { "type" : "string", "description" : "Proxy username" } }, "required" : [ "password", "username" ], "additionalProperties" : false, "minProperties" : 1, "description" : "Proxy authentication credentials" }, "excludedHosts" : { "description" : "A list of hosts that should not be proxied", "type" : "array", "items" : { "type" : "string", "pattern" : "^(?:(?:(?:[0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}(?:[0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])|(?:(?:^[\\*]|[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*(?:[A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9]))$", "format" : "gradle-enterprise:excludedHosts" } }, "host" : { "type" : "string", "pattern" : "^(?:(?:(?:[0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}(?:[0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])|(?:(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*(?:[A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9]))$", "format" : "gradle-enterprise:host", "description" : "Proxy host" }, "port" : { "type" : "integer", "description" : "Proxy port", "maximum" : 65535, "minimum" : 1 }, "protocol" : { "type" : "string", "enum" : [ "http", "https" ], "description" : "Proxy protocol" } }, "required" : [ "host" ], "additionalProperties" : false, "minProperties" : 1, "description" : "Http proxy config" } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Network configuration" }, "objectStorage" : { "type" : "object", "properties" : { "provider" : { "anyOf" : [ { "type" : "null" }, { "type" : "object", "properties" : { "type" : { "enum" : [ "s3" ] } }, "required" : [ "type" ], "allOf" : [ { "if" : { "properties" : { "type" : { "const" : "s3" } } }, "then" : { "type" : "object", "required" : [ "bucket", "credentials", "region" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "type" : { "const" : "s3" }, "bucket" : { "type" : "string", "description" : "The name of the bucket to store the scan payloads" }, "credentials" : { "allOf" : [ { "if" : { "properties" : { "source" : { "const" : "configuration" } } }, "then" : { "type" : "object", "required" : [ "accessKey", "secretKey" ], "additionalProperties" : false, "minProperties" : 1, "properties" : { "source" : { "const" : "configuration" }, "accessKey" : { "type" : "string" }, "secretKey" : { "$ref" : "#/definitions/EncryptedSecret" } } } }, { "if" : { "properties" : { "source" : { "const" : "environment" } } }, "then" : { "type" : "object", "additionalProperties" : false, "minProperties" : 1, "properties" : { "source" : { "const" : "environment" } } } } ], "type" : "object", "properties" : { "source" : { "enum" : [ "configuration", "environment" ] } }, "required" : [ "source" ], "minProperties" : 1, "description" : "The aws credentials" }, "region" : { "type" : "string", "description" : "The region of the bucket" } } } } ], "minProperties" : 1 } ] } }, "additionalProperties" : false, "minProperties" : 1, "description" : "Object Storage configuration" }, "systemPassword" : { "allOf" : [ { "$ref" : "#/definitions/HashedSecret" }, { "description" : "The password for the system user" } ] } } }
gradle-enterprise-config-schema-7
{ "properties": { "attributes": { "properties": { "integer": { "title": "integer", "type": "integer" }, "string": { "items": { "type": "string" }, "minItems": 1, "title": "string", "type": "array" } }, "title": "feature attributes", "type": "object" } }, "title": "DataType2", "type": "object" }
o13977
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDaemonSet": { "description": "Spec to control the desired behavior of daemon set rolling update.", "properties": { "maxUnavailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDaemonSet", "description": "Rolling update config params. Present only if type = \"RollingUpdate\"." }, "type": { "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", "type": [ "string", "null" ] } }, "type": "object" }
kb_245_Normalized
{ "id": "#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "JSON Schema for a Mason root document. See: https://github.com/JornWildt/Mason/blob/master/Documentation/Mason-draft-2.md", "definitions": { "controls": { "type": "object", "patternProperties": { ".*": { "type": "object", "title": "Mason control", "description": "Property name must be either a standard link relation (e.g. \"self\", \"up\", \"prev\", \"next\"), a fully-qualified URL pointing to documentation for the relation, or a Mason curie resolvable to a URL that points to such documentation.", "properties": { "href": { "description": "Hypermedia reference - a URI or URI template.", "type": "string" }, "isHrefTemplate": { "type": "boolean", "description": "Boolean indicating whether \"href\" is a URI template or concrete URI (default values is false)." }, "title": { "type": "string", "description": "Title of the control" }, "description": { "type": "string", "description": "Description of the control" }, "method": { "type": "string", "description": "HTTP method to use, e.g. GET, POST", "default": "GET" }, "encoding": { "type": "string", "description": "Required encoding of data in request body.", "enum": [ "none", "json", "json+files", "raw" ], "default": "none" }, "jsonFile": { "type": "string", "description": "Name of property that contains the JSON data (only applicable if encoding is 'json+files')" }, "schema": { "type": "object", "description": "Embedded schema definition of request body and href template parameters." }, "schemaUrl": { "type": "string", "description": "URL to referenced schema definition of request body and href template parameters." }, "template": { "type": "object", "description": "Request template data" }, "accept": { "type": "array", "description": "List of accepted media types.", "items": { "type": "string" } }, "output": { "type": "array", "description": "List of possible returned media types.", "items": { "type": "string" } }, "files": { "type": "array", "description": "List of parts definition for multipart requests.", "items": { "type": "object" } }, "alt": { "description": "list of alternative equivalent controls.", "$ref": "#/definitions/controls" } }, "additionalProperties": false, "required": [ "href" ] } } } }, "type": "object", "properties": { "@meta": { "type": "object", "description": "Meta information about the response", "properties": { "@title": { "type": "string", "description": "Descriptive title" }, "@description": { "type": "string", "description": "Descriptive text" }, "@controls": { "$ref": "#/definitions/controls" } } }, "@namespaces": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "name": { "type": "string", "description": "URL prefix where descriptions of link relations are found" } }, "additionalProperties": false } }, "additionalProperties": false }, "@controls": { "$ref": "#/definitions/controls" }, "@error": { "type": "object", "description": "Error messages and descriptions", "properties": { "@id": { "type": "string", "description": "Unique identifier for later reference to the situation that resulted in a error condition (for instance when looking up a log entry)." }, "@code": { "type": "string", "description": "Code describing the error condition in general." }, "@messages": { "type": "array", "description": "Array of additional human readable error messages.", "items": { "type": "string" } }, "@details": { "type": "string", "description": "Extensive human readable message directed at the client developer." }, "@httpStatusCode": { "type": "integer", "description": "HTTP status code from the latest response." }, "@controls": { "$ref": "#/definitions/controls" }, "@time": { "type": "string", "description": "Date in the format defined by RFC 3339. Example: \"1985-04-12T23:20:50.52Z\". It should contain a timestamp of when the error occurred." } }, "required": [ "@message" ] } }, "additionalProperties": true }
o8370
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "org.eclipse.persistence.testing.jaxb.json.namespaces.Person", "type": "object", "properties": { "ns0.person": { "type": "object", "properties": { "@ns2.id": { "type": "integer" }, "ns1.firstName": { "type": "string" }, "ns1.middleNames": { "type": "array", "items": { "type": "string" } }, "ns2.lastName": { "type": "string" }, "ns3.contact": { "type": "object", "properties": { "ns1.address": { "$ref": "#/definitions/Address" } } }, "ns1.a": { "type": "string" }, "ns1.aa": { "type": "string" }, "ns1.aaa": { "type": "string" }, "ns1.aaaa": { "$ref": "#/definitions/Address" }, "ns1.aaaaa": { "type": "array", "items": { "$ref": "#/definitions/Address" } }, "@ns1.theattribute": { "type": "string" } }, "additionalProperties": false } }, "definitions": { "Address": { "type": "object", "properties": { "id": { "type": "string" }, "street": { "type": "string" }, "city": { "type": "string" } }, "additionalProperties": false } } }
o42293
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "line_endings": "unix", "$id": "https://qualisys.com/schemas/paf-module", "title": "Qualisys PAF Module", "description": "A settings.paf file used by Qualisys Project Automation Framework (PAF) Modules", "type": "object", "properties": { "Project ID": { "title": "Project ID", "description": "A human readable name that identifies the project. This name is recorded in data files and should not be changed once data collection has started as doing so will render data files useless.", "type": "string" }, "Root type": { "title": "Root type", "description": "Reference to the class or type name to use at the highest level in the PAF item hierarchy.", "type": "string" }, "Date format": { "title": "Date format", "description": "Specifies what date format to use in this project. Applies mainly to exports and column values but not to the field edit dialog. Accepted values are Iso, Little endian and Middle endian.", "enum": ["Iso", "Little endian", "Middle endian"] }, "Date separator": { "title": "Date separator", "description": "Specifies which token to use to separate the parts of the dates when formatting them. Accepted values are Dash, Slash, Dot and None.", "enum": ["Dash", "Slash", "Dot", "None"] }, "Time format": { "title": "Time format", "description": "Specifies what time format to use in this project. Applies mainly to exports and column values but not to the field edit dialog. Accepted values are 12-hour and 24-hour.", "enum": ["12-hour", "24-hour"] }, "Filename filter": { "title": "Filename filter", "description": "A regular expression that determines which files (in addition to the qtm files) that will be visible in the tree view.", "type": "string" }, "Export c3d settings": { "title": "Export c3d settings", "description": "This section is optional and is used when exporting to c3d file.", "type": "object", "properties": { "Point units": { "title": "Point units in C3D export", "description": "Possible units are: mm, cm or m.", "enum": ["mm", "cm", "m"] } } }, "Default fields": { "title": "Default fields", "description": "A sequence of names of fields that will be added to all types. QTM also adds a number of default fields automatically. For a list of these, see the Default Fields section.", "type": "array", "items": { "type": "string" }, "minItems": 1 }, "Package Information": { "description": "This section contains information that the package management system uses. It is used mainly when installing packages and when creating new projects based on a package.", "type": "object", "properties": { "Name": { "title": "Package name", "description": "The name of the package. Shown when creating a new project and used to keep the connection between a project and the package it was created from to, for instance, know if there is a new version of a package. This means that this value should not be changed unless strictly necessary because that will break the connection between existing projects and new versions of the package.", "type": "string" }, "Version": { "title": "Module version", "description": "Two numbers separated by a period sign (e.g. 44.23), three numbers separated by period signs (e.g. 1.45.3214), or three numbers separated by a period sign and a build number separated by a plus sign (e.g. 1.3.0+188). The version of the package. Used to keep track of which version a project is based on. Visible in the about box when a project is open. Useful for debugging purposes and for knowing if the package can be upgraded.", "type": "string", "pattern": "^\\d+\\.\\d+(\\.\\d+(\\+\\d+)?)?$" }, "Required QTM version": { "title": "Required QTM version", "description": "Two or three digits separated by a period sign. The QTM version that is required for this package to work properly. Checked on install time. Must include major and minor version number and can optionally include build number too.", "type": "string", "pattern": "^\\d+\\.\\d+(\\.\\d+)?$" }, "Previous names": { "title": "Previous names", "description": "A sequence of names that this package has had earlier in development. This is used only when checking if a project should be upgraded and allows for packages to be renamed without losing the project upgrade path.", "type": "array", "items": { "type": "string" }, "minItems": 1 } }, "required": [ "Name", "Version", "Required QTM version" ] }, "Types": { "title": "Types definition", "description": "", "type": "object", "patternProperties": { ".+": { "title": "Type", "description": "All type names have to be unique. Each class definition is a map that contains the type names as keys and the type definitions as values.", "properties": { "Fields": { "title": "Field reference", "description": "Naming any field as a key and a default value for that field in this type is permitted. Any default value given here overrides the default value from the field specification. The default value should always be a scalar except for string fields that also support sequences. See documentation of the Default property in the Fields section for more information.", "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" }, { "type": "null" } ] } }, "patternProperties": { ".+": { "title": "Class", "description": "All class names have to be unique. Each class definition is a map that contains the type names as keys and the type definitions as values.", "properties": { "Fields": { "title": "Class fields", "description": "Fields to use for this class. If this key is present it should contain a map or sequence that contains fields that should be defined for each type of this class. If the fields are given as a map they also specify default values for the fields. A type can override the default value of a field by including the field name as part of its own definition but it cannot undefine a field that has been defined in the class.", "anyOf": [ { "type": "array", "items": { "type": "string" }, "minItems": 1 }, { "type": "object", "patternProperties": { ".+": { "type": "string" } } } ] }, "Children": { "title": "Children types or classes", "description": "A sequence of references to class or type names that can be created as children to items of this type. A type that has children cannot have measurements.", "type": "array", "items": { "type": "string" } }, "Measurements": { "title": "Measurements", "description": "A sequence of measurement type names. If a type has the measurement property, it is considered to be a session-like type. It cannot have other children and it will have a wizard interface containing measurements (of the types specified by this parameter) and analyses.", "type": "array", "items": { "type": "string" } }, "Analyses": { "title": "Analyses", "description": "A sequence of analysis names. These will be shown in the Analyze dropdown of the session wizard. The first analysis in the list will be the default analysis that is run when the button itself is clicked.", "type": "array", "items": { "type": "string" } }, "Display order": { "title": "Field display order", "description": "A sequence of field names denoting the order in which to display the fields of items of this type. Inherited fields can also be entered. Fields named here will be displayed first in field lists. Fields that are not named are displayed afterwards in an arbitrary order.", "type": "array", "items": { "type": "string" } }, "Heading": { "title": "Field display order", "description": "An optional string displayed instead of the type name as a heading for the measurement type in the wizard pane.", "type": "string" }, "PDF guide": { "title": "Path to PDF guide", "description": "The path to a PDF file to show when the user clicks the Show guide button in the wizard pane.", "type": "string" }, "Directory pattern": { "title": "Directory pattern", "description": "A naming pattern for the directory created for each item (except measurements, for which this property is useless).\n\nThe pattern can contain any text as well as names of items braced by $ signs, so for instance the directory pattern “Patient $ID$” would be expanded to Patient followed by the contents of the ID field of that item. In addition to the field names $ClassName$, $TypeName$, $WorkingDirectory$, $TemplateDirectory$ and $InstanceNumber$ can also be used in the naming patterns.\n\nAn item reference can also specify additional formatting options, inspired by those of the printf format strings. The syntax is: $[Opt. pad char][Minimum length]:Field name$ so for instance $08:ID$ would print the id field and pad it with zeros to a width of 8 characters.\n\nThe default naming pattern is $TypeName$. If directory names clash when a new directory is created, a counter is appended to the name to make it unique.", "type": "string" }, "Icon": { "title": "Path to icon file", "description": "The path to an icon file (.ico) to show at the side of the item in the tree view. The path is relative to the `Templates` folder.", "type": "string" } }, "patternProperties": { ".+": { "title": "Field reference", "description": "Naming any field as a key and a default value for that field in this type is permitted. Any default value given here overrides the default value from the field specification. The default value should always be a scalar except for string fields that also support sequences. See documentation of the Default property in the Fields section for more information.", "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" }, { "type": "null" } ] } }, "oneOf": [ { "required": ["Children"] }, { "required": ["Measurements"] } ] } } } } }, "Measurements": { "title": "Measurement definitions", "description": "", "type": "object", "patternProperties": { ".+": { "title": "Measurement", "description": "A uniquely named measurement, defining its properties.", "properties": { "Fields": { "title": "Class fields", "description": "Fields to use for this class. If this key is present it should contain a map or sequence that contains fields that should be defined for each type of this class. If the fields are given as a map they also specify default values for the fields. A type can override the default value of a field by including the field name as part of its own definition but it cannot undefine a field that has been defined in the class.", "anyOf": [ { "type": "array", "items": { "type": "string" }, "minItems": 1 }, { "type": "object", "patternProperties": { ".+": { "type": "string" } } } ] }, "Count": { "title": "Default measurement button count", "description": "The default number of measurement buttons that kind of measurement in a new session.", "type": "integer", "minimum": 0 }, "Minimum count": { "title": "Minimum measurement count", "description": "The minimum number of measurements of that kind in a session. The +/- buttons will not allow the count to go below this and if any analysis lists this kind of measurement as a prerequisite, the analysis will not be available until the minimum number of measurements have been performed.", "type": "integer", "minimum": 0 }, "Maximum count": { "title": "Maximum measurement count", "description": "The maximum number of measurements of that kind in a session.", "type": "integer", "minimum": 0 }, "Measurement length": { "title": "Measurement recording length", "description": "The default length of this kind of measurement.", "type": "number", "minimum": 0 }, "Pretrigger length": { "title": "Pretrigger length", "description": "The length of the pretrigger buffer. Setting this to zero disables pretrigger. Leaving this option out uses the project setting for pretrigger.", "type": "number", "minimum": 0 }, "Frequency": { "title": "Measurement frequency", "description": "The frequency used for this kind of measurement. If omitted, the frequency is not changed when starting the measurement.", "type": "number", "minimum": 1 }, "AIM models": { "title": "AIM models", "description": "A semicolon separated list (not a YAML sequence) of AIM models that should be applied to measurements of this kind.", "type": "string" }, "Display fields dialog after creation": { "title": "Display fields dialog after creation", "description": "If this value is set to true, the fields dialog will be displayed when a measurement has finished to allow the user to edit the fields of the measurement item in the same way that dialog is displayed when other (non-measurement) items are created.", "$ref": "#/$defs/yaml-boolean" }, "Heading": { "title": "Measurement heading", "description": "An optional string displayed instead of the type name as a heading for the measurement type in the wizard pane.", "type": "string" }, "Display order": { "title": "Field display order", "description": "A sequence of field names denoting the order in which to display the fields of items of this type. Inherited fields can also be entered. Fields named here will be displayed first in field lists. Fields that are not named are displayed afterwards in an arbitrary order.", "type": "array", "items": { "type": "string" }, "minItems": 1 }, "Measurement pattern": { "title": "Measurement pattern", "description": "A naming pattern for measurements created for each item. The pattern can contain any text as well as names of items braced by $ signs, so for instance the measurement pattern “Patient $ID$” would be expanded to Patient followed by the contents of the ID field of that item. In addition to the field names $ClassName$, $TypeName$, $WorkingDirectory$, $TemplateDirectory$ and $InstanceNumber$ can also be used in the naming patterns.\n\nAn item reference can also specify additional formatting options, inspired by those of the printf format strings. The syntax is: $[Opt. pad char][Minimum length]:Field name$ so for instance $08:ID$ would print the id field and pad it with zeros to a width of 8 characters.\n\nThe default naming pattern is $TypeName$. If directory names clash when a new directory is created, a counter is appended to the name to make it unique. The file extension .qtm will be added automatically. The default value is $TypeName$ $InstanceNumber$.", "type": "string" } }, "patternProperties": { ".+": { "title": "Field reference", "description": "Naming any field as a key and a default value for that field in this type is permitted. Any default value given here overrides the default value from the field specification. The default value should always be a scalar except for string fields that also support sequences. See documentation of the Default property in the Fields section for more information.", "anyOf": [ { "type": "string" }, { "type": "null" } ] } } } } }, "Analyses": { "title": "Analysis definitions", "description": "", "type": "object", "patternProperties": { ".+": { "title": "Analysis", "description": "A uniquely named analysis, defining its properties.", "properties": { "Type": { "title": "Analysis type", "description": "Names of the analysis type. Valid values are External program, Visual3D, Report, Compound, HTTPRequest, Instantiate template, Create skeleton, Solve skeleton.\n\nNote: only External program and Compound are available to all users. Other types require the Project Automation Framework developer license which is used for internal Qualisys development and by development partners.", "enum": ["External program", "Visual3D", "Report", "Compound", "HTTPRequest", "Instantiate template", "Create skeleton", "Solve skeleton"] }, "Prerequisites": { "title": "Measurement and/or analysis prerequisites", "description": "A sequence of measurement type names and analysis names that has to be completed before this analysis can be run. Measurement types are considered complete for the current session when the user has made at least the number of measurements given by that measurement type’s Minimum count field. Analyses are considered complete when the file denoted by the Output file field exists.", "type": "array", "items": { "type": "string" }, "minItems": 1 }, "Output file": { "title": "Output file", "description": "The name of a file that is created when this analysis is run. QTM uses this to check if the analysis has been completed. It is also used to issue a warning if this file has been changed since the analysis was last run for the current session. This property can contain patterns.", "anyOf": [ { "type": "array", "items": { "type": "string" }, "minItems": 1 }, { "type": "string" } ] }, "Program display name": { "title": "Program display name", "description": "External program only: The name to be displayed in the directories tab in project options where the user will have to locate the external executable. NB: Because this path varies between computers rather than between projects, it is not stored in the project, but in computer-global settings file.\n\nSeveral analyses in different projects may share the same Program display name and QTM will automatically use the same executable path for all of them.", "type": "string" }, "Export session": { "title": "Export session", "description": "External program only: Optional. If present, the metadata of the session, all its ancestors and the measurements are exported into a file called session.xml.", "$ref": "#/$defs/yaml-boolean" }, "Export measurements": { "title": "Formats for measurement exports", "description": "External program only: Optional. A single string or an array containing any combination of the following values: “TSV”, “C3D”, “MAT”. Will make QTM export all the selected measurements to the corresponding formats before running the external program. Use “xml settings” to export a file with measurement settings (e.g. capture start time and analog channel names). The file will be named [file name].settings.xml.", "anyOf": [ { "type": "array", "items": { "type": "string", "enum": ["TSV", "C3D", "MAT", "JSON", "tsv", "c3d", "mat", "json", "xml settings"] }, "minItems": 1 }, { "enum": ["TSV", "C3D", "MAT", "JSON", "tsv", "c3d", "mat", "json", "xml settings"] } ] }, "Template files": { "title": "Template files", "description": "External program only: Optional. A single string or an array containing names of files in the template directory. Each file will be run through the PHP engine and the result written to a file with the same name in the session directory. Standard Windows wildcards are supported, but note that if the asterisk is used to match a part of the filename, the pattern must be enclosed in single quotation marks to make sure it is not parsed as a YAML alias.", "anyOf": [ { "type": "array", "items": { "type": "string" }, "minItems": 1 }, { "type": "string" } ] }, "Working directory": { "title": "Working directory", "description": "External program only: Optional. The working directory set when the program is launched. Defaults to the session directory.", "type": "string" }, "Arguments": { "title": "Arguments", "description": "Optional. An array of arguments to be sent to the program being started. Each argument will be subject to pattern expansion and if the result contains spaces, it will be enclosed in double quotation marks when the command line is built.", "type": "array", "items": { "type": "string" } }, "Show output file": { "title": "Show output file", "description": "External program only: Optional. If set, and if the Output file property has been specified, and if the execution of the external program is successful (exit code 0), the output file will be shown in the systems standard program for that file type (as if it was double-clicked in the windows explorer).", "$ref": "#/$defs/yaml-boolean" }, "Do not wait for Application": { "title": "Do not wait for Application", "description": "External program only: Optional. If analysis includes this property, QTM does not wait for external program to finish the processing. If property does not exit, to continue with subsequent analyses, external program must be closed manually (> QTM 2019.1).", "$ref": "#/$defs/yaml-boolean" }, "Pipeline template": { "title": "Pipeline template", "description": "Visual3D analysis only: Required. The name of a template file in the Templates directory. This file will be instantiated and used as the pipeline script in visual 3d.", "type": "string" }, "Do not wait for Visual3D": { "title": "Do not wait for Visual3D", "description": "Visual3D analysis only: Optional. If analysis includes this property, QTM does not wait for Visual3D to finish the processing. If property does not exit, to continue with subsequent analyses, Visual3D must be closed manually or Exit_Workspace; command has to be added to the very end of Visual3D script.", "$ref": "#/$defs/yaml-boolean" }, "Close Visual3D": { "title": "Deprecated: Close Visual3D", "deprecated": true, "description": "Visual3D analysis only: Deprecated (> QTM 2.16).", "enum": ["Never", "No Warnings"] }, "Components": { "title": "Compound analysis components", "description": "Compound analysis only. Required. An array of analysis steps.", "type": "array", "items": { "type": "string" } }, "Template": { "title": "Template to instantiate", "description": "Instantiate template analysis only: Required. The name of the input file. If this name contains any path delimiter tokens, it will be considered to be relative to the project directory, otherwise QTM will assume that the input file is placed in the templates folder.", "type": "string" }, "Measurements": { "title": "Measurements where skeleton should be solved", "description": "Create / Solve skeleton analyses only: Required. A string or list of strings to specify the file names to solve the skeletons. Wildcard can be used in the name to specify multiple files at once. To specify all measurements, simply use the wildcard character. Only measurements that are marked as used in the PAF pane will be affected.", "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "Exclude": { "title": "Measurements where skeleton should _not_ be solved", "description": "Create / Solve skeleton analyses only: Optional. A string or list of strings to specify the file names to exclude. Wildcard can be used in the name to specify multiple files at once. Only measurements that are marked as used in the PAF pane will be affected.", "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] } } } } }, "Fields": { "title": "Field definitions", "description": "", "type": "object", "patternProperties": { ".+": { "title": "Field", "description": "A uniquely named field, defining its properties.", "properties": { "Type": { "title": "Field type", "description": "Required. Defines the type of the field. Possible values are Integer, Float, String, Date, TimeOfDay, Enum or Boolean.", "enum": ["Integer", "Float", "String", "Date", "TimeOfDay", "Enum", "Boolean"] }, "Hidden": { "title": "Hidden field", "description": "If the value is Yes or True, this field will not be displayed in the GUI (and thus will not be editable by the user) but will be exported to files. It will keep its default value.", "$ref": "#/$defs/yaml-boolean" }, "Readonly": { "title": "Readonly field", "description": "If the value is Yes or True this field will be displayed, but the user will not be able to edit it. It will keep its default value.", "$ref": "#/$defs/yaml-boolean" }, "Inherit": { "title": "Inherit from parent fields", "description": "This field will be inherited by all subitems of the item that contains it. There are two modes of inheritance Copy and Connect and the value of this property has to be one of them.\n\nCopy: Inheritance by copying means that when a child to an item that has an inheritable field is created, a field with the same name is created in the child and the value of the field in the parent is copied to that field.\n\nConnect fields work the same way when an item is created, but if the field is changed in any of the items (any ancestor or heir) it is updated in all the items that have inherited this field from the same origin. If, for instance, a value is inherited by connection from a patient to a number of sessions and the measurements in those sessions and it is changed in one of the sessions it is changed in all those objects, but not in other patients and the sessions of those patients.\n\nFields are inherited all the down to the leaves from the item including the fields so if the root item would include an inherited field, it would be copied to all items in the tree.", "enum": ["Copy", "Connect"] }, "Default": { "title": "Default field value", "description": "The default value that this field will get when an item that contains it is created. This can be overridden in the item type specification and by inheritance. The value of this property should have the same data type as the field. String fields can also specify a sequence as default value. The sequence will be converted into a string containing the elements of the sequence separated by semicolon.", "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "null" } ] }, "Max": { "title": "Maximum value", "description": "Integer / Float types only: The maximum value that can be entered in this field.", "type": "number" }, "Min": { "title": "Minimum value", "description": "Integer / Float types only: The minimum value that can be entered in this field.", "type": "number" }, "Quantity": { "title": "Field physical quantity", "description": "Float type only: The physical quantity that this field represents. This list contains the basic physical quantities but also some derived quantities because there is no possibility to combine quantities.", "enum": [ "Length", "Mass", "Voltage", "Current", "Force", "Moment", "Power", "Angle", "Time", "Frequency", "Temperature", "Speed", "Acceleration", "Magnetic field strength", "Rotational speed" ] }, "Unit": { "title": "Field unit", "description": "Float type only: The unit of this field. Can only be specified if a quantity has been specified. Different units apply to different quantities. Either the unit name or the abbreviation can be given. If a unit is not entered, the S/I unit is used.", "enum": [ "meters", "ångstroms", "nanometers", "microns", "millimeters", "centimeters", "kilometers", "inches", "feet", "yards", "miles", "kilograms", "micrograms", "milligrams", "grams", "ounces", "pounds", "volts", "nanovolts", "microvolts", "millivolts", "kilovolts", "ampere", "nanoampere", "microampere", "milliampere", "kiloampere", "newtons", "millinewtons", "kilonewtons", "meganewtons", "kiloponds", "pounds force", "newtonmeter", "newtonmillimeter", "watt", "radians", "degrees", "seconds", "minutes", "hours", "hertz", "kilohertz", "megahertz", "revolutions per minute", "beats per minute", "kelvin", "degrees celsius", "degrees farenheit", "meters per second", "millimeters per second", "kilometers per hour", "feet per second", "miles per hour", "knots", "meters per second squared", "millimeters per second squared", "feet per second squared", "standard gravity", "tesla", "millitesla", "degrees per second", "Meters", "Ångstroms", "Nanometers", "Microns", "Millimeters", "Centimeters", "Kilometers", "Inches", "Feet", "Yards", "Miles", "Kilograms", "Micrograms", "Milligrams", "Grams", "Ounces", "Pounds", "Volts", "Nanovolts", "Microvolts", "Millivolts", "Kilovolts", "Ampere", "Nanoampere", "Microampere", "Milliampere", "Kiloampere", "Newtons", "Millinewtons", "Kilonewtons", "Meganewtons", "Kiloponds", "Pounds force", "Newtonmeter", "Newtonmillimeter", "Watt", "Radians", "Degrees", "Seconds", "Minutes", "Hours", "Hertz", "Kilohertz", "Megahertz", "Revolutions per minute", "Beats per minute", "Kelvin", "Degrees celsius", "Degrees farenheit", "Meters per second", "Millimeters per second", "Kilometers per hour", "Feet per second", "Miles per hour", "Knots", "Meters per second squared", "Millimeters per second squared", "Feet per second squared", "Standard gravity", "Tesla", "Millitesla", "Degrees per second", "m/s" ] }, "Decimals": { "title": "Field decimal count", "description": "Float type only: The number of decimals to present to the user.", "type": "integer" }, "Force": { "title": "Force non-empty string", "description": "String type only: Force the string to be non-empty.", "$ref": "#/$defs/yaml-boolean" }, "JSON": { "title": "Treat string as JSON object", "description": "String type only: The string should be returned as JSON object when queried from the REST api. JSON fields are not exported to session.xml during the analysis step. (Available from QTM 2.14).", "$ref": "#/$defs/yaml-boolean" }, "Values": { "title": "Enum values", "description": "Enum type only: The enum field defines an enumeration. To the user it will be presented as a multiple selection and internally it will be saved as a numeric value. The possible values that an enum can have has to be specified in the Values property. This property can be either a sequence or a map.\n\nIf it is a sequence it simply lists the choices of the enum and these will be assigned an integer value automatically.\n\nIf it is a map it is a map from the choices to the numeric value of each particular choice.", "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "type": "null" } ] } }, "Display": { "title": "Boolean display", "description": "Boolean type only: Controls how this value will be displayed. Can be one of yesno, checkbox or truefalse.", "enum": [ "yesno", "checkbox", "truefalse", "YesNo", "Checkbox", "TrueFalse" ] } }, "required": [ "Type" ] } } }, "Columns": { "title": "Column definitions", "description": "The columns section specifies the columns of the tree view in the project view. It allows the PAF file to specify multiple column setups. The idea is that the users should be able to switch between different configurations and possibly also add their own but currently only the first setup is used.", "type": "object", "patternProperties": { ".+": { "title": "Column setup", "description": "A uniquely named column setup. Each setup contains an arbitrary number of columns.", "patternProperties": { ".+": { "title": "Column", "description": "A uniquely named column. Each column can specify a width (in pixels) and a way of determining the value displayed in the column. A key to understanding the column values is the understanding that each row in the tree view might contain a different type of item.", "properties": { "Width": { "title": "Column width", "description": "The width (in pixels) of this column.", "type": "integer" }, "Field": { "title": "Column field", "description": "The column will contain the value of the field named by this property regardless of the type of the item on the row.", "type": "string" }, "Fields": { "title": "Column fields (with name mapping)", "description": "A map from the item type name to the field to use. For each item type that is present as a key in the map the value of the field named will be used. For item types that are not named in the map the default field name will be used.", "type": "object", "properties": { "Default": { "title": "Default field", "description": "Name used for item types not named in the map.", "type": "string" } }, "patternProperties": { ".+": { "title": "Field mapping", "description": "Name used for item types not named in the map.", "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "Name": { "title": "Type name", "description": "", "type": "string" }, "Editable": { "title": "Editable values", "description": "If yes or true, the value of the field can be edited directly in the tree.", "$ref": "#/$defs/yaml-boolean" } } } ] } } } } } } } } } }, "required": [ "Project ID", "Root type", "Types", "Columns" ], "$defs": { "yaml-boolean": { "oneOf": [ { "type": "boolean" }, { "type": "string", "enum": ["Yes", "yes", "No", "no"] } ] } } }
paf-module
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A squadron for the X-Wing Miniatures Game in app-independent format for sharing, saving and moving between apps.", "properties": { "description": { "description": "A description of this squadron.", "type": "string" }, "faction": { "description": "The faction this squadron belongs to.", "enum": [ "rebel", "imperial", "scum" ], "type": "string" }, "name": { "description": "The name of the squadron.", "type": "string" }, "obstacles": { "description": "Array of three Strings, each being an identifier for the obstacle chosen for tournament use.", "items": { "type": "string" }, "maxItems": 3, "minItems": 3, "type": "array" }, "pilots": { "description": "The members of this squadron.", "items": { "additionalProperties": false, "minItems": 1, "properties": { "hull": { "description": "Hull value for the ship", "type": "integer" }, "multisection_id": { "type": "integer" }, "name": { "pattern": "^[0-9a-z]+$", "type": "string" }, "points": { "description": "The total points spent creating this squadron.", "type": "integer" }, "shields": { "description": "Shield value for the ship", "type": "integer" }, "ship": { "pattern": "^[0-9a-z]+$", "type": "string" }, "upgrades": { "additionalProperties": true, "minProperties": 1, "patternProperties": { "^[0-9a-z]+$": { "items": { "pattern": "^[0-9a-z]+$", "type": "string" }, "minItems": 1, "type": "array" } }, "type": "object" }, "vendor": { "description": "An extensible object containing app-specific data. Developers should put extra data here under their own namespace.", "maxProperties": 1, "minProperties": 1, "type": "object" } }, "required": [ "name", "ship" ], "type": "object" }, "type": "array" }, "points": { "description": "The total points spent creating this squadron.", "type": "integer" }, "vendor": { "description": "An extensible object containing app-specific data. Developers should put extra data here under their own namespace.", "maxProperties": 1, "minProperties": 1, "type": "object" }, "version": { "description": "The version of the XWS spec used to create this data", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$", "type": "string" } }, "required": [ "version", "faction", "pilots" ], "title": "X-Wing Squadron Format Schema", "type": "object" }
o11975
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "user_id", "events", "is_test" ], "properties": { "user_id": { "type": "string" }, "events": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "integer" }, "show_id": { "type": "string" }, "time": { "type": "number" } } } }, "is_test": { "type": "integer", "enum": [ 0, 1 ] }, "cid": { "type": "string" } } }
o19071
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "addons": { "description": "Additional charater/sequences to add", "type": "array", "items": { "type": "object", "oneOf": [ { "description": "A single character/sequence", "symbol": { "type": "string" }, "name": { "type": "string" }, "keywords": { "type": "array", "items": { "type": "string" } }, "required": [ "symbol" ] }, { "description": "A group of characters/sequences", "symbols": { "type": "array", "items": { "oneOf": [ { "description": "Padding", "type": "null" }, { "description": "A single symbol", "type": "string" }, { "description": "A group of alternate symbols", "type": "array", "items": { "type": "string" } }, { "description": "A range of characters (inclusive)", "type": "object", "properties": { "from": { "type": "string" }, "to": { "type": "string" } }, "required": [ "from", "to" ] } ] } }, "required": [ "symbols" ] } ], "properties": { "group": { "type": "string" }, "subGroup": { "type": "string" } }, "required": [ "group", "subGroup" ] } }, "iconFallback": { "type": "array", "items": { "properties": { "windows": { "description": "Windows version in which the elements are supported", "type": "string", "default": "10" }, "version": { "description": "Use fallback icon if unicode version >= number", "type": "number" }, "emojiVersion": { "description": "Use fallback icon if emoji version >= number", "type": "number" }, "characters": { "description": "Use fallback icon for a given text range", "type": "array", "items": { "properties": { "from": { "type": [ "string", "number" ] }, "to": { "type": [ "string", "number" ] } }, "required": [ "from", "to" ] } }, "sequences": { "description": "Use fallback icon for given sequences or characters", "type": "array", "items": { "type": "string" } } }, "required": [ "windows" ] } }, "forceVersion": { "description": "Force a version for remote resources. Include trailing zeros.", "type": "object", "properties": { "cldr": { "type": "string" }, "emoji": { "type": "string" }, "ucd": { "type": "string" } }, "additionalProperties": false }, "keyboards": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "symbol": { "type": "string" }, "content": { "type": "array", "items": { "type": "object", "properties": { "group": { "type": "string" }, "subGroup": { "type": "string" } }, "required": [ "group", "subGroup" ] } } }, "required": [ "name", "symbol", "content" ] } }, "nogroup": { "description": "Disable automatic grouping", "type": "array", "items": { "type": "string" } }, "keymaps": { "description": "Additional keymaps", "type": "object", "additionalProperties": { "type": "object", "required": [ "name", "keys" ], "additionalProperties": false, "properties": { "name": { "description": "Display name", "type": "string" }, "keys": { "description": "Use scancode as index", "type": "object", "additionalProperties": false, "patternProperties": { "^[0-9]+$": { "type": "string" } } } } } } }, "required": [ "keyboards" ] }
o71321
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "experienceGroupId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "experienceUserIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "experienceEndpointIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "groupTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 }, "deviceQueryJson": { "type": [ "string", "null" ], "maxLength": 8192 }, "parentId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "null" } ] } } }
o9878
{ "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": "ConfigMap holds configuration data for pods to consume.", "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" ] }, "binaryData": { "additionalProperties": { "format": "byte", "type": [ "string", "null" ] }, "description": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.", "type": [ "object", "null" ] }, "data": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.", "type": [ "object", "null" ] }, "immutable": { "description": "Immutable, if set to true, ensures that data stored in the ConfigMap 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": [ "ConfigMap" ], "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" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ConfigMap", "version": "v1" } ] }
kb_106_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "articles" ], "properties": { "articles": { "required": [ "resource" ], "type": "object", "properties": { "resource": { "type": "string", "format": "topic", "axRole": "outlet", "description": "The event bus topic under which to publish the list of articles" } } } } }
o89621
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapNodeConfigSource": { "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.", "properties": { "kubeletConfigKey": { "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.", "type": "string" }, "name": { "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "namespace": { "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "resourceVersion": { "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" }, "uid": { "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" } }, "required": [ "namespace", "name", "kubeletConfigKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource": { "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapNodeConfigSource", "description": "ConfigMap is a reference to a Node's ConfigMap" } }, "type": "object" } }, "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.", "properties": { "active": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "Active reports the checkpointed config the node is actively using. Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error." }, "assigned": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed to disk. When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned." }, "error": { "description": "Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.", "type": [ "string", "null" ] }, "lastKnownGood": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config. The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct. This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the future." } }, "type": "object" }
kb_616_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "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" }, "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" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }
kb_321_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/webjobs-list.json", "properties": { "WebJobs": { "type": "array", "description": "A list of Azure Webjobs.", "items": { "type": "object", "additionalProperties": false, "properties": { "filePath": { "type": "string" } } } } }, "required": ["WebJobs"], "title": "JSON schema for Azure Webjobs collection files", "type": "object" }
webjobs-list
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "The competency uuid" }, "name": { "type": "string", "description": "The competency name", "minLength": 1 }, "description": { "type": [ "string", "null" ], "description": "The competency description" }, "parent": { "type": [ "object", "null" ], "properties": { "id": { "type": "string", "description": "The competency parent" } } }, "scale": { "type": [ "object" ], "properties": { "id": { "type": "string", "description": "The uuid of the associated scale" } } } }, "required": [ "name" ], "claroline": { "ids": [ "id" ] } }
o32497
{ "title": "vCenter Import", "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": false, "properties": { "fabric_fq_name": { "type": "array", "items": { "type": "string" } }, "contrail_command": { "$id": "/properties/contrail_command", "description": "The Contrail Command details", "type": "object", "properties": { "username": { "$id": "/properties/contrail_command/username", "description": "The Contrail Command Login Username", "type": "string" }, "password": { "$id": "/properties/contrail_command/password", "description": "The Contrail Command Login Password", "type": "string" }, "host": { "$id": "/properties/contrail_command/host", "description": "The Contrail Command IP and/or port", "type": "string" } } }, "vcenter": { "$id": "/properties/vcenter", "description": "vCenter details", "type": "object", "properties": { "username": { "$id": "/properties/vcenter/username", "description": "Username of vCenter Server", "type": "string" }, "password": { "$id": "/properties/vcenter/password", "description": "Password of vCenter Server", "type": "string" }, "datacenter": { "$id": "/properties/vcenter/datacenter", "description": "vCenter DataCenter name to Import ESXi Hosts", "type": "string" }, "host": { "$id": "/properties/vcenter/host", "description": "vCenter Hostname/IP-Address including port", "type": "string" } } } } }
o8485
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "year": { "title": "Year", "description": "The ending year of the tax year to which the calculation relates, in the format YYYY. For example, tax year 2016 to 2017 is expressed as 2017. Value must be between 2016 and 2999.", "type": "number", "example": "2019", "pattern": "^(201[6-9]|20[2-9][0-9])$" }, "intentToCrystallise": { "title": "Intent To Crystallise", "description": "Shows if this calculation is provided with the intent to crystallise. The default is FALSE", "type": "boolean", "example": "false" }, "crystallised": { "title": "Crystallised", "description": "Shows if the calculation has been performed on the crystallised position. The default is FALSE", "type": "boolean", "example": "false" }, "validationMessageCount": { "title": "Validation Message Count", "description": "The quantity of validation messages encountered during the calculation.", "type": "number", "example": "1", "minimum": 0 }, "incomeTaxAndNicYTD": { "title": "Income Tax And Nic YTD", "description": "The Income Tax and National Insurance contributions due, based on year-to-date figures. The value must be between -99999999999.99 and 99999999999.99 up to 2 decimal places. This field will not be displayed if a business validation failure occurred processing the tax calculation", "type": "number", "example": "1000.25", "minimum": -99999999999.99, "maximum": 99999999999.99 }, "nationalRegime": { "title": "National Regime", "description": "Defines which national tax rates and rules to apply to the calculation. Must be one of: UK, Scotland, Wales. This field will not be present if a business validation failure occurred processing the tax calculation.", "type": "string", "oneOf": [ { "enum": [ "UK" ] }, { "enum": [ "Scotland" ] }, { "enum": [ "Wales" ] } ] }, "taxableIncome": { "type": "object", "description": "This object analyses how taxable income is derived. This object will not be present if a business validation failure occurred processing the tax calculation.", "properties": { "employments": { "type": "object", "properties": { "totalIncome": { "title": "Total Income", "description": "The total income from all employments. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalPay": { "title": "Total Pay", "description": "The total net pay from all employments. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalBenefitsAndExpenses": { "title": "Total Benefits And Expenses", "description": "The total benefits and expenses from all employments. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalAllowableExpenses": { "title": "Total Allowable Expenses", "description": "The total allowable expenses from all employments. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "employment": { "type": "array", "items": { "type": "object", "properties": { "employmentId": { "title": "Employment ID", "description": "The identifier of the employment.", "type": "string", "example": "XKIS00000000968", "pattern": "^[A-Za-z0-9]{15}$" }, "netPay": { "title": "Net Pay", "description": "The year-to-date net pay for this employment. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "benefitsAndExpenses": { "title": "Benefits And Expenses", "description": "The benefits and expenses relating to this employment. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "allowableExpenses": { "title": "Allowable Expenses", "description": "The allowable expenses relating to this employment. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } } } } }, "selfEmployments": { "type": "object", "description": "This object summarises income for all self-employment sources", "properties": { "totalIncome": { "title": "Total Income", "description": "The total income from all self-employments. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "selfEmployment": { "type": "array", "description": "Provides the taxable income for each individual self-employment", "items": { "type": "object", "properties": { "selfEmploymentId": { "title": "Self-Employment ID", "description": "An identifier for the self-employment business, unique to the customer.", "type": "string", "example": "XKIS00000000988", "pattern": "^[A-Za-z0-9]{15}$" }, "taxableIncome": { "title": "Taxable Income", "description": "The taxable income from this self-employment business. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "finalised": { "title": "Finalised", "description": "Shows whether this self-employment income has been finalised.", "type": "boolean", "example": "false" }, "losses": { "title": "Losses", "description": "Any loss from this self-employment. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } } } } }, "ukProperty": { "type": "object", "description": "This object summarises the UK property income sources", "properties": { "totalIncome": { "title": "Total Income", "description": "The total income from all UK property. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "nonFurnishedHolidayLettingsTaxableProfit": { "title": "Non-Furnished Holiday Lettings Taxable Profit", "description": "Taxable profit from UK non-furnished holiday lettings. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "nonFurnishedHolidayLettingsLoss": { "title": "Non-Furnished Holiday Lettings Taxable Loss", "description": "Loss from UK non-furnished holiday lettings. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "furnishedHolidayLettingsTaxableProfit": { "title": "Furnished Holiday Lettings Taxable Profit", "description": "Taxable profit from UK furnished holiday lettings. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "furnishedHolidayLettingsLoss": { "title": "Furnished Holiday Lettings Taxable Loss", "description": "Loss from UK furnished holiday lettings. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "finalised": { "title": "Finalised", "description": "Shows whether the UK property income has been finalised.", "type": "boolean", "example": "false" } } }, "savings": { "title": "Savings", "type": "object", "description": "This object summarises interest from UK banks, building societies and securities", "properties": { "totalIncome": { "title": "Total Income", "type": "number", "description": "The taxable amount of interest from UK banks, building societies and securities. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxedAccounts": { "title": "Taxed Accounts", "type": "array", "description": "An array of savings accounts where interest has had tax deducted", "items": { "type": "object", "properties": { "gross": { "title": "Gross", "type": "number", "description": "The gross interest for the savings account. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "savingsAccountId": { "title": "Savings Account ID", "type": "string", "description": "The unique identifier of the savings account", "example": "SAVKB2UVwUTBQGJ" }, "name": { "title": "Name", "type": "string", "description": "Friendly account name. The account name must be between 1 and 32 characters in length. Allowed characters, including spaces are: mixed case alphanumeric characters and the characters; &'()*,-./@\u00a3" }, "net": { "title": "Net", "type": "number", "description": "The net interest for the savings account. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxDeducted": { "title": "Tax Deducted", "type": "number", "description": "The tax deducted from the savings account (gross minus net). The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } } }, "totalTaxedInterestIncome": { "title": "Total Taxed Interest Income", "type": "number", "description": "Total gross interest from all taxed savings accounts. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalUntaxedInterestIncome": { "title": "Total Untaxed Interest Income", "type": "number", "description": "Total interest from all untaxed savings accounts. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "untaxedAccounts": { "title": "Untaxed Accounts", "type": "array", "description": "An array of savings accounts where no tax has been deducted", "items": { "type": "object", "properties": { "gross": { "title": "Gross", "type": "number", "description": "The gross interest for the savings account. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "savingsAccountId": { "title": "Savings Account ID", "type": "string", "description": "The unique identifier of the savings account", "example": "SAVKB2UVwUTBQGJ" }, "name": { "title": "Name", "type": "string", "description": "Friendly account name. The account name must be between 1 and 32 characters in length. Allowed characters, including spaces are: mixed case alphanumeric characters and the characters; &'()*,-./@\u00a3" } } } } } }, "ukDividends": { "type": "object", "description": "This object summarises the UK dividends income", "properties": { "totalIncome": { "title": "Total Income", "description": "The total income from all UK dividends. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "otherUkDividends": { "title": "Other UK Dividends", "type": "number", "description": "The total dividend payments received from other UK dividends. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "ukDividends": { "title": "UK Dividends", "type": "number", "description": "The total dividend payments received from UK companies. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "totalIncomeReceived": { "type": "number", "title": "Total Income Received", "description": "The total income received for the tax year. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "allowancesAndDeductions": { "type": "object", "description": "This object summarises the allowances and adjustments for the Tax Year", "properties": { "totalAllowancesAndDeductions": { "title": "Total Allowances And Deductions", "description": "The total of all allowances and deductions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "giftOfInvestmentsAndPropertyToCharity": { "title": "Gift Of Investments And Property To Charity", "description": "Investments and/or property gifts made to charity. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "apportionedPersonalAllowance": { "title": "Apportioned Personal Allowance", "description": "The amount of the annual personal allowance that has been apportioned. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "totalTaxableIncome": { "type": "number", "title": "Total Taxable Income", "description": "The total taxable income (income less allowances and deductions). The value must be between 0 and 99999999999.99 up to 2 decimal places.", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "incomeTax": { "type": "object", "description": "This object gives a breakdown of the income tax calculation. This object will not be present if a business validation failure occurred processing the tax calculation.", "properties": { "totalIncomeTax": { "title": "Total Income Tax", "description": "The total calculated Income Tax after allowances and reliefs. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalBeforeReliefs": { "title": "Total Before Reliefs", "description": "The total Income Tax before allowances and reliefs. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalAfterReliefs": { "title": "Total After Reliefs", "description": "The total Income Tax after allowances and reliefs. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxableIncome": { "title": "Taxable Income", "description": "The total income subject to Income Tax calculation. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "payAndPensionsProfit": { "type": "object", "description": "This object gives a breakdown of the income tax calculation in relation to pay, pensions and profit.", "properties": { "totalAmount": { "title": "Total Amount", "description": "The total amount of income tax associated with pay and pensions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "band": { "type": "array", "description": "The banding array shows the tax bands applicable to an Income Tax category. Only bands applicable to the calculation will be generated. (e.g. a BRT taxpayer will not have bands for HRT and ART). There will always be a minimum of 1 band if the array exists. The array will be populated in ascending order of the tax bands.", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "The name of the tax band. Must be one of: SRT, BRT, IRT, HRT, ART", "type": "string", "oneOf": [ { "enum": [ "SRT" ], "description": "Scottish starter rate threshold" }, { "enum": [ "BRT" ], "description": "basic rate threshold" }, { "enum": [ "IRT" ], "description": "intermediary rate threshold (Scottish only)" }, { "enum": [ "HRT" ], "description": "higher rate threshold" }, { "enum": [ "ART" ], "description": "additional rate threshold" } ] }, "rate": { "title": "Rate", "description": "The rate associated with the tax band. The value must be between 0 and 99.99 up to 2 decimal places", "type": "number", "example": "10.25", "minimum": 0, "maximum": 99.99 }, "threshold": { "title": "Threshold", "description": "The upper threshold for the tax band. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "apportionedThreshold": { "title": "Apportioned Threshold", "description": "The amount of the upper threshold that has been apportioned. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "income": { "title": "Income", "description": "The amount of taxable income for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "amount": { "title": "Amount", "description": "The calculated amount of Income Tax for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "apportionedBandLimit": { "title": "Apportioned Band Limit", "description": "The apportioned threshold for the tax band, excluding personal allowance. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "bandLimit": { "title": "Band Limit", "description": "The upper threshold for the tax band excluding personal allowance. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 } } } }, "personalAllowanceUsed": { "title": "Personal Allowance Used", "description": "The amount of the apportioned annual personal allowance that has been offset against pay and pensions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxableIncome": { "title": "Taxable Income", "description": "The taxable income associated with pay and pensions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "savingsAndGains": { "type": "object", "description": "This object gives a breakdown of the income tax calculation in relation to savings and gains.", "properties": { "totalAmount": { "title": "Total Amount", "description": "The total amount of Income Tax associated with savings and gains. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "band": { "type": "array", "description": "The banding array shows the tax banding applicable to an Income Tax category. Only bands applicable to the calculation will be generated. (e.g a BRT taxpayer will not have bands for HRT and ART). There will always be a minimum of 1 band if the array exists. The array will be populated in ascending order of the tax bands.", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "The name of the tax band. Must be one of the following: SSR,BRT,HRT,ART, ZRTBR, ZRTHR", "type": "string", "oneOf": [ { "enum": [ "SSR" ], "description": "savings starter rate threshold" }, { "enum": [ "BRT" ], "description": "basic rate threshold" }, { "enum": [ "HRT" ], "description": "higher rate threshold" }, { "enum": [ "ART" ], "description": "additional rate threshold" }, { "enum": [ "ZRTBR" ], "description": "personal savings allowance awarded at basic rate" }, { "enum": [ "ZRTHR" ], "description": "personal savings allowance awarded at higher rate" } ] }, "rate": { "title": "Rate", "description": "The rate associated with the tax band. The value must be between 0 and 99.99 up to 2 decimal places.", "type": "number", "example": "10.25", "minimum": 0, "maximum": 99.99 }, "threshold": { "title": "Threshold", "description": "The upper threshold for the tax band. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "apportionedThreshold": { "title": "Apportioned Threshold", "description": "The amount of the upper threshold that has been apportioned. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "income": { "title": "Income", "description": "The amount of taxable income for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "amount": { "title": "Amount", "description": "The calculated amount of Income Tax for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "apportionedBandLimit": { "title": "Apportioned Band Limit", "description": "The apportioned threshold for the tax band, excluding personal allowance. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "bandLimit": { "title": "Band Limit", "description": "The upper threshold for the tax band excluding personal allowance. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 } } } }, "personalAllowanceUsed": { "title": "Personal Allowance Used", "description": "The amount of the apportioned annual personal allowance that has been offset against savings and gains. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxableIncome": { "title": "Taxable Income", "description": "The taxable income associated with savings and gains. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "dividends": { "type": "object", "description": "This object gives a breakdown of the income tax calculation in relation to dividends", "properties": { "totalAmount": { "title": "Total Amount", "description": "The total amount of Income Tax associated with dividends. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "band": { "type": "array", "description": "The banding array shows the tax banding applicable to an Income Tax category. Only bands applicable to the calculation will be generated (for example a BRT taxpayer will not have bands for HRT and ART). There will always be a minimum of 1 band if the array exists. The array will be populated in ascending order of the tax bands.", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "The name of the tax band. Must be one of the following: BRT, HRT, ART, ZRTBR, ZRTHR, ZRTAR", "type": "string", "oneOf": [ { "enum": [ "BRT" ], "description": "basic rate threshold" }, { "enum": [ "HRT" ], "description": "higher rate threshold" }, { "enum": [ "ART" ], "description": "additional rate threshold" }, { "enum": [ "ZRTBR" ], "description": "dividend allowance awarded at basic rate" }, { "enum": [ "ZRTHR" ], "description": "dividend allowance awarded at higher rate" }, { "enum": [ "ZRTAR" ], "description": "dividend allowance awarded at additional rate" } ] }, "rate": { "title": "Rate", "description": "The rate associated with the tax band. The value must be between 0 and 99.99.", "type": "number", "example": "10.25", "minimum": 0, "maximum": 99.99 }, "threshold": { "title": "Threshold", "description": "The upper threshold for the tax band. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "apportionedThreshold": { "title": "Apportioned Threshold", "description": "The amount of the upper threshold that has been apportioned. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "income": { "title": "Income", "description": "The amount of taxable income for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "amount": { "title": "Amount", "description": "The calculated amount of Income Tax for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "apportionedBandLimit": { "title": "Apportioned Band Limit", "description": "The apportioned threshold for the tax band, excluding personal allowance. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "bandLimit": { "title": "Band Limit", "description": "The upper threshold for the tax band excluding personal allowance. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 } } } }, "personalAllowanceUsed": { "title": "Personal Allowance Used", "description": "The amount of the apportioned annual personal allowance that has been offset against dividends. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxableIncome": { "title": "Taxable Income", "description": "The taxable income associated with dividends. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "allowancesAndReliefs": { "type": "object", "description": "This object details the allowances and reliefs used in the income tax calculation", "properties": { "propertyFinanceRelief": { "title": "Property Finance Relief", "description": "The relief against property finance costs. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalAllowancesAndReliefs": { "title": "Total Allowances And Reliefs", "description": "The total amount of allowances and reliefs. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "giftAid": { "type": "object", "description": "This object shows the amount of Income tax associated to the amount of Gift Aid being declared. The actual Gift Aid benefit itself is reflected as a rate band extension (see annualAllowances.giftAidExtender).", "properties": { "paymentsMade": { "title": "Payments Made", "description": "The total amount of Gift Aid payments made for the tax year. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "rate": { "title": "Rate", "description": "The basic rate of tax that applies to Gift Aid. The value must be between 0 and 99.99.", "type": "number", "example": "10.25", "minimum": 0, "maximum": 99.99 }, "taxableAmount": { "title": "Taxable Amount", "description": "The taxable amount of the Gift Aid payments made. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "totalAfterGiftAid": { "title": "Total After Gift Aid", "description": "The total Income Tax after Gift Aid. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "residentialFinanceCosts": { "type": "object", "description": "This object gives a breakdown of the income tax calculation in relation to residential finance costs", "properties": { "amountClaimed": { "title": "Amount Claimed", "type": "number", "description": "The amount being claimed including any carry forward amounts", "minimum": 0, "maximum": 99999999999.99 }, "allowableAmount": { "title": "Allowable Amount", "type": "number", "description": "The lower of: finance costs not deducted, property business profits, adjusted total income (exceeding Personal Allowance)", "minimum": 0, "maximum": 99999999999.99 }, "rate": { "title": "Rate", "type": "number", "description": "The tax rate used for the calculation. The value must be between 0 and 99.99 up to 2 decimal places.", "example": "10.25", "minimum": 0, "maximum": 99.99 } } } } }, "nic": { "type": "object", "description": "This object defines the National Insurance Contributions involved in the calculation. This object will not be present if a business validation failure occurred processing the tax calculation.", "properties": { "totalNic": { "title": "Total NIC", "description": "The calculated amount of National Insurance contributions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "class2": { "type": "object", "description": "This object defines the Class 2 NIC elements of the calculation", "properties": { "amount": { "title": "Amount", "description": "The calculated amount of Class 2 National Insurance contributions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "weekRate": { "title": "Week Rate", "description": "The weekly rate for Class 2 National Insurance contributions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "weeks": { "title": "Weeks", "description": "The number of weeks applied to calculate Class 2 National Insurance contributions. The value is a whole number in the range 0 to 52.", "type": "number", "example": "1" }, "limit": { "title": "Limit", "description": "The annual limit of Class 2 National Insurance contributions. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "apportionedLimit": { "title": "Apportioned Limit", "description": "The apportioned amount of annual Class 2 National Insurance contributions. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 } } }, "class4": { "type": "object", "description": "This object defines the Class 4 NIC elements of the calculation", "properties": { "totalAmount": { "title": "Total Amount", "description": "The calculated amount of Class 4 National Insurance contributions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "band": { "type": "array", "description": "The banding array shows the banding applicable to NIC Class 4. Only bands applicable to the calculation will be generated. There will always be a minimum of 1 band if the array exists.", "items": { "type": "object", "properties": { "name": { "title": "Name", "description": "The name of the tax band. Must be one of: BRT, HRT, ZRT", "type": "string", "oneOf": [ { "enum": [ "ZRT" ], "description": "zero rate threshold" }, { "enum": [ "BRT" ], "description": "basic rate threshold" }, { "enum": [ "HRT" ], "description": "higher rate threshold" } ] }, "rate": { "title": "Rate", "description": "The rate associated with the tax band. The value must be between 0 and 99.99.", "type": "number", "example": "10.25", "minimum": 0, "maximum": 99.99 }, "threshold": { "title": "Threshold", "description": "The upper threshold for the tax band. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "apportionedThreshold": { "title": "Apportioned Threshold", "description": "The amount of the upper threshold that has been apportioned. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "income": { "title": "Income", "description": "The amount of taxable income for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "amount": { "title": "Amount", "description": "The calculated amount of Income Tax for the tax band. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } } } } } } }, "totalBeforeTaxDeducted": { "title": "Total Before Tax Deducted", "description": "The subtotal of Income Tax and National Insurance before tax is deducted. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "taxDeducted": { "type": "object", "description": "This object details the tax deductions that apply to the calculation. This object will not be present if a business validation failure occurred processing the tax calculation.", "properties": { "totalTaxDeducted": { "title": "Total Tax Deducted", "description": "The total amount of Income Tax and National Insurance that has been deducted. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "savings": { "title": "Savings", "description": "Tax deducted from interest received from UK banks and building societies. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "ukLandAndProperty": { "title": "UK Land And Property", "description": "Tax that has been deducted for UK land and property. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "eoyEstimate": { "type": "object", "description": "This object details the End of Year estimate for Income Tax. It will only be populated for in-year calculations; it will not be populated as part of a crystallisation calculation. This object will not be present if a business validation failure occurred processing the tax calculation.", "properties": { "employments": { "type": "array", "description": "An array of annualised estimated income for each employment", "items": { "type": "object", "properties": { "employmentId": { "title": "Employment ID", "description": "The identifier of the employment.", "type": "string", "example": "XKIS00000000988", "pattern": "^[A-Za-z0-9]{15}$" }, "taxableIncome": { "title": "Taxable Income", "description": "The estimated taxable income from this employment. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "supplied": { "title": "Supplied", "description": "Shows whether the employment income has been supplied or calculated. If true, the employment income has been supplied. If false, the employment income has been calculated.", "type": "boolean", "example": "false" }, "finalised": { "title": "Finalised", "description": "Shows whether the employment income has been finalised.", "type": "boolean", "example": "false" } } } }, "selfEmployments": { "type": "array", "description": "An array of annualised estimated income for each self employment business", "items": { "type": "object", "properties": { "selfEmploymentId": { "title": "Self-Employment ID", "description": "An identifier for the self-employment business, unique to the customer.", "type": "string", "example": "XKIS00000000988", "pattern": "^[A-Za-z0-9]{15}$" }, "taxableIncome": { "title": "Taxable Income", "description": "The estimated taxable income from this self-employment. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "supplied": { "title": "Supplied", "description": "Shows whether this self-employment income has been supplied or calculated. If true, the self-employment income has been supplied. If false, the self-employment income has been calculated.", "type": "boolean", "example": "false" }, "finalised": { "title": "Finalised", "description": "Shows whether this self-employment income has been finalised.", "type": "boolean", "example": "false" } } } }, "ukProperty": { "type": "object", "description": "An object of annualised estimated income for a UK property business", "properties": { "taxableIncome": { "title": "Taxable Income", "description": "The estimated taxable income from UK property. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "supplied": { "title": "Supplied", "description": "Shows whether the UK property income has been supplied or calculated. If true, UK property income has been supplied. If false, the UK property income has been calculated.", "type": "boolean", "example": "false" }, "finalised": { "title": "Finalised", "description": "Shows whether the UK property income has been finalised.", "type": "boolean", "example": "false" } } }, "ukDividends": { "type": "object", "description": "An object of annualised estimated income for UK dividends", "properties": { "taxableIncome": { "title": "Taxable Income", "description": "The estimated taxable income from UK dividends. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "supplied": { "title": "Supplied", "description": "Shows whether the UK dividend income has been supplied or calculated. If true, UK dividend income has been supplied. If false, the UK dividend income has been calculated.", "type": "boolean", "example": "false" }, "finalised": { "title": "Finalised", "description": "Shows whether the UK dividend income has been finalised.", "type": "boolean", "example": "false" } } }, "savings": { "type": "array", "description": "An array of annualised estimated income from UK banks, building societies and securities", "items": { "type": "object", "properties": { "savingsAccountId": { "title": "Savings Account ID", "type": "string", "description": "The unique identifier of the savings account", "example": "SAVKB2UVwUTBQGJ" }, "taxableIncome": { "title": "Taxable Income", "type": "number", "description": "The estimated annual income from UK banks, building societies and securities. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "minimum": 0, "maximum": 99999999999.99 }, "supplied": { "title": "Supplied", "type": "boolean", "description": "Shows whether the interest from UK banks, building societies and securities has been supplied or calculated. If true, the amount has been supplied. If false, the amount has been calculated", "example": "false" } } } }, "totalTaxableIncome": { "title": "Total Taxable Income", "description": "The total estimated taxable income from all income. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "incomeTaxAmount": { "title": "Income Tax Amount", "description": "The estimated amount of Income Tax. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "nic2": { "title": "NIC 2", "description": "The estimated amount of Class 2 National Insurance contributions, net of deductions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "nic4": { "title": "NIC 4", "description": "The estimated amount of Class 4 National Insurance contributions, net of deductions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "totalNicAmount": { "title": "Total NIC Amount", "description": "The total estimated amount of National Insurance contributions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 }, "incomeTaxNicAmount": { "title": "Income Tax And NIC Amount", "description": "The total estimated amount of Income Tax and National Insurance contributions. The value must be between 0 and 99999999999.99 up to 2 decimal places.", "type": "number", "example": "1000.25", "minimum": 0, "maximum": 99999999999.99 } } }, "calculationMessageCount": { "title": "Calculation Message Count", "description": "The quantity of warning/information messages for the calculation.", "type": "number", "example": "1" }, "calculationMessages": { "type": "array", "description": "An array of messages to provide additional context to the calculation", "items": { "type": "object", "properties": { "type": { "title": "Type", "description": "The message type. Must be one of: warning information", "type": "string", "example": "warning" }, "text": { "title": "Text", "description": "The message description.", "type": "string" } } } }, "annualAllowances": { "type": "object", "description": "This object defines the annual allowances used in the calculation. This object will not be present if a business validation failure occurred processing the tax calculation.", "properties": { "personalAllowance": { "title": "Personal Allowance", "description": "The annual amount of personal allowance available for the tax year. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "personalAllowanceThreshold": { "title": "Personal Allowance Threshold", "description": "The threshold at which the annual personal allowance is reduced. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "reducedPersonalAllowance": { "title": "Reduced Personal Allowance", "description": "The annual amount that the personal allowance is reduced to, if the income exceeds the personalAllowanceThreshold amount. The value must be between 0 and 99999999999.", "type": "number", "example": "1025", "minimum": 0, "maximum": 99999999999 }, "giftAidExtender": { "title": "Gift Aid Extender", "description": "The amount by which the rate band thresholds are extended as a result of Gift Aid claimed against this tax year. The value must be between 0 and 99999999999.", "type": "number", "example": "1000", "minimum": 0, "maximum": 99999999999 } } } } }
o46393
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Ability", "definitions": { "translations": { "type": "object", "properties": { "cz": { "type": "string" }, "dk": { "type": "string" }, "fr": { "type": "string" }, "de": { "type": "string" }, "gr": { "type": "string" }, "it": { "type": "string" }, "pl": { "type": "string" }, "tr": { "type": "string" }, "en": { "type": "string" }, "jp": { "type": "string" }, "es": { "type": "string" } }, "required": [ "en", "de" ], "additionalProperties": false } }, "properties": { "index_number": { "type": "integer", "minimum": 1 }, "names": { "$ref": "#/definitions/translations" }, "descriptions": { "$ref": "#/definitions/translations" } }, "required": [ "index_number", "names", "descriptions" ], "additionalProperties": false }
o48419
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "auditLogId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "orgId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "primaryTargetId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "primaryTargetType": { "type": "string", "enum": [ "Application", "Dashboard", "OrgInvite" ] }, "primaryTargetName": { "type": "string", "maxLength": 1024 }, "secondaryTargetId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "secondaryTargetType": { "type": "string", "enum": [ "ApiToken", "ApplicationKey", "DataTable", "Device", "DeviceRecipe", "Event", "ExperienceDomain", "ExperienceEndpoint", "ExperienceGroup", "ExperienceSlug", "ExperienceUser", "ExperienceVersion", "ExperienceView", "File", "Flow", "Integration", "Webhook" ] }, "secondaryTargetName": { "type": "string", "maxLength": 1024 }, "actorId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "actorType": { "type": "string", "enum": [ "Application", "Device", "Flow", "User", "ApiToken" ] }, "actorName": { "type": "string", "maxLength": 1024 }, "requestResource": { "type": "string", "maxLength": 1024 }, "requestAction": { "type": "string", "maxLength": 1024 }, "requestQueryParams": { "type": "object" }, "requestBody": { "type": "object" }, "requestPathParams": { "type": "object" }, "responseBody": { "type": "object" }, "responseStatus": { "type": "integer", "minimum": 100, "maximum": 599 } } }
o9795
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Resolver Package", "type": "object", "additionalProperties": false, "required": [ "name", "description", "license", "projects" ], "properties": { "name": { "type": "string", "description": "The name of the package." }, "vendor-dir": { "type": "string", "description": "The name of the vendor directory." }, "project-dir": { "type": "string", "description": "The name of the ide projects directory." }, "description": { "type": "string", "description": "A description of the package." }, "license": { "type": "string", "description": "The license of the package." }, "keywords": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "website": { "type": "string", "description": "The website for the project.", "format": "uri" }, "definitions": { "type": "array", "description": "A list with definitions to add to all projects.", "items": { "type": "string" } }, "authors": { "type": "array", "description": "A list with authors that contributed to the package.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "The full name of the author." }, "email": { "type": "string", "description": "The e-mail address of the author.", "format": "email" }, "role": { "type": "string", "description": "The role of the author in the project." } } } }, "repositories": { "type": "array", "description": "A set of additional repositories where packages can be found.", "items": { "type": "object", "additionalProperties": true, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "The repository type." } } } }, "projects": { "type": "array", "description": "A set with projects that shouls be created in the IDE.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "configurations": { "type": "array", "description": "The list with configurations.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "platform", "output" ], "properties": { "debug": { "type": "boolean", "description": "Whether or not this is a debug configuration." }, "definitions": { "type": "array", "description": "A list with definitions.", "items": { "type": "string" } }, "dependencies": { "type": "array", "description": "A list with project specific dependencies.", "items": { "type": [ "object", "string" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the dependency." }, "config": { "type": "string", "description": "The name of the configuration to reference." } } } }, "intermediate-dir": { "type": "string", "description": "The directory to output intermediate data to." }, "name": { "type": "string", "description": "The name of the configuration (e.g. Debug, Release, etc.)." }, "output": { "type": "string", "description": "The file or directory to output the compiled binary to." }, "paths": { "type": "object", "description": "The map with all paths.", "oneOf": [ { "$ref": "#/definitions/paths" } ] }, "pch": { "type": "object", "additionalProperties": false, "description": "The precompiled header settings.", "oneOf": [ { "$ref": "#/definitions/pch" } ] }, "platform": { "type": "string", "description": "The platform that this configuration is configured for." }, "warning-level": { "type": "integer", "description": "The warning level used for this configuration." } } } }, "definitions": { "type": "array", "description": "A list with definitions to add to the project.", "items": { "type": "string" } }, "dependencies": { "type": "array", "description": "The list with dependencies.", "items": { "type": "object", "additionalProperties": true, "oneOf": [ { "$ref": "#/definitions/project-dependency" } ] } }, "dependencies-dev": { "type": "array", "description": "The list with development dependencies.", "items": { "type": "object", "additionalProperties": false, "oneOf": [ { "$ref": "#/definitions/project-dependency" } ] } }, "name": { "type": "string", "description": "The name of the project." }, "paths": { "type": "object", "description": "The paths for this project", "oneOf": [ { "$ref": "#/definitions/paths" } ] }, "pch": { "type": "object", "oneOf": [ { "$ref": "#/definitions/pch" } ] }, "source": { "type": "object", "oneOf": [ { "$ref": "#/definitions/source" } ] }, "subsystem": { "type": "string", "description": "The project's subsystem" }, "type": { "type": "string", "description": "The type of the project." } } } } }, "definitions": { "source": { "type": "object", "description": "The project's source", "additionalProperties": false, "properties": { "extensions": { "type": "array", "description": "A list with extensions to add to this filter.", "items": { "type": "string" } }, "files": { "type": "array", "description": "A list with files to add.", "items": { "type": "string" } }, "name": { "type": "string", "description": "The name of this source definition. This is used to create filters in the IDE." }, "paths": { "type": "array", "description": "A list with directories to include source files from.", "items": { "type": "string" } }, "sources": { "type": [ "array", "boolean" ], "description": "A list with sources that should act as sub filters.", "items": { "type": "object" } } } }, "paths": { "type": "object", "additionalProperties": false, "properties": { "exclude": { "type": "array", "description": "An array with paths to exclude.", "items": { "type": "string" } }, "executable": { "type": "array", "description": "An array with paths of where to find executables.", "items": { "type": "string" } }, "include": { "type": "array", "description": "An array with paths of where to find include files.", "items": { "type": "string" } }, "library": { "type": "array", "description": "An array with paths of where to find libraries.", "items": { "type": "string" } }, "reference": { "type": "array", "description": "An array with paths of where to find reference files.", "items": { "type": "string" } }, "source": { "type": "array", "description": "An array with paths of where to find source files.", "items": { "type": "string" } } } }, "pch": { "type": "object", "description": "The precompiled header for this project", "additionalProperties": false, "required": [ "header", "source" ], "properties": { "header": { "type": "string", "description": "The path that represents the precompiled header." }, "memory": { "type": "integer", "description": "The amount of bytes that is used for the compiler's memory." }, "name": { "type": "string", "description": "The name of the precompiled header." }, "source": { "type": "string", "description": "The path to the source file that compiles the precompiled header." } } }, "project-dependency": { "type": "object", "required": [ "name2", "version" ], "properties": { "name": { "type": "string", "description": "The name of the dependency." }, "version": { "type": "string", "description": "The version of the dependency." } } } } }
o67273
{ "additionalProperties": false, "properties": { "analyticsAvailable": { "type": "boolean" }, "apiAccess": { "type": "boolean" }, "apiType": { "type": "string" }, "auditInformationProvided": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "enum": [ "None", "Data made available", "Data made available by negotiation" ] } }, "type": "object" }, "changeImpactAssessment": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "cloudDeploymentModel": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "enum": [ "Public cloud", "Community cloud", "Private cloud", "Hybrid cloud" ] } }, "type": "object" }, "configurationTracking": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "createdAt": { "_format": "date-time", "type": "string" }, "dataAtRestProtections": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "items": { "enum": [ "CPA Foundation-grade assured components", "FIPS-assured encryption", "Other encryption", "Secure containers, racks or cages", "Physical access control", "No protection" ] }, "maxItems": 6, "type": "array", "_uniqueItems": true } }, "type": "object" }, "dataBackupRecovery": { "type": "boolean" }, "dataExtractionRemoval": { "type": "boolean" }, "dataManagementLocations": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "items": { "enum": [ "UK", "EU", "USA - Safe Harbor", "Other countries with data protection treaties", "Rest of world" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true } }, "type": "object" }, "dataProtectionBetweenServices": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "items": { "enum": [ "Encrypted PSN service", "PSN service", "CPA Foundation VPN Gateway", "VPN using TLS, version 1.2 or later", "VPN using legacy SSL or TLS", "No encryption" ] }, "maxItems": 6, "type": "array", "_uniqueItems": true } }, "type": "object" }, "dataProtectionBetweenUserAndService": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "items": { "enum": [ "Encrypted PSN service", "PSN service", "CPA Foundation VPN Gateway", "VPN using TLS, version 1.2 or later", "VPN using legacy SSL or TLS", "No encryption" ] }, "maxItems": 6, "type": "array", "_uniqueItems": true } }, "type": "object" }, "dataProtectionWithinService": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "items": { "enum": [ "VPN using TLS, version 1.2 or later", "VPN using legacy SSL or TLS", "VLAN", "Bonded fibre optic connections", "Other network protection", "No encryption" ] }, "maxItems": 6, "type": "array", "_uniqueItems": true } }, "type": "object" }, "dataRedundantEquipmentAccountsRevoked": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "dataSecureDeletion": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "enum": [ "CPA Foundation-grade erasure product", "CESG or CPNI-approved erasure process", "Other secure erasure process", "Other erasure process" ] } }, "type": "object" }, "dataSecureEquipmentDisposal": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion", "CESG-assured components" ] }, "value": { "type": "boolean" } }, "type": "object" }, "dataStorageMediaDisposal": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "enum": [ "CESG-assured destruction service (CAS(T))", "CPA Foundation-assured product", "CPNI-approved destruction service", "BS EN 151713:2009-compliant destruction", "CESG or CPNI-approved erasure process", "Other secure erasure process", "Other destruction/erasure process" ] } }, "type": "object" }, "datacentreLocations": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "items": { "enum": [ "UK", "EU", "USA - Safe Harbor", "Other countries with data protection treaties", "Rest of world" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true } }, "type": "object" }, "datacentreProtectionDisclosure": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "datacentreTier": { "type": "string" }, "datacentresEUCode": { "type": "boolean" }, "datacentresSpecifyLocation": { "type": "boolean" }, "deprovisioningTime": { "type": "string" }, "deviceAccessMethod": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "items": { "enum": [ "Corporate/enterprise devices", "Partner devices", "Unknown devices" ] }, "maxItems": 3, "type": "array", "_uniqueItems": true } }, "type": "object" }, "educationPricing": { "type": "boolean" }, "elasticCloud": { "type": "boolean" }, "eventMonitoring": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "freeOption": { "type": "boolean" }, "governanceFramework": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "guaranteedResources": { "type": "boolean" }, "hardwareSoftwareVerification": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "id": { "pattern": "^([0-9]{16})$", "type": "string" }, "identityAuthenticationControls": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent testing of implementation", "CESG-assured components" ] }, "value": { "items": { "enum": [ "Username and two-factor authentication", "Username and TLS client certificate", "Authentication federation", "Limited access over dedicated link, enterprise or community network", "Username and password", "Username and strong password/passphrase enforcement", "Other mechanism" ] }, "maxItems": 7, "type": "array", "_uniqueItems": true } }, "type": "object" }, "incidentDefinitionPublished": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "incidentEscalation": { "type": "boolean" }, "incidentManagementProcess": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "incidentManagementReporting": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "interconnectionMethods": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "items": { "enum": [ "Encrypted PSN service", "PSN service", "Private WAN", "Internet" ] }, "maxItems": 4, "type": "array", "_uniqueItems": true } }, "type": "object" }, "legalJurisdiction": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "enum": [ "UK", "EU", "USA - Safe Harbor", "Other countries with data protection treaties", "Rest of world" ] } }, "type": "object" }, "lot": { "enum": [ "IaaS" ] }, "managementInterfaceProtection": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation" ] }, "value": { "type": "boolean" } }, "type": "object" }, "minimumContractPeriod": { "enum": [ "Hour", "Day", "Month", "Year", "Other" ] }, "networksConnected": { "items": { "enum": [ "Internet", "Public Services Network (PSN)", "Government Secure intranet (GSi)", "Police National Network (PNN)", "New NHS Network (N3)", "Joint Academic Network (JANET)", "Other" ] }, "maxItems": 7, "type": "array", "_uniqueItems": true }, "offlineWorking": { "type": "boolean" }, "onboardingGuidance": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "openSource": { "type": "boolean" }, "openStandardsSupported": { "type": "boolean" }, "otherConsumers": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "enum": [ "No other consumer", "Only government consumers", "A specific consumer group, eg Police, Defence or Health", "Anyone - public" ] } }, "type": "object" }, "persistentStorage": { "type": "boolean" }, "personnelSecurityChecks": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "items": { "enum": [ "Security clearance national vetting (SC)", "Baseline personnel security standard (BPSS)", "Background checks in accordance with BS7858:2012", "Employment checks" ] }, "maxItems": 4, "type": "array", "_uniqueItems": true } }, "type": "object" }, "priceInterval": { "enum": [ "", "Second", "Minute", "Hour", "Day", "Week", "Month", "Quarter", "6 months", "Year" ] }, "priceMax": { "type": [ "number", "null" ] }, "priceMin": { "type": "number" }, "priceString": { "type": "string" }, "priceUnit": { "enum": [ "Unit", "Person", "Licence", "User", "Device", "Instance", "Server", "Virtual machine", "Transaction", "Megabyte", "Gigabyte", "Terabyte" ] }, "pricingDocument": { "type": "string" }, "pricingDocumentURL": { "_format": "uri", "type": "string" }, "provisioningTime": { "type": "string" }, "restrictAdministratorPermissions": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation" ] }, "value": { "type": "boolean" } }, "type": "object" }, "secureConfigurationManagement": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "secureDesign": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "secureDevelopment": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "selfServiceProvisioning": { "type": "boolean" }, "serviceAvailabilityPercentage": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Contractual commitment", "Independent validation of assertion" ] }, "value": { "type": "number" } }, "type": "object" }, "serviceBenefits": { "items": { "maxLength": 120, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "minItems": 1, "type": "array" }, "serviceConfigurationGuidance": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation" ] }, "value": { "type": "boolean" } }, "type": "object" }, "serviceDefinitionDocument": { "type": "string" }, "serviceDefinitionDocumentURL": { "_format": "uri", "type": "string" }, "serviceFeatures": { "items": { "maxLength": 120, "pattern": "^(?:\\S+\\s+){0,9}\\S+$", "type": "string" }, "maxItems": 10, "minItems": 1, "type": "array" }, "serviceManagementModel": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "items": { "enum": [ "Dedicated devices on a segregated network", "Dedicated devices for community service management", "Dedicated devices for multiple community service management", "Service management via bastion hosts", "Direct service management" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true } }, "type": "object" }, "serviceName": { "maxLength": 100, "minLength": 1, "type": "string" }, "serviceOffboarding": { "type": "boolean" }, "serviceOnboarding": { "type": "boolean" }, "serviceSummary": { "maxLength": 500, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "serviceTypes": { "items": { "enum": [ "Compute", "Storage" ] }, "maxItems": 2, "type": "array", "_uniqueItems": true }, "servicesManagementSeparation": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent testing of implementation", "Assurance of service design", "CESG-assured components" ] }, "value": { "type": "boolean" } }, "type": "object" }, "servicesSeparation": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent testing of implementation", "Assurance of service design", "CESG-assured components" ] }, "value": { "type": "boolean" } }, "type": "object" }, "sfiaRateDocument": { "type": "string" }, "sfiaRateDocumentURL": { "_format": "uri", "type": "string" }, "status": { "enum": [ "disabled", "enabled", "published" ] }, "supplierId": { "type": "integer" }, "supportAvailability": { "type": "string" }, "supportForThirdParties": { "type": "boolean" }, "supportResponseTime": { "type": "string" }, "supportTypes": { "items": { "enum": [ "Service desk", "Email", "Phone", "Live chat", "Onsite" ] }, "maxItems": 5, "type": "array", "_uniqueItems": true }, "supportedBrowsers": { "items": { "enum": [ "Internet Explorer 6", "Internet Explorer 7", "Internet Explorer 8", "Internet Explorer 9", "Internet Explorer 10+", "Firefox", "Chrome", "Safari", "Opera" ] }, "maxItems": 9, "type": "array", "_uniqueItems": true }, "supportedDevices": { "items": { "enum": [ "PC", "Mac", "Smartphone", "Tablet" ] }, "maxItems": 4, "type": "array", "_uniqueItems": true }, "terminationCost": { "type": "boolean" }, "termsAndConditionsDocument": { "type": "string" }, "termsAndConditionsDocumentURL": { "_format": "uri", "type": "string" }, "thirdPartyComplianceMonitoring": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "thirdPartyDataSharingInformation": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "thirdPartyRiskAssessment": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "thirdPartySecurityRequirements": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "title": { "type": "string" }, "trainingProvided": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "trialOption": { "type": "boolean" }, "userAccessControlManagement": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation" ] }, "value": { "type": "boolean" } }, "type": "object" }, "userAuthenticateManagement": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation" ] }, "value": { "type": "boolean" } }, "type": "object" }, "userAuthenticateSupport": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion", "Independent testing of implementation" ] }, "value": { "type": "boolean" } }, "type": "object" }, "vatIncluded": { "type": "boolean" }, "vendorCertifications": { "items": { "type": "string" }, "maxItems": 10, "type": "array" }, "vulnerabilityAssessment": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "vulnerabilityMitigationPrioritisation": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "vulnerabilityMonitoring": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "vulnerabilityTimescales": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" }, "vulnerabilityTracking": { "properties": { "assurance": { "enum": [ "Service provider assertion", "Independent validation of assertion" ] }, "value": { "type": "boolean" } }, "type": "object" } }, "required": [ "id", "supplierId", "lot", "title", "serviceTypes", "serviceName", "serviceSummary", "serviceBenefits", "serviceFeatures", "serviceDefinitionDocument", "serviceDefinitionDocumentURL", "termsAndConditionsDocument", "termsAndConditionsDocumentURL", "minimumContractPeriod", "terminationCost", "priceMin", "priceUnit", "priceString", "vatIncluded", "educationPricing", "trialOption", "freeOption", "pricingDocument", "pricingDocumentURL", "openStandardsSupported", "supportForThirdParties", "supportAvailability", "supportResponseTime", "incidentEscalation", "supportTypes", "serviceOnboarding", "serviceOffboarding", "analyticsAvailable", "elasticCloud", "guaranteedResources", "persistentStorage", "selfServiceProvisioning", "provisioningTime", "deprovisioningTime", "openSource", "apiAccess", "networksConnected", "supportedBrowsers", "offlineWorking", "supportedDevices", "datacentresEUCode", "datacentresSpecifyLocation", "datacentreTier", "dataBackupRecovery", "dataExtractionRemoval", "dataProtectionBetweenUserAndService", "dataProtectionWithinService", "dataProtectionBetweenServices", "datacentreLocations", "dataManagementLocations", "legalJurisdiction", "datacentreProtectionDisclosure", "dataAtRestProtections", "dataSecureDeletion", "dataStorageMediaDisposal", "dataSecureEquipmentDisposal", "dataRedundantEquipmentAccountsRevoked", "serviceAvailabilityPercentage", "cloudDeploymentModel", "otherConsumers", "servicesSeparation", "servicesManagementSeparation", "governanceFramework", "configurationTracking", "changeImpactAssessment", "vulnerabilityAssessment", "vulnerabilityMonitoring", "vulnerabilityMitigationPrioritisation", "vulnerabilityTracking", "vulnerabilityTimescales", "eventMonitoring", "incidentManagementProcess", "incidentManagementReporting", "incidentDefinitionPublished", "personnelSecurityChecks", "secureDevelopment", "secureDesign", "secureConfigurationManagement", "thirdPartyDataSharingInformation", "thirdPartySecurityRequirements", "thirdPartyRiskAssessment", "thirdPartyComplianceMonitoring", "userAuthenticateManagement", "userAuthenticateSupport", "userAccessControlManagement", "restrictAdministratorPermissions", "managementInterfaceProtection", "identityAuthenticationControls", "onboardingGuidance", "interconnectionMethods", "serviceManagementModel", "auditInformationProvided", "deviceAccessMethod", "serviceConfigurationGuidance", "trainingProvided" ], "title": "G6 Submissions IaaS Schema", "type": "object" }
o62058
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Secret": { "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" }, "data": { "additionalProperties": { "_format": "byte", "type": "string" }, "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" }, "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" }, "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" }, "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" }, "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" }, "type": { "description": "Used to facilitate programmatic handling of secret data.", "type": "string" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Secret", "version": "v1" } ] }, "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" } }, "description": "SecretList is a list of Secret.", "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": [ "v1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Secret" }, "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": [ "SecretList" ], "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": "SecretList", "version": "v1" } ] }
kb_939_Normalized
{ "properties": { "person1": { "properties": { "date_of_birth": { "description": "The date of birth of the first person", "type": "string" }, "name": { "description": "The name of the first person", "type": "string" } }, "required": [ "name", "date_of_birth" ], "type": "object" }, "person2": { "properties": { "date_of_birth": { "description": "The date of birth of the second person", "type": "string" }, "name": { "description": "The name of the second person", "type": "string" } }, "required": [ "name", "date_of_birth" ], "type": "object" } }, "required": [ "person1", "person2" ], "type": "object" }
calculate_age_difference_c3c6f2da
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://readium.org/webpub-manifest/schema/extensions/epub/metadata.schema.json", "title": "EPUB Extension - Metadata", "type": "object", "properties": { "rendition": { "type": "object", "properties": { "layout": { "description": "Hints how the layout of the resource should be presented", "type": "string", "enum": [ "fixed", "reflowable" ] }, "orientation": { "description": "Suggested orientation for the device when displaying the linked resource", "type": "string", "enum": [ "auto", "landscape", "portrait" ] }, "overflow": { "description": "Suggested method for handling overflow while displaying the linked resource", "type": "string", "enum": [ "auto", "paginated", "scrolled", "scrolled-continuous" ] }, "spread": { "description": "Indicates the condition to be met for the linked resource to be rendered within a synthetic spread", "type": "string", "enum": [ "auto", "both", "none", "landscape" ] } } } } }
o38444
{ "properties": { "dimensions": { "description": "The dimensions required to calculate the area 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": { "description": "The side length of the square", "type": "number" } }, "required": [ "radius", "base", "height", "side" ], "type": "object" }, "shape": { "description": "The type of geometric shape (e.g. circle, triangle, square)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_bdc90cb9
{ "properties": { "cuisine": { "description": "The cuisine of the restaurants to search for", "type": "string" }, "location": { "description": "The location to search for restaurants", "type": "string" }, "price_range": { "properties": { "max": { "description": "The maximum price range of restaurants to include in search results", "type": "number" }, "min": { "description": "The minimum price range of restaurants to include in search results", "type": "number" } }, "required": [ "min", "max" ], "type": "object" } }, "required": [ "location", "cuisine", "price_range" ], "type": "object" }
search_restaurants_19db03d4
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Activation": { "additionalProperties": false, "description": "criteria by which a profile is auto-activated.", "preferredOrder": [ "env", "kubeContext", "command" ], "properties": { "command": { "description": "a Skaffold command for which the profile is auto-activated.", "examples": [ "dev" ], "type": "string", "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated." }, "env": { "description": "a `key=value` pair. The profile is auto-activated if an Environment Variable `key` has value `value`.", "examples": [ "ENV=production" ], "type": "string", "x-intellij-html-description": "a <code>key=value</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> has value <code>value</code>." }, "kubeContext": { "description": "a Kubernetes context for which the profile is auto-activated.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated." } }, "x-intellij-html-description": "criteria by which a profile is auto-activated." }, "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "docker" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "docker": { "$ref": "#/definitions/DockerArtifact", "description": "*beta* describes an artifact built from a Dockerfile.", "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact", "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.", "x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jibMaven" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jibMaven": { "$ref": "#/definitions/JibMavenArtifact", "description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).", "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jibGradle" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jibGradle": { "$ref": "#/definitions/JibGradleArtifact", "description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).", "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "kaniko" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "kaniko": { "$ref": "#/definitions/KanikoArtifact", "description": "*alpha* builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).", "x-intellij-html-description": "<em>alpha</em> builds images using <a href=\"https://github.com/GoogleContainerTools/kaniko\">kaniko</a>." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "custom" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "custom": { "$ref": "#/definitions/CustomArtifact", "description": "*alpha* builds images using a custom build script written by the user.", "x-intellij-html-description": "<em>alpha</em> builds images using a custom build script written by the user." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "description": "*alpha* local files synced to pods instead of triggering an image build when modified.", "x-intellij-html-description": "<em>alpha</em> local files synced to pods instead of triggering an image build when modified." } } } ], "description": "items that need to be built, along with the context in which they should be built.", "required": [ "image" ], "x-intellij-html-description": "items that need to be built, along with the context in which they should be built." }, "BazelArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built with [Bazel](https://bazel.build/).", "preferredOrder": [ "target", "args" ], "properties": { "args": { "default": "[]", "description": "additional args to pass to `bazel build`.", "examples": [ "[\"-flag\", \"--otherflag\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args to pass to <code>bazel build</code>." }, "target": { "description": "`bazel build` target to run.", "examples": [ "//:skaffold_example.tar" ], "type": "string", "x-intellij-html-description": "<code>bazel build</code> target to run." } }, "required": [ "target" ], "x-intellij-html-description": "<em>beta</em> describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "local" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "local": { "$ref": "#/definitions/LocalBuild", "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "googleCloudBuild" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild", "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).", "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "cluster" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "cluster": { "$ref": "#/definitions/ClusterDetails", "description": "*beta* describes how to do an on-cluster build.", "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } } ], "description": "contains all the configuration for the build steps.", "x-intellij-html-description": "contains all the configuration for the build steps." }, "ClusterDetails": { "additionalProperties": false, "description": "*beta* describes how to do an on-cluster build.", "preferredOrder": [ "pullSecret", "pullSecretName", "namespace", "timeout", "dockerConfig", "resources" ], "properties": { "dockerConfig": { "$ref": "#/definitions/DockerConfig", "description": "describes how to mount the local Docker configuration into a pod.", "x-intellij-html-description": "describes how to mount the local Docker configuration into a pod." }, "namespace": { "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.", "type": "string", "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration." }, "pullSecret": { "description": "path to the secret key file.", "type": "string", "x-intellij-html-description": "path to the secret key file." }, "pullSecretName": { "default": "kaniko-secret", "description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image.", "type": "string", "x-intellij-html-description": "name of the Kubernetes secret for pulling the files from the build context and pushing the final image." }, "resources": { "$ref": "#/definitions/ResourceRequirements", "description": "define the resource requirements for the kaniko pod.", "x-intellij-html-description": "define the resource requirements for the kaniko pod." }, "timeout": { "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)." } }, "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "CustomArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.", "preferredOrder": [ "buildCommand", "dependencies" ], "properties": { "buildCommand": { "description": "command executed to build the image.", "type": "string", "x-intellij-html-description": "command executed to build the image." }, "dependencies": { "$ref": "#/definitions/CustomDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." } }, "x-intellij-html-description": "<em>alpha</em> describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold." }, "CustomDependencies": { "additionalProperties": false, "description": "*alpha* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.", "preferredOrder": [ "dockerfile", "command", "paths", "ignore" ], "properties": { "command": { "description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.", "type": "string", "x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command <em>must</em> be a valid JSON array." }, "dockerfile": { "$ref": "#/definitions/DockerfileDependency", "description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.", "x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies." }, "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>alpha</em> used to specify dependencies for an artifact built by a custom build script. Either <code>dockerfile</code> or <code>paths</code> should be specified for file watching to work as expected." }, "DateTimeTagger": { "additionalProperties": false, "description": "*beta* tags images with the build timestamp.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "default": "2006-01-02_15-04-05.999_MST", "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).", "type": "string", "x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>." }, "timezone": { "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.", "type": "string", "x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone." } }, "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "DeployConfig": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy", "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." } } }, { "additionalProperties": false, "preferredOrder": [ "kubectl" ], "properties": { "kubectl": { "$ref": "#/definitions/KubectlDeploy", "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." } } }, { "additionalProperties": false, "preferredOrder": [ "kustomize" ], "properties": { "kustomize": { "$ref": "#/definitions/KustomizeDeploy", "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." } } } ], "description": "contains all the configuration needed by the deploy steps.", "x-intellij-html-description": "contains all the configuration needed by the deploy steps." }, "DockerArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "target", "buildArgs", "network", "cacheFrom", "noCache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build." }, "cacheFrom": { "default": "[]", "description": "the Docker images used as cache sources.", "examples": [ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Docker images used as cache sources." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "network": { "description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.", "enum": [ "host", "bridge", "none" ], "type": "string", "x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are <code>host</code>: use the host's networking stack. <code>bridge</code>: use the bridged network configuration. <code>none</code>: no networking in the container." }, "noCache": { "default": "false", "description": "used to pass in --no-cache to docker build to prevent caching.", "type": "boolean", "x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "DockerConfig": { "additionalProperties": false, "description": "contains information about the docker `config.json` to mount.", "preferredOrder": [ "path", "secretName" ], "properties": { "path": { "description": "path to the docker `config.json`.", "type": "string", "x-intellij-html-description": "path to the docker <code>config.json</code>." }, "secretName": { "description": "Kubernetes secret that will hold the Docker configuration.", "type": "string", "x-intellij-html-description": "Kubernetes secret that will hold the Docker configuration." } }, "x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount." }, "DockerfileDependency": { "additionalProperties": false, "description": "*alpha* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.", "preferredOrder": [ "path", "buildArgs" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "path": { "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." } }, "x-intellij-html-description": "<em>alpha</em> used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "*beta* tags images with a configurable template string.", "preferredOrder": [ "template" ], "properties": { "template": { "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.", "examples": [ "{{.RELEASE}}-{{.IMAGE_NAME}}" ], "type": "string", "x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section." } }, "required": [ "template" ], "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "GitTagger": { "additionalProperties": false, "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "preferredOrder": [ "variant" ], "properties": { "variant": { "description": "determines the behavior of the git tagger. Valid variants are `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha.", "enum": [ "Tags", "CommitSha", "AbbrevCommitSha" ], "type": "string", "x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are <code>Tags</code> (default): use git tags or fall back to abbreviated commit hash. <code>CommitSha</code>: use the full git commit sha. <code>AbbrevCommitSha</code>: use the abbreviated git commit sha." } }, "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "dockerImage", "mavenImage", "gradleImage" ], "properties": { "diskSizeGb": { "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "integer", "x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "dockerImage": { "default": "gcr.io/cloud-builders/docker", "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "gradleImage": { "default": "gcr.io/cloud-builders/gradle", "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "machineType": { "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "string", "x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "mavenImage": { "default": "gcr.io/cloud-builders/mvn", "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "projectId": { "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.", "type": "string", "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project." }, "timeout": { "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds." }, "HelmConventionConfig": { "description": "image config in the syntax of image.repository and image.tag.", "x-intellij-html-description": "image config in the syntax of image.repository and image.tag." }, "HelmDeploy": { "additionalProperties": false, "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "preferredOrder": [ "releases", "flags" ], "properties": { "flags": { "$ref": "#/definitions/HelmDeployFlags", "description": "additional option flags that are passed on the command line to `helm`.", "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "releases": { "description": "a list of Helm releases.", "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array", "x-intellij-html-description": "a list of Helm releases." } }, "required": [ "releases" ], "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "HelmDeployFlags": { "additionalProperties": false, "description": "additional option flags that are passed on the command line to `helm`.", "preferredOrder": [ "global", "install", "upgrade" ], "properties": { "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." }, "install": { "default": "[]", "description": "additional flags passed to (`helm install`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm install</code>)." }, "upgrade": { "default": "[]", "description": "additional flags passed to (`helm upgrade`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)." } }, "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "HelmFQNConfig": { "additionalProperties": false, "description": "image config to use the FullyQualifiedImageName as param to set.", "preferredOrder": [ "property" ], "properties": { "property": { "description": "defines the image config.", "type": "string", "x-intellij-html-description": "defines the image config." } }, "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set." }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig", "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig", "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>." } } } ], "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "HelmPackaged": { "additionalProperties": false, "description": "parameters for packaging helm chart (`helm package`).", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "sets the `appVersion` on the chart to this version.", "type": "string", "x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version." }, "version": { "description": "sets the `version` on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version." } }, "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "HelmRelease": { "additionalProperties": false, "description": "describes a helm release to be deployed.", "preferredOrder": [ "name", "chartPath", "valuesFiles", "values", "namespace", "version", "setValues", "setValueTemplates", "wait", "recreatePods", "skipBuildDependencies", "useHelmSecrets", "overrides", "packaged", "imageStrategy" ], "properties": { "chartPath": { "description": "path to the Helm chart.", "type": "string", "x-intellij-html-description": "path to the Helm chart." }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy", "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "name": { "description": "name of the Helm release.", "type": "string", "x-intellij-html-description": "name of the Helm release." }, "namespace": { "description": "Kubernetes namespace.", "type": "string", "x-intellij-html-description": "Kubernetes namespace." }, "overrides": { "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).", "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)." }, "packaged": { "$ref": "#/definitions/HelmPackaged", "description": "parameters for packaging helm chart (`helm package`).", "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "recreatePods": { "default": "false", "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI." }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag." }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag." }, "skipBuildDependencies": { "default": "false", "description": "should build dependencies be skipped.", "type": "boolean", "x-intellij-html-description": "should build dependencies be skipped." }, "useHelmSecrets": { "default": "false", "description": "instructs skaffold to use secrets plugin on deployment.", "type": "boolean", "x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment." }, "values": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs supplementing the Helm `values` file.", "type": "object", "x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file." }, "valuesFiles": { "default": "[]", "description": "paths to the Helm `values` files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "paths to the Helm <code>values</code> files." }, "version": { "description": "version of the chart.", "type": "string", "x-intellij-html-description": "version of the chart." }, "wait": { "default": "false", "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI." } }, "required": [ "name", "chartPath" ], "x-intellij-html-description": "describes a helm release to be deployed." }, "JSONPatch": { "additionalProperties": false, "description": "patch to be applied by a profile.", "preferredOrder": [ "op", "path", "from", "value" ], "properties": { "from": { "description": "source position in the yaml, used for `copy` or `move` operations.", "type": "string", "x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations." }, "op": { "default": "replace", "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.", "type": "string", "x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>." }, "path": { "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.", "examples": [ "/build/artifacts/0/docker/dockerfile" ], "type": "string", "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built." }, "value": { "description": "value to apply. Can be any portion of yaml.", "x-intellij-html-description": "value to apply. Can be any portion of yaml." } }, "required": [ "path" ], "x-intellij-html-description": "patch to be applied by a profile." }, "JibGradleArtifact": { "additionalProperties": false, "description": "*alpha* builds images using the [Jib plugin for Gradle](https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin).", "preferredOrder": [ "project", "args" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to Gradle.", "examples": [ "[\"--no-build-cache\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to Gradle." }, "project": { "description": "selects which Gradle project to build.", "type": "string", "x-intellij-html-description": "selects which Gradle project to build." } }, "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-gradle-plugin\">Jib plugin for Gradle</a>." }, "JibMavenArtifact": { "additionalProperties": false, "description": "*alpha* builds images using the [Jib plugin for Maven](https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin).", "preferredOrder": [ "module", "profile", "args" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to Maven.", "examples": [ "[\"-x\", \"-DskipTests\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to Maven." }, "module": { "description": "selects which Maven module to build, for a multi module project.", "type": "string", "x-intellij-html-description": "selects which Maven module to build, for a multi module project." }, "profile": { "description": "selects which Maven profile to activate.", "type": "string", "x-intellij-html-description": "selects which Maven profile to activate." } }, "x-intellij-html-description": "<em>alpha</em> builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/tree/master/jib-maven-plugin\">Jib plugin for Maven</a>." }, "KanikoArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built from a Dockerfile, with kaniko.", "preferredOrder": [ "flags", "dockerfile", "target", "buildArgs", "buildContext", "image", "cache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"{{.ENV_VARIABLE}}\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "buildContext": { "$ref": "#/definitions/KanikoBuildContext", "description": "where the build context for this artifact resides.", "x-intellij-html-description": "where the build context for this artifact resides." }, "cache": { "$ref": "#/definitions/KanikoCache", "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "flags": { "default": "[]", "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>. Deprecated - instead the named, unique fields should be used, e.g. <code>buildArgs</code>, <code>cache</code>, <code>target</code>." }, "image": { "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.", "type": "string", "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "<em>alpha</em> describes an artifact built from a Dockerfile, with kaniko." }, "KanikoBuildContext": { "additionalProperties": false, "description": "contains the different fields available to specify a Kaniko build context.", "preferredOrder": [ "gcsBucket", "localDir" ], "properties": { "gcsBucket": { "description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources.", "type": "string", "x-intellij-html-description": "GCS bucket to which sources are uploaded. Kaniko will need access to that bucket to download the sources." }, "localDir": { "$ref": "#/definitions/LocalDir", "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." } }, "x-intellij-html-description": "contains the different fields available to specify a Kaniko build context." }, "KanikoCache": { "additionalProperties": false, "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "preferredOrder": [ "repo" ], "properties": { "repo": { "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).", "type": "string", "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>." } }, "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "KubectlDeploy": { "additionalProperties": false, "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "manifests": { "default": "[\"k8s/*.yaml\"]", "description": "the Kubernetes yaml or json manifests.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Kubernetes yaml or json manifests." }, "remoteManifests": { "default": "[]", "description": "Kubernetes manifests in remote clusters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "Kubernetes manifests in remote clusters." } }, "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "KubectlFlags": { "additionalProperties": false, "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete" ], "properties": { "apply": { "default": "[]", "description": "additional flags passed on creations (`kubectl apply`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)." }, "delete": { "default": "[]", "description": "additional flags passed on deletions (`kubectl delete`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)." }, "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." } }, "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "preferredOrder": [ "path", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "path": { "default": ".", "description": "path to Kustomization files.", "type": "string", "x-intellij-html-description": "path to Kustomization files." } }, "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "LocalBuild": { "additionalProperties": false, "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit" ], "properties": { "push": { "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.", "type": "boolean", "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster." }, "useBuildkit": { "default": "false", "description": "use BuildKit to build Docker images.", "type": "boolean", "x-intellij-html-description": "use BuildKit to build Docker images." }, "useDockerCLI": { "default": "false", "description": "use `docker` command-line interface instead of Docker Engine APIs.", "type": "boolean", "x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "LocalDir": { "additionalProperties": false, "description": "configures how Kaniko mounts sources directly via an `emptyDir` volume.", "preferredOrder": [ "initImage" ], "properties": { "initImage": { "description": "image used to run init container which mounts kaniko context.", "type": "string", "x-intellij-html-description": "image used to run init container which mounts kaniko context." } }, "x-intellij-html-description": "configures how Kaniko mounts sources directly via an <code>emptyDir</code> volume." }, "Profile": { "additionalProperties": false, "description": "*beta* profiles are used to override any `build`, `test` or `deploy` configuration.", "preferredOrder": [ "name", "build", "test", "deploy", "patches", "activation" ], "properties": { "activation": { "description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.", "items": { "$ref": "#/definitions/Activation" }, "type": "array", "x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "name": { "description": "a unique profile name.", "examples": [ "profile-prod" ], "type": "string", "x-intellij-html-description": "a unique profile name." }, "patches": { "description": "patches applied to the configuration. Patches use the JSON patch notation.", "items": { "$ref": "#/definitions/JSONPatch" }, "type": "array", "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "name" ], "x-intellij-html-description": "<em>beta</em> profiles are used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "ResourceRequirement": { "additionalProperties": false, "description": "stores the CPU/Memory requirements for the pod.", "preferredOrder": [ "cpu", "memory" ], "properties": { "cpu": { "description": "the number cores to be used.", "examples": [ "2`, `2.0` or `200m" ], "type": "string", "x-intellij-html-description": "the number cores to be used." }, "memory": { "description": "the amount of memory to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of memory to allocate to the pod." } }, "x-intellij-html-description": "stores the CPU/Memory requirements for the pod." }, "ResourceRequirements": { "additionalProperties": false, "description": "describes the resource requirements for the kaniko pod.", "preferredOrder": [ "requests", "limits" ], "properties": { "limits": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource limits</a> for the Kaniko pod." }, "requests": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource requests</a> for the Kaniko pod." } }, "x-intellij-html-description": "describes the resource requirements for the kaniko pod." }, "ShaTagger": { "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." }, "SkaffoldConfig": { "additionalProperties": false, "description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).", "preferredOrder": [ "apiVersion", "kind", "build", "test", "deploy", "profiles" ], "properties": { "apiVersion": { "description": "version of the configuration.", "type": "string", "x-intellij-html-description": "version of the configuration." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "kind": { "default": "Config", "description": "always `Config`.", "type": "string", "x-intellij-html-description": "always <code>Config</code>." }, "profiles": { "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.", "items": { "$ref": "#/definitions/Profile" }, "type": "array", "x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "apiVersion", "kind" ], "x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)." }, "Sync": { "additionalProperties": false, "description": "*alpha* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files.", "preferredOrder": [ "manual" ], "properties": { "manual": { "description": "manual sync rules indicating the source and destination.", "items": { "$ref": "#/definitions/SyncRule" }, "type": "array", "x-intellij-html-description": "manual sync rules indicating the source and destination." } }, "x-intellij-html-description": "<em>alpha</em> specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files." }, "SyncRule": { "additionalProperties": false, "description": "specifies which local files to sync to remote folders.", "preferredOrder": [ "src", "dest", "strip" ], "properties": { "dest": { "description": "destination path in the container where the files should be synced to.", "examples": [ "\"app/\"" ], "type": "string", "x-intellij-html-description": "destination path in the container where the files should be synced to." }, "src": { "description": "a glob pattern to match local paths against.", "examples": [ "\"css/**/*.css\"" ], "type": "string", "x-intellij-html-description": "a glob pattern to match local paths against." }, "strip": { "description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.", "examples": [ "\"css/\"" ], "type": "string", "x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder." } }, "required": [ "src", "dest" ], "x-intellij-html-description": "specifies which local files to sync to remote folders." }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step.", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger", "description": "*beta* tags images with the build timestamp.", "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger", "description": "*beta* tags images with a configurable template string.", "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "gitCommit": { "$ref": "#/definitions/GitTagger", "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "sha256": { "$ref": "#/definitions/ShaTagger", "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." } }, "x-intellij-html-description": "contains all the configuration for the tagging step." }, "TestCase": { "additionalProperties": false, "description": "a list of structure tests to run on images that Skaffold builds.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "description": "artifact on which to run those tests.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "artifact on which to run those tests." }, "structureTests": { "default": "[]", "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.", "examples": [ "[\"./test/*\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact." } }, "required": [ "image" ], "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds." } }, "type": "object" }
o6350
{ "additionalProperties": false, "description": "Dev Server target options for Build Facade.", "properties": { "allowedHosts": { "default": [], "description": "Whitelist of hosts that are allowed to access the dev server.", "items": { "type": "string" }, "type": "array" }, "aot": { "description": "Build using Ahead of Time compilation.", "type": "boolean", "x-user-analytics": 13 }, "baseHref": { "description": "Base url for the application being built.", "type": "string" }, "browserTarget": { "description": "Target to serve.", "pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$", "type": "string" }, "commonChunk": { "description": "Use a separate bundle containing code used across multiple bundles.", "type": "boolean" }, "deployUrl": { "description": "URL where files will be deployed.", "type": "string" }, "disableHostCheck": { "default": false, "description": "Don't verify connected clients are part of allowed hosts.", "type": "boolean" }, "evalSourceMap": { "description": "Output in-file eval sourcemaps.", "type": "boolean", "x-deprecated": true }, "hmr": { "default": false, "description": "Enable hot module replacement.", "type": "boolean" }, "hmrWarning": { "default": true, "description": "Show a warning when the --hmr option is enabled.", "type": "boolean" }, "host": { "default": "localhost", "description": "Host to listen on.", "type": "string" }, "liveReload": { "default": true, "description": "Whether to reload the page on change, using live-reload.", "type": "boolean" }, "open": { "alias": "o", "default": false, "description": "Opens the url in default browser.", "type": "boolean" }, "optimization": { "description": "Enables optimization of the build output.", "oneOf": [ { "additionalProperties": false, "properties": { "scripts": { "default": true, "description": "Enables optimization of the scripts output.", "type": "boolean" }, "styles": { "default": true, "description": "Enables optimization of the styles output.", "type": "boolean" } }, "type": "object" }, { "type": "boolean" } ], "x-user-analytics": 16 }, "poll": { "description": "Enable and define the file watching poll time period in milliseconds.", "type": "number" }, "port": { "default": 4200, "description": "Port to listen on.", "type": "number" }, "progress": { "description": "Log progress to the console while building.", "type": "boolean" }, "proxyConfig": { "description": "Proxy configuration file.", "type": "string" }, "publicHost": { "description": "The URL that the browser client (or live-reload client, if enabled) should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies.", "type": "string" }, "servePath": { "description": "The pathname where the app will be served.", "type": "string" }, "servePathDefaultWarning": { "default": true, "description": "Show a warning when deploy-url/base-href use unsupported serve path values.", "type": "boolean" }, "sourceMap": { "description": "Output sourcemaps.", "oneOf": [ { "additionalProperties": false, "properties": { "hidden": { "default": false, "description": "Output sourcemaps used for error reporting tools.", "type": "boolean" }, "scripts": { "default": true, "description": "Output sourcemaps for all scripts.", "type": "boolean" }, "styles": { "default": true, "description": "Output sourcemaps for all styles.", "type": "boolean" }, "vendor": { "default": false, "description": "Resolve vendor packages sourcemaps.", "type": "boolean" } }, "type": "object" }, { "type": "boolean" } ] }, "ssl": { "default": false, "description": "Serve using HTTPS.", "type": "boolean" }, "sslCert": { "description": "SSL certificate to use for serving HTTPS.", "type": "string" }, "sslKey": { "description": "SSL key to use for serving HTTPS.", "type": "string" }, "vendorChunk": { "description": "Use a separate bundle containing only vendor libraries.", "type": "boolean" }, "vendorSourceMap": { "description": "Resolve vendor packages sourcemaps.", "type": "boolean", "x-deprecated": true }, "verbose": { "description": "Adds more details to output logging.", "type": "boolean" }, "watch": { "default": true, "description": "Rebuild on change.", "type": "boolean" } }, "required": [ "browserTarget" ], "title": "Dev Server Target", "type": "object" }
o58444
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "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", "base", "height" ], "type": "object" }, "shape": { "description": "The shape type (e.g. square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_d4988fd1
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ControllerRevision": { "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", "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" }, "data": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_runtime_RawExtension", "description": "Data is the serialized representation of the state." }, "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": [ "ControllerRevision" ], "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" }, "revision": { "_format": "int64", "description": "Revision indicates the revision of the state represented by Data.", "type": "integer" } }, "required": [ "revision" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ControllerRevision", "version": "v1" } ] }, "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_runtime_RawExtension": { "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", "type": "object" } }, "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", "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": "Items is the list of ControllerRevisions", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_ControllerRevision" }, "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": [ "ControllerRevisionList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ControllerRevisionList", "version": "v1" } ] }
kb_142_Normalized
{ "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", "udp" ], "type": "string" }, "partition": { "minLength": 1, "type": "string" }, "sslProfile": { "$ref": "#/definitions/sslProfileType" }, "virtualAddress": { "$ref": "#/definitions/virtualAddressType" } }, "required": [ "partition" ], "type": "object" }, "healthMonitorType": { "additionalProperties": false, "properties": { "interval": { "maximum": 86400, "minimum": 1, "type": "integer" }, "protocol": { "enum": [ "http", "tcp", "udp" ], "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": { "oneOf": [ { "properties": { "f5ProfileNames": { "items": { "minLength": 1, "type": "string" }, "type": "array" } }, "required": [ "f5ProfileNames" ] }, { "additionalProperties": false, "properties": { "f5ProfileName": { "minLength": 1, "type": "string" } } } ], "type": "object" }, "virtualAddressType": { "additionalProperties": false, "properties": { "bindAddr": { "anyOf": [ { "format": "bigipv4" }, { "format": "bigipv6" } ] }, "port": { "$ref": "#/definitions/portType" } }, "required": [ "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" }
o76580
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "order_items": { "description": "The items included in the order", "items": { "properties": { "price": { "description": "The price of the product", "type": "number" }, "product_name": { "description": "The name of the product", "type": "string" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "product_name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "order_items" ], "type": "object" }
generate_invoice_d09ef3a2
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "icon": { "type": "string", "pattern": "\\.png$" }, "color": { "description": "The format of the color values is 'RRGGBB' where RR is the hex value for red, GG for green, and BB for blue.", "type": "string", "pattern": "^[A-Fa-f0-9]{6}$" }, "elementId": { "description": "The numeric id of the icon layout element based on the predefined layout selected.", "enum": ["1", "2", "3", "11", "12", "21", "22", "31", "32"] }, "condition": { "description": "If set, then must be set to 'true' for this release", "enum": ["true"] }, "resource": { "type": "object", "required": ["url", "style", "content"], "properties": { "url": { "description": "The URL to be referenced. For resources that require authentication, the URL must be HTTPS.", "type": "string", "format": "uri" }, "style": { "description": "Specifies the kind of web resource being accessed. Permitted values are 'Simple' and 'Feed'.", "type": "string", "pattern": "^([sS]imple|[fF]eed)$", "default": "Simple" }, "content": { "description": "This member specifies how to extract content from the web response.", "type": "object", "minProperties": 1, "additionalProperties": { "type": "string" } } } }, "page": { "required": ["layout"], "properties": { "layout": { "description": "The name of the layout for the page. The layout name should refer to one of the predefined page layouts.", "enum": [ "MSBand_ScrollingText", "MSBand_NoScrollingText", "MSBand_SingleMetric", "MSBand_SingleMetricWithIcon", "MSBand_MetricsWithIcons", "MSBand_SingleMetricWithSecondary" ] }, "condition": { "$ref": "#/definitions/condition" }, "iconBindings": { "description": "Similar to textBindings, but used to select one of the web tile icons in icons list for each icon in the page. If there are no icon elements on the page, this member may be omitted.", "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/iconBinding" } }, "textBindings": { "description": "An array of objects corresponding to each page element that contains string content. Each binding object provides the numeric id of the page element based on the predefined layout selected, and the string value that it should contain.", "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/textBinding" } } } }, "iconBinding": { "required": ["conditions", "elementId"], "type": "object", "properties": { "elementId": { "$ref": "#/definitions/elementId" }, "conditions": { "description": "For this release, this must contain an array with a single 'condition' object whose 'condition' is true, and whose 'icon' member specifies the name of the icon to be used.", "type": "array", "items": { "type": "object", "properties": { "condition": { "$ref": "#/definitions/condition" }, "icon": { "description": "The name of the icon as specified in the 'icons' node.", "type": "string" } } } } } }, "textBinding": { "required": ["elementId", "value"], "properties": { "elementId": { "$ref": "#/definitions/elementId" }, "value": { "type": "string" } } }, "notification": { "type": "object", "required": ["condition", "title"], "properties": { "condition": { "description": "The condition to be evaluated to determine whether to trigger the notification. The conditional expression has the syntax '<Operand1> <Operator> <Operand2>' or 'true'.", "type": "string" }, "title": { "description": "The text to use for the notification title. If longer than 20 characters, it will be truncated.", "type": "string" }, "body": { "description": "The text to use for the notification body. If longer than 20 characters, it will be truncated.", "type": "string" } } } }, "id": "https://json.schemastore.org/band-manifest.json", "properties": { "manifestVersion": { "description": "Defines the contract between the web tile developer and the Microsoft Health app. It must be set to 1 for the current release.", "enum": [1] }, "name": { "description": "Defines the name of the web tile.", "type": "string", "maxLength": 21 }, "description": { "description": "Provides description about the web tile.", "type": "string", "maxLength": 100 }, "version": { "description": "Indicates the version number of the web tile which will not be shown to users.", "type": "number" }, "versionString": { "description": "Indicates the web tile version as shown to users. If not provided, it displays the version.", "type": "string", "maxLength": 10 }, "author": { "description": "Specifies the author of the web tile.", "type": "string", "maxLength": 50 }, "organization": { "description": "Specifies the organization associated with the web tile.", "type": "string", "maxLength": 100 }, "contactEmail": { "description": "Provides contact info of the web tile author. Used for administrative purposes and analytics by Microsoft Band team.", "type": "string", "format": "email", "maxLength": 100 }, "tileIcon": { "description": "Specifies the location of the large tile icon.", "type": "object", "required": ["46"], "properties": { "46": { "$ref": "#/definitions/icon" } } }, "badgeIcon": { "description": "Specifies the location of the small tile icon. If not provided, the badging functionality is not enabled.", "type": "object", "required": ["24"], "properties": { "24": { "$ref": "#/definitions/icon" } } }, "tileTheme": { "description": "Specifies the custom theme colors for the web tile.", "type": "object", "properties": { "base": { "$ref": "#/definitions/color" }, "highlight": { "$ref": "#/definitions/color" }, "lowlight": { "$ref": "#/definitions/color" }, "secondary": { "$ref": "#/definitions/color" }, "highcontrast": { "$ref": "#/definitions/color" }, "muted": { "$ref": "#/definitions/color" } } }, "refreshIntervalMinutes": { "description": "Specifies the desired data refresh interval, in minutes. Refresh intervals shorter than 15 will not be honored. If not provided, it defaults to 30.", "type": "integer", "default": 30, "minimum": 15 }, "resources": { "description": "Each web tile must refer to one or more web resources. Each resource object describes a web data from which content for the tile will be extracted.", "type": "array", "items": { "$ref": "#/definitions/resource" } }, "icons": { "description": "All PNG icons used by the tile within its pages must be provided here.", "type": "object", "maxProperties": 8, "additionalProperties": { "$ref": "#/definitions/icon" } }, "pages": { "description": "Each tile consists of one or more pages, as described by the objects in this array. Each page object specifies the layout and content of the page.", "type": "array", "items": { "$ref": "#/definitions/page" } }, "notifications": { "description": "Creates notification that gets delivered when certain conditions are detected in the new web data.", "type": "array", "items": { "$ref": "#/definitions/notification" } } }, "required": ["manifestVersion", "name", "tileIcon", "resources", "pages"], "title": "JSON schema for Microsoft Band manifests", "type": "object" }
band-manifest
{ "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_PersistentVolumeStatus": { "description": "PersistentVolumeStatus is the current status of a persistent volume.", "properties": { "message": { "description": "A human-readable message indicating details about why the volume is in this state.", "type": "string" }, "phase": { "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", "type": "string" }, "reason": { "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", "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" } ] }, "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": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "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": [ "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": [ "PersistentVolume" ], "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" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec", "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeStatus", "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolume", "version": "v1" } ] }
kb_661_Normalized
{ "properties": { "include_lowercase": { "description": "Flag to include lowercase letters in the password", "type": "boolean" }, "include_numbers": { "description": "Flag to include numbers in the password", "type": "boolean" }, "include_special_characters": { "description": "Flag to include special characters in the password", "type": "boolean" }, "include_uppercase": { "description": "Flag to include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_dfcb36b8
{ "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_v1beta1_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_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "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", "null" ] }, "nodeName": { "description": "The node that the volume should be attached to.", "type": [ "string", "null" ] }, "source": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }
kb_1119_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "viewType": { "type": "string", "enum": [ "layout", "page", "component" ] }, "layoutId": { "type": [ "string", "null" ], "pattern": "^[A-Fa-f\\d]{24}$" }, "body": { "type": "string", "maxLength": 131072, "minLength": 1 }, "viewTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false } }, "additionalProperties": false, "required": [ "name", "viewType", "body" ] }
o9897
{ "additionalProperties": false, "definitions": { "architecture": { "additionalProperties": false, "properties": { "bin": { "$ref": "#/definitions/stringOrArrayOfStringsOrAnArrayOfArrayOfStrings" }, "checkver": { "$ref": "#/definitions/checkver" }, "env_add_path": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "env_set": { "type": "object" }, "extract_dir": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "hash": { "$ref": "#/definitions/hash" }, "installer": { "$ref": "#/definitions/installer" }, "msi": { "$ref": "#/definitions/stringOrArrayOfStrings", "description": "Deprecated" }, "post_install": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "pre_install": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "shortcuts": { "$ref": "#/definitions/shortcutsArray" }, "uninstaller": { "$ref": "#/definitions/uninstaller" }, "url": { "$ref": "#/definitions/uriOrArrayOfUris" } }, "type": "object" }, "arrayOfArrayOfStrings": { "items": { "items": { "type": "string" }, "minItems": 1, "type": "array" }, "minItems": 1, "type": "array" }, "autoupdate": { "additionalProperties": false, "properties": { "architecture": { "additionalProperties": false, "properties": { "32bit": { "additionalProperties": false, "properties": { "extract_dir": { "type": "string" }, "hash": { "$ref": "#/definitions/hashExtraction" }, "url": { "_format": "uri", "type": "string" } }, "type": "object" }, "64bit": { "additionalProperties": false, "properties": { "extract_dir": { "type": "string" }, "hash": { "$ref": "#/definitions/hashExtraction" }, "url": { "_format": "uri", "type": "string" } }, "type": "object" } }, "type": "object" }, "extract_dir": { "type": "string" }, "hash": { "$ref": "#/definitions/hashExtraction" }, "note": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "url": { "_format": "uri", "type": "string" } }, "type": "object" }, "checkver": { "anyOf": [ { "_format": "regex", "type": "string" }, { "additionalProperties": false, "properties": { "github": { "_format": "uri", "type": "string" }, "jp": { "description": "Same as 'jsonpath'", "pattern": "^\\$[.\\[].*$", "type": "string" }, "jsonpath": { "pattern": "^\\$[.\\[].*$", "type": "string" }, "re": { "_format": "regex", "description": "Same as 'regex'", "type": "string" }, "regex": { "_format": "regex", "type": "string" }, "replace": { "description": "Allows rearrange the regexp matches", "type": "string" }, "reverse": { "description": "Reverse the order of regex matches", "type": "boolean" }, "url": { "_format": "uri", "type": "string" }, "useragent": { "type": "string" }, "xpath": { "type": "string" } }, "type": "object" } ] }, "hash": { "anyOf": [ { "$ref": "#/definitions/hashPattern" }, { "items": { "$ref": "#/definitions/hashPattern" }, "minItems": 1, "type": "array", "_uniqueItems": true } ] }, "hashExtraction": { "additionalProperties": false, "properties": { "find": { "_format": "regex", "description": "Same as 'regex'", "type": "string" }, "jp": { "description": "Same as 'jsonpath'", "pattern": "^\\$[.\\[].*$", "type": "string" }, "jsonpath": { "pattern": "^\\$[.\\[].*$", "type": "string" }, "mode": { "enum": [ "download", "extract", "json", "xpath", "rdf", "metalink", "fosshub", "sourceforge" ] }, "regex": { "_format": "regex", "type": "string" }, "type": { "description": "Deprecated, hash type is determined automatically", "enum": [ "md5", "sha1", "sha256", "sha512" ] }, "url": { "anyOf": [ { "_format": "uri", "type": "string" }, { "pattern": "^(\\$url|\\$baseurl).[\\w\\d]+$", "type": "string" }, { "pattern": "^.*(\\$url|\\$baseurl).*$", "type": "string" } ] }, "xpath": { "type": "string" } }, "type": "object" }, "hashPattern": { "pattern": "^([a-fA-F0-9]{64}|(sha1|sha256|sha512|md5):([a-fA-F0-9]{32}|[a-fA-F0-9]{40}|[a-fA-F0-9]{64}|[a-fA-F0-9]{128}))$", "type": "string" }, "installer": { "additionalProperties": false, "properties": { "_comment": { "description": "Undocumented: only used in scoop-extras/oraclejdk* and scoop-extras/appengine-go", "type": "string" }, "args": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "file": { "type": "string" }, "keep": { "type": "boolean" }, "script": { "$ref": "#/definitions/stringOrArrayOfStrings" } }, "type": "object" }, "licenseIdentifiers": { "description": "License identifier based on SPDX License List https://spdx.org/licenses/", "examples": [ "Apache-2.0", "BSD-3-Clause", "Freeware", "GPL-2.0-only", "GPL-2.0-or-later", "GPL-3.0-only", "GPL-3.0-or-later", "ISC", "LGPL-2.0-only", "LGPL-2.0-or-later", "LGPL-2.1-only", "LGPL-2.1-or-later", "LGPL-3.0-only", "LGPL-3.0-or-later", "MIT", "MS-PL", "Proprietary", "Public Domain", "Shareware", "Unlicense" ], "type": "string" }, "shortcutsArray": { "items": { "items": { "type": "string" }, "maxItems": 4, "minItems": 2, "type": "array" }, "minItems": 1, "type": "array" }, "stringOrArrayOfStrings": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "minItems": 1, "type": "array" } ] }, "stringOrArrayOfStringsOrAnArrayOfArrayOfStrings": { "anyOf": [ { "type": "string" }, { "items": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "minItems": 1, "type": "array" } ] }, "uninstaller": { "oneOf": [ { "required": [ "file" ] }, { "required": [ "script" ] } ], "properties": { "args": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "file": { "type": "string" }, "script": { "$ref": "#/definitions/stringOrArrayOfStrings" } }, "type": "object" }, "uriOrArrayOfUris": { "anyOf": [ { "_format": "uri", "not": { "pattern": "(\\$)" }, "type": "string" }, { "items": { "_format": "uri", "not": { "pattern": "(\\$)" }, "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true } ] } }, "properties": { "##": { "$ref": "#/definitions/stringOrArrayOfStrings", "description": "A comment." }, "_comment": { "$ref": "#/definitions/stringOrArrayOfStrings", "description": "Deprecated. Use ## instead." }, "architecture": { "additionalProperties": false, "properties": { "32bit": { "$ref": "#/definitions/architecture" }, "64bit": { "$ref": "#/definitions/architecture" } }, "type": "object" }, "autoupdate": { "$ref": "#/definitions/autoupdate" }, "bin": { "$ref": "#/definitions/stringOrArrayOfStringsOrAnArrayOfArrayOfStrings" }, "checkver": { "$ref": "#/definitions/checkver" }, "cookie": { "description": "Undocumented: Found at https://github.com/se35710/scoop-java/search?l=JSON&q=cookie", "type": "object" }, "depends": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "description": { "type": "string" }, "env_add_path": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "env_set": { "type": "object" }, "extract_dir": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "extract_to": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "hash": { "$ref": "#/definitions/hash" }, "homepage": { "_format": "uri", "type": "string" }, "innosetup": { "description": "True if the installer InnoSetup based. Found in https://github.com/lukesampson/scoop/search?l=JSON&q=innosetup", "type": "boolean" }, "installer": { "$ref": "#/definitions/installer" }, "license": { "anyOf": [ { "$ref": "#/definitions/licenseIdentifiers" }, { "additionalProperties": false, "properties": { "identifier": { "$ref": "#/definitions/licenseIdentifiers" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "identifier" ], "type": "object" } ] }, "msi": { "$ref": "#/definitions/stringOrArrayOfStrings", "description": "Deprecated" }, "notes": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "persist": { "$ref": "#/definitions/stringOrArrayOfStringsOrAnArrayOfArrayOfStrings" }, "post_install": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "pre_install": { "$ref": "#/definitions/stringOrArrayOfStrings" }, "psmodule": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": "object" }, "shortcuts": { "$ref": "#/definitions/shortcutsArray" }, "suggest": { "additionalProperties": false, "patternProperties": { "^(.*)$": { "$ref": "#/definitions/stringOrArrayOfStrings" } }, "type": "object" }, "uninstaller": { "$ref": "#/definitions/uninstaller" }, "url": { "$ref": "#/definitions/uriOrArrayOfUris" }, "version": { "pattern": "^[\\w\\.\\-_]+$", "type": "string" } }, "required": [ "version" ], "title": "scoop app manifest schema", "type": "object" }
o57762
{ "properties": { "transaction_details": { "properties": { "amount": { "description": "The transaction amount", "type": "number" }, "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "description": "The items included in the transaction", "items": { "type": "string" }, "type": "array" }, "transaction_id": { "description": "The unique identifier for the transaction", "type": "string" } }, "required": [ "transaction_id", "amount", "customer_name", "items" ], "type": "object" } }, "required": [ "transaction_details" ], "type": "object" }
generate_invoice_90fe8c8d
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "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" } }, "type": "object" }, "shape": { "description": "The shape type (e.g. rectangle, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_b9dfbe4c
{ "definitions": { "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": "NamespaceCondition contains details about state of namespace.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time" }, "message": { "type": [ "string", "null" ] }, "reason": { "type": [ "string", "null" ] }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": [ "string", "null" ] }, "type": { "description": "Type of namespace controller condition.", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_576_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Generic Job Output", "type": "object", "properties": { "status": { "type": "string", "enum": [ "Success", "Failure", "Timeout" ], "description": "Result status of the job" }, "message": { "type": "string", "description": "Should capture a summarized error message in case of Failures." }, "results": { "type": "object", "description": "JSON object holding the job specific output details" } }, "required": [ "status" ] }
o39201
{ "additionalProperties": false, "description": "iOS app plist parsed by plist npm module", "properties": { "ApplicationDSID": { "type": "integer" }, "ApplicationType": { "type": "string" }, "BuildMachineOSBuild": { "type": "string" }, "BuildType": { "type": "string" }, "CFBundleAllowMixedLocalizations": { "type": "boolean" }, "CFBundleDevelopmentRegion": { "type": "string" }, "CFBundleDisplayName": { "type": "string" }, "CFBundleExecutable": { "type": "string" }, "CFBundleIcons": { "additionalProperties": false, "properties": { "CFBundlePrimaryIcon": { "additionalProperties": false, "properties": { "CFBundleIconFiles": { "items": { "type": "string" }, "type": "array" } }, "type": "object" } }, "type": "object" }, "CFBundleIdentifier": { "type": "string" }, "CFBundleInfoDictionaryVersion": { "type": "string" }, "CFBundleName": { "type": "string" }, "CFBundleNumericVersion": { "type": "integer" }, "CFBundlePackageType": { "type": "string" }, "CFBundleShortVersionString": { "type": "string" }, "CFBundleSignature": { "type": "string" }, "CFBundleSupportedPlatforms": { "items": { "enum": [ "iPhoneOS" ], "type": "string" }, "type": "array" }, "CFBundleURLTypes": { "items": { "additionalProperties": false, "properties": { "CFBundleTypeRole": { "type": "string" }, "CFBundleURLName": { "type": "string" }, "CFBundleURLSchemes": { "type": "array" } }, "type": "object" }, "type": "array" }, "CFBundleVersion": { "type": "string" }, "Container": { "type": "string" }, "CoreSpotlightContinuation": { "type": "boolean" }, "CrashlyticsApplicationIdKey": { "type": "string" }, "DTCompiler": { "type": "string" }, "DTPlatformBuild": { "type": "string" }, "DTPlatformName": { "type": "string" }, "DTPlatformVersion": { "type": "string" }, "DTSDKBuild": { "type": "string" }, "DTSDKName": { "type": "string" }, "DTXcode": { "type": "string" }, "DTXcodeBuild": { "type": "string" }, "DebugAccessibilityLabels": { "type": "boolean" }, "EULAVersion": { "type": "string" }, "Entitlements": { "additionalProperties": false, "properties": { "allow-obliterate-device": { "type": "boolean" }, "application-identifier": { "type": "string" }, "aps-environment": { "type": "string" }, "com.apple.CommCenter.Preferences-delete": { "type": "boolean" }, "com.apple.CoreRoutine.Application": { "type": "boolean" }, "com.apple.CoreTelephony.DataUsageInfo.allow": { "type": "boolean" }, "com.apple.QuartzCore.displayable-context": { "type": "boolean" }, "com.apple.QuartzCore.secure-mode": { "type": "boolean" }, "com.apple.accounts.facebook.defaultaccess": { "type": "boolean" }, "com.apple.authkit.client.private": { "type": "boolean" }, "com.apple.authkit.writer.internal": { "type": "boolean" }, "com.apple.backboard.client": { "type": "boolean" }, "com.apple.container2": { "type": "boolean" }, "com.apple.developer.default-data-protection": { "type": "string" }, "com.apple.developer.pass-type-identifiers": { "items": { "enum": [ "*.pass.com.apple.itunes.storecredit" ], "type": "string" }, "type": "array" }, "com.apple.developer.playable-content": { "type": "boolean" }, "com.apple.developer.team-identifier": { "type": "string" }, "com.apple.excludes-extensions": { "type": "boolean" }, "com.apple.itunesstored.private": { "type": "boolean" }, "com.apple.keystore.device": { "type": "boolean" }, "com.apple.keystore.stash.access": { "type": "boolean" }, "com.apple.managedconfiguration.profiled-access": { "type": "boolean" }, "com.apple.mobile.deleted.AllowFreeSpace": { "type": "boolean" }, "com.apple.mobile.keybagd.UserManager.logout": { "type": "boolean" }, "com.apple.private.accounts.allaccounts": { "type": "boolean" }, "com.apple.private.bmk.allow": { "type": "boolean" }, "com.apple.private.canGetAppLinkInfo": { "type": "boolean" }, "com.apple.private.canModifyAppLinkPermissions": { "type": "boolean" }, "com.apple.private.coreservices.alwaysEligibleEvenWhenInBackground": { "type": "boolean" }, "com.apple.private.corespotlight.internal": { "type": "boolean" }, "com.apple.private.ids.registration-reset": { "type": "boolean" }, "com.apple.private.kernel.darkboot": { "type": "boolean" }, "com.apple.private.kernel.jetsam": { "type": "boolean" }, "com.apple.private.mobileinstall.upgrade-enabled": { "type": "boolean" }, "com.apple.private.security.container-required": { "type": "boolean" }, "com.apple.private.social.facebook.like": { "type": "boolean" }, "com.apple.private.tcc.allow": { "items": { "enum": [ "kTCCServiceMediaLibrary" ], "type": "string" }, "type": "array" }, "com.apple.private.xpc.launchd.app-server": { "type": "boolean" }, "com.apple.security.application-groups": { "type": "array" }, "com.apple.security.exception.files.absolute-path.read-only": { "items": { "enum": [ "/private/var/mobile/Library/Preferences/com.apple.restrictionspassword.plist" ], "type": "string" }, "type": "array" }, "com.apple.security.exception.mach-lookup.global-name": { "items": { "enum": [ "com.apple.familycircle.agent", "com.apple.routined.registration" ], "type": "string" }, "type": "array" }, "com.apple.springboard.opensensitiveurl": { "type": "boolean" }, "com.apple.springboard.shortcutitems.customimage": { "type": "boolean" }, "com.apple.telephony.cupolicy-rw-access": { "type": "boolean" }, "com.apple.wifi.manager-access": { "type": "boolean" }, "fairplay-client": { "type": "string" }, "keychain-access-groups": { "type": "array" }, "platform-application": { "type": "boolean" }, "seatbelt-profiles": { "items": { "enum": [ "container2" ], "type": "string" }, "type": "array" } }, "type": "object" }, "EnvironmentVariables": { "additionalProperties": false, "properties": { "CFFIXED_USER_HOME": { "type": "string" }, "HOME": { "type": "string" }, "TMPDIR": { "type": "string" } }, "type": "object" }, "Fabric": { "additionalProperties": false, "properties": { "APIKey": { "type": "string" } }, "type": "object" }, "GroupContainers": { "additionalProperties": { "type": "string" }, "type": "object" }, "HasSettingsBundle": { "type": "boolean" }, "ITSAppUsesNonExemptEncryption": { "type": "boolean" }, "IsUpgradeable": { "type": "boolean" }, "LSApplicationCategoryType": { "type": "null" }, "LSRequiresIPhoneOS": { "type": "boolean" }, "MPSupportsExternallyPlayableContent": { "type": "boolean" }, "MinimumOSVersion": { "type": "string" }, "NSAppTransportSecurity": { "additionalProperties": false, "properties": { "NSAllowsArbitraryLoads": { "type": "boolean" }, "NSExceptionDomains": { "type": "object" } }, "type": "object" }, "NSLocationWhenInUseUsageDescription": { "type": "string" }, "NSUserActivityTypes": { "type": "array" }, "NewRelicApplicationIdKey": { "type": "string" }, "ParseApplicationIdKey": { "type": "string" }, "ParseClientIdKey": { "type": "string" }, "Path": { "type": "string" }, "SBAppTags": { "items": { "enum": [ "hidden" ], "type": "string" }, "type": "array" }, "SBAppUsesLocalNotifications": { "type": "boolean" }, "SBUninstallIconOverrideStringsFile": { "type": "string" }, "SKRespectApplicationUserInterfaceLayoutDirection": { "type": "boolean" }, "SequenceNumber": { "type": "integer" }, "SignerIdentity": { "type": "string" }, "UIAppFonts": { "items": { "type": "string" }, "type": "array" }, "UIBackgroundModes": { "items": { "enum": [ "audio", "fetch", "notif" ], "type": "string" }, "type": "array" }, "UIBrowsableContentSupportsSectionedBrowsing": { "type": "boolean" }, "UIDeviceFamily": { "items": { "type": "integer" }, "type": "array" }, "UILaunchStoryboardName": { "type": "string" }, "UIPrerenderedIcon": { "type": "boolean" }, "UIRequiredDeviceCapabilities": { "items": { "enum": [ "armv7" ], "type": "string" }, "type": "array" }, "UIRequiresFullScreen": { "type": "boolean" }, "UIRequiresPersistentWiFi": { "type": "boolean" }, "UIStatusBarStyle": { "type": "string" }, "UISupportedInterfaceOrientations": { "items": { "enum": [ "UIInterfaceOrientationPortrait", "UIInterfaceOrientationLandscapeLeft", "UIInterfaceOrientationLandscapeRight", "UIInterfaceOrientationPortraitUpsideDown" ], "type": "string" }, "type": "array" }, "UIViewControllerBasedStatusBarAppearance": { "type": "boolean" }, "WatchGroupId": { "type": "string" }, "_LSSupportsRemoval": { "type": "boolean" } }, "title": "ios-app", "type": "object" }
o19225
{ "properties": { "ceph": { "description": "ceph service configuration properties", "properties": { "cpus": { "default": 1, "description": "CPU shares to allocate to each service instance.", "minimum": 0.5, "type": "number" }, "mem": { "default": 1024.0, "description": "Memory to allocate to each service instance.", "minimum": 512.0, "type": "number" } }, "required": [ "cpus", "mem" ], "type": "object" }, "networking": { "description": "Ceph networking configuration properties", "properties": { "ceph_api_port": { "default": 5000, "description": "The port where the Ceph API is listening on.", "type": "number" }, "cluster_network": { "description": "Network where the Ceph nodes live. This is usually the host network where the DC/OS nodes live. This network is assumed to be trusted.", "type": "string" }, "external_access": { "description": "Enable access from outside the cluster through Marathon-LB.\nNOTE: this connection is unencrypted.", "properties": { "enable": { "default": true, "description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.", "type": "boolean" }, "external_access_port": { "default": 5000, "description": "For external access, port number to be used for clear communication in the external Marathon-LB load balancer", "type": "number" }, "virtual_host": { "default": "ceph.example.org", "description": "For external access, Virtual Host URL to be used in the external load balancer.", "type": "string" } }, "type": "object" }, "public_network": { "description": "Network that the Ceph services are exposed on, where the Ceph clients/consumers live. This is often the same as cluster_network unless Ceph is to be exposed outside the cluster.", "type": "string" } }, "required": [ "cluster_network", "public_network" ], "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "name": { "default": "ceph", "description": "Name of this service instance.", "type": "string" } }, "type": "object" } } }
o90646
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Schema for simple date response at http://date.jsontest.com", "title": "Date Response", "type": "object", "properties": { "time": { "type": "string" }, "milliseconds_since_epoch": { "type": "integer" }, "date": { "type": "string" } }, "required": [ "time", "milliseconds_since_epoch", "date" ] }
o7513
{ "properties": { "date_range": { "properties": { "end_date": { "description": "The end date", "format": "date", "type": "string" }, "start_date": { "description": "The start date", "format": "date", "type": "string" } }, "type": "object" }, "keywords": { "description": "The keywords to search for", "items": { "type": "string" }, "type": "array" }, "language": { "description": "The language of the news articles", "type": "string" } }, "required": [ "keywords" ], "type": "object" }
search_news_8cfb92ac
{ "$id": "https://lnav.org/schemas/config-v1.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "$schema": { "title": "/$schema", "description": "Specifies the type of this file", "type": "string" }, "ui": { "description": "User-interface settings", "title": "/ui", "type": "object", "properties": { "clock-format": { "title": "/ui/clock-format", "description": "The format for the clock displayed in the top-left corner using strftime(3) conversions", "type": "string", "examples": [ "%a %b %d %H:%M:%S %Z" ] }, "dim-text": { "title": "/ui/dim-text", "description": "Reduce the brightness of text (useful for xterms). This setting can be useful when running in an xterm where the white color is very bright.", "type": "boolean" }, "default-colors": { "title": "/ui/default-colors", "description": "Use default terminal background and foreground colors instead of black and white for all text coloring. This setting can be useful when transparent background or alternate color theme terminal is used.", "type": "boolean" }, "keymap": { "title": "/ui/keymap", "description": "The name of the keymap to use.", "type": "string" }, "theme": { "title": "/ui/theme", "description": "The name of the theme to use.", "type": "string" }, "theme-defs": { "description": "Theme definitions.", "title": "/ui/theme-defs", "type": "object", "patternProperties": { "([\\w\\-]+)": { "title": "/ui/theme-defs/<theme_name>", "type": "object", "properties": { "vars": { "description": "Variables definitions that are used in this theme.", "title": "/ui/theme-defs/<theme_name>/vars", "type": "object", "patternProperties": { "(\\w+)": { "title": "/ui/theme-defs/<theme_name>/vars/<var_name>", "description": "A theme variable definition", "type": "string" } }, "additionalProperties": false }, "styles": { "description": "Styles for log messages.", "title": "/ui/theme-defs/<theme_name>/styles", "type": "object", "properties": { "identifier": { "description": "Styling for identifiers in logs", "title": "/ui/theme-defs/<theme_name>/styles/identifier", "$ref": "#/definitions/style" }, "text": { "description": "Styling for plain text", "title": "/ui/theme-defs/<theme_name>/styles/text", "$ref": "#/definitions/style" }, "alt-text": { "description": "Styling for plain text when alternating", "title": "/ui/theme-defs/<theme_name>/styles/alt-text", "$ref": "#/definitions/style" }, "error": { "description": "Styling for error messages", "title": "/ui/theme-defs/<theme_name>/styles/error", "$ref": "#/definitions/style" }, "ok": { "description": "Styling for success messages", "title": "/ui/theme-defs/<theme_name>/styles/ok", "$ref": "#/definitions/style" }, "warning": { "description": "Styling for warning messages", "title": "/ui/theme-defs/<theme_name>/styles/warning", "$ref": "#/definitions/style" }, "hidden": { "description": "Styling for hidden fields in logs", "title": "/ui/theme-defs/<theme_name>/styles/hidden", "$ref": "#/definitions/style" }, "adjusted-time": { "description": "Styling for timestamps that have been adjusted", "title": "/ui/theme-defs/<theme_name>/styles/adjusted-time", "$ref": "#/definitions/style" }, "skewed-time": { "description": "Styling for timestamps ", "title": "/ui/theme-defs/<theme_name>/styles/skewed-time", "$ref": "#/definitions/style" }, "offset-time": { "description": "Styling for hidden fields", "title": "/ui/theme-defs/<theme_name>/styles/offset-time", "$ref": "#/definitions/style" }, "popup": { "description": "Styling for popup windows", "title": "/ui/theme-defs/<theme_name>/styles/popup", "$ref": "#/definitions/style" }, "scrollbar": { "description": "Styling for scrollbars", "title": "/ui/theme-defs/<theme_name>/styles/scrollbar", "$ref": "#/definitions/style" } }, "additionalProperties": false }, "syntax-styles": { "description": "Styles for syntax highlighting in text files.", "title": "/ui/theme-defs/<theme_name>/syntax-styles", "type": "object", "properties": { "keyword": { "description": "Styling for keywords in source files", "title": "/ui/theme-defs/<theme_name>/syntax-styles/keyword", "$ref": "#/definitions/style" }, "string": { "description": "Styling for single/double-quoted strings in text", "title": "/ui/theme-defs/<theme_name>/syntax-styles/string", "$ref": "#/definitions/style" }, "comment": { "description": "Styling for comments in source files", "title": "/ui/theme-defs/<theme_name>/syntax-styles/comment", "$ref": "#/definitions/style" }, "variable": { "description": "Styling for variables in text", "title": "/ui/theme-defs/<theme_name>/syntax-styles/variable", "$ref": "#/definitions/style" }, "symbol": { "description": "Styling for symbols in source files", "title": "/ui/theme-defs/<theme_name>/syntax-styles/symbol", "$ref": "#/definitions/style" }, "number": { "description": "Styling for numbers in source files", "title": "/ui/theme-defs/<theme_name>/syntax-styles/number", "$ref": "#/definitions/style" }, "re-special": { "description": "Styling for special characters in regular expressions", "title": "/ui/theme-defs/<theme_name>/syntax-styles/re-special", "$ref": "#/definitions/style" }, "re-repeat": { "description": "Styling for repeats in regular expressions", "title": "/ui/theme-defs/<theme_name>/syntax-styles/re-repeat", "$ref": "#/definitions/style" }, "diff-delete": { "description": "Styling for deleted lines in diffs", "title": "/ui/theme-defs/<theme_name>/syntax-styles/diff-delete", "$ref": "#/definitions/style" }, "diff-add": { "description": "Styling for added lines in diffs", "title": "/ui/theme-defs/<theme_name>/syntax-styles/diff-add", "$ref": "#/definitions/style" }, "diff-section": { "description": "Styling for diffs", "title": "/ui/theme-defs/<theme_name>/syntax-styles/diff-section", "$ref": "#/definitions/style" }, "file": { "description": "Styling for file names in source files", "title": "/ui/theme-defs/<theme_name>/syntax-styles/file", "$ref": "#/definitions/style" } }, "additionalProperties": false }, "status-styles": { "description": "Styles for the user-interface components.", "title": "/ui/theme-defs/<theme_name>/status-styles", "type": "object", "properties": { "text": { "description": "Styling for status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/text", "$ref": "#/definitions/style" }, "warn": { "description": "Styling for warnings in status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/warn", "$ref": "#/definitions/style" }, "alert": { "description": "Styling for alerts in status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/alert", "$ref": "#/definitions/style" }, "active": { "description": "Styling for activity in status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/active", "$ref": "#/definitions/style" }, "inactive": { "description": "Styling for inactive status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/inactive", "$ref": "#/definitions/style" }, "title": { "description": "Styling for title sections of status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/title", "$ref": "#/definitions/style" }, "subtitle": { "description": "Styling for subtitle sections of status bars", "title": "/ui/theme-defs/<theme_name>/status-styles/subtitle", "$ref": "#/definitions/style" } }, "additionalProperties": false }, "log-level-styles": { "description": "Styles for each log message level.", "title": "/ui/theme-defs/<theme_name>/log-level-styles", "type": "object", "patternProperties": { "(trace|debug5|debug4|debug3|debug2|debug|info|stats|notice|warning|error|critical|fatal)": { "title": "/ui/theme-defs/<theme_name>/log-level-styles/<level>", "$ref": "#/definitions/style" } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }, "keymap-defs": { "description": "Keymap definitions.", "title": "/ui/keymap-defs", "type": "object", "patternProperties": { "([\\w\\-]+)": { "description": "The keymap definitions", "title": "/ui/keymap-defs/<keymap_name>", "type": "object", "patternProperties": { "((?:x[0-9a-f]{2})+)": { "description": "The hexadecimal encoding of key codes to map to a command.", "title": "/ui/keymap-defs/<keymap_name>/<key_seq>", "type": "object", "properties": { "command": { "title": "/ui/keymap-defs/<keymap_name>/<key_seq>/command", "description": "The command to execute for the given key sequence.", "type": "string", "pattern": "[:|;].*" }, "alt-msg": { "title": "/ui/keymap-defs/<keymap_name>/<key_seq>/alt-msg", "description": "The help message to display after the key is pressed.", "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }, "global": { "description": "Global variable definitions", "title": "/global", "type": "object", "patternProperties": { "(\\w+)": { "title": "/global/<var_name>", "description": "A global variable definition. Global variables can be referenced in scripts, SQL statements, or commands.", "type": "string" } }, "additionalProperties": false } }, "additionalProperties": false, "definitions": { "style": { "title": "style", "type": "object", "$$target": "#/definitions/style", "properties": { "color": { "title": "/color", "description": "The foreground color value for this style. The value can be the name of an xterm color, the hexadecimal value, or a theme variable reference.", "type": "string", "examples": [ "#fff", "Green", "$black" ] }, "background-color": { "title": "/background-color", "description": "The foreground color value for this style. The value can be the name of an xterm color, the hexadecimal value, or a theme variable reference.", "type": "string", "examples": [ "#2d2a2e", "Green" ] }, "underline": { "title": "/underline", "description": "Indicates that the text should be underlined.", "type": "boolean" }, "bold": { "title": "/bold", "description": "Indicates that the text should be bolded.", "type": "boolean" } }, "additionalProperties": false } } }
o83132